<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>dhundee's world</title>
	<atom:link href="http://randy.lorenzano.net/feed" rel="self" type="application/rss+xml" />
	<link>http://randy.lorenzano.net</link>
	<description>The adventures and new life experiences</description>
	<pubDate>Mon, 12 Jul 2010 00:57:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to enable fantastico in WHM/cPanel</title>
		<link>http://randy.lorenzano.net/65-how-to-enable-fantastico-in-whm.html</link>
		<comments>http://randy.lorenzano.net/65-how-to-enable-fantastico-in-whm.html#comments</comments>
		<pubDate>Sun, 11 Jul 2010 23:39:27 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Server Administration]]></category>

		<category><![CDATA[fantastico]]></category>

		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=65</guid>
		<description><![CDATA[Prior to start, make sure that the server has been licensed to use fantastico.
ssh to your server and log in as root and do the following commands:
# cd /usr/local/cpanel/whostmgr/docroot/cgi
# wget http://www.netenberg.com/files/free/fantastico_whm_admin.tgz
# tar -xzpf fantastico_whm_admin.tgz
# rm -rf fantastico_whm_admin.tgz

Login to your WHM (if already logged in, just refresh the page)
From the menu, under Plugins, click Fantastico De [...]]]></description>
			<content:encoded><![CDATA[<p>Prior to start, make sure that the server has been licensed to use fantastico.</p>
<p>ssh to your server and log in as root and do the following commands:</p>
<blockquote><p># cd /usr/local/cpanel/whostmgr/docroot/cgi<br />
# wget http://www.netenberg.com/files/free/fantastico_whm_admin.tgz<br />
# tar -xzpf fantastico_whm_admin.tgz<br />
# rm -rf fantastico_whm_admin.tgz
</p></blockquote>
<p>Login to your WHM (if already logged in, just refresh the page)<br />
From the menu, under Plugins, click Fantastico De Luxe WHM Admin (located at the bottom). </p>
<p>the rest should be self explanatory <img src='http://randy.lorenzano.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/65-how-to-enable-fantastico-in-whm.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Disable CPIMAP, CPPOP and Exim on cPanel</title>
		<link>http://randy.lorenzano.net/63-disable-cpimap-cppop-and-exim-on-cpanel.html</link>
		<comments>http://randy.lorenzano.net/63-disable-cpimap-cppop-and-exim-on-cpanel.html#comments</comments>
		<pubDate>Sat, 10 Jul 2010 12:07:37 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Mail]]></category>

		<category><![CDATA[Server Administration]]></category>

		<category><![CDATA[cpanel]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=63</guid>
		<description><![CDATA[Stop Cpanel
% /etc/init.d/cpanel stop
Create the following files to disable CPanel&#8217;s Exim, POP, and IMAP services:
/etc/eximdisable
/etc/imapdisable
/etc/cpimapdisable
/etc/cppopdisable
/etc/popdisable
Afterwards, restart your Cpanel services:
% /etc/init.d/cpanel restart
Alternatively, you can turn them off in the CPanel interface in the Service Configuration panel. 
]]></description>
			<content:encoded><![CDATA[<p>Stop Cpanel<br />
% /etc/init.d/cpanel stop</p>
<p>Create the following files to disable CPanel&#8217;s Exim, POP, and IMAP services:</p>
<p>/etc/eximdisable<br />
/etc/imapdisable<br />
/etc/cpimapdisable<br />
/etc/cppopdisable<br />
/etc/popdisable</p>
<p>Afterwards, restart your Cpanel services:</p>
<p>% /etc/init.d/cpanel restart</p>
<p>Alternatively, you can turn them off in the CPanel interface in the Service Configuration panel. </p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/63-disable-cpimap-cppop-and-exim-on-cpanel.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Setting up a static IP Address in debian</title>
		<link>http://randy.lorenzano.net/61-setting-up-a-static-ip-address-in-debian.html</link>
		<comments>http://randy.lorenzano.net/61-setting-up-a-static-ip-address-in-debian.html#comments</comments>
		<pubDate>Sat, 28 Nov 2009 07:14:24 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Debian]]></category>

		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=61</guid>
		<description><![CDATA[To setup a static IP in debian edit the file:
 /etc/networking/interfaces
# The loopback interface
auto lo
iface lo inet loopback
# The first network card - this entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
       address 192.168.1.100
       [...]]]></description>
			<content:encoded><![CDATA[<p>To setup a static IP in debian edit the file:</p>
<p> /etc/networking/interfaces</p>
<p># The loopback interface<br />
auto lo<br />
iface lo inet loopback</p>
<p># The first network card - this entry was created during the Debian installation<br />
# (network, broadcast and gateway are optional)<br />
auto eth0<br />
iface eth0 inet static<br />
       address 192.168.1.100<br />
       netmask 255.255.255.0<br />
       network 192.168.1.0<br />
       broadcast 192.168.1.255<br />
       gateway 192.168.1.1</p>
<p>In this case the IP of the server is 192.168.1.100, defined by the setting &#8220;address&#8221;</p>
<p>To apply this configuration type /etc/init.d/networking restart</p>
<p>You&#8217;ll get a message that it&#8217;s restarting the network interface, If your connected remotely via shell, you might get disconnected sinc you changed the ip address.</p>
<p>also, make sure the necessary DNS settings are changed in the /etc/resolve.conf</p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/61-setting-up-a-static-ip-address-in-debian.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Install CURL on Debian</title>
		<link>http://randy.lorenzano.net/59-install-curl-on-debian.html</link>
		<comments>http://randy.lorenzano.net/59-install-curl-on-debian.html#comments</comments>
		<pubDate>Sun, 15 Nov 2009 06:10:09 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Debian]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=59</guid>
		<description><![CDATA[for php 4:
apt-get install curl php4-curl libcurl3-dev
for php 5:
apt-get install curl php5-curl libcurl3-dev
root access required
]]></description>
			<content:encoded><![CDATA[<p>for php 4:</p>
<blockquote><p>apt-get install curl php4-curl libcurl3-dev</p></blockquote>
<p>for php 5:</p>
<blockquote><p>apt-get install curl php5-curl libcurl3-dev</p></blockquote>
<p>root access required</p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/59-install-curl-on-debian.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Restart inetd on debian</title>
		<link>http://randy.lorenzano.net/57-restart-inetd-on-debian.html</link>
		<comments>http://randy.lorenzano.net/57-restart-inetd-on-debian.html#comments</comments>
		<pubDate>Sun, 16 Aug 2009 04:03:43 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Debian]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=57</guid>
		<description><![CDATA[Stop Service:
/etc/init.d/openbsd-inetd stop
Start Service:
/etc/init.d/openbsd-inetd stop
Re-Start Service:
/etc/init.d/openbsd-inetd restart
IF: File does not exist&#8230;
apt-get install telnetd
Then Re-start the service.
]]></description>
			<content:encoded><![CDATA[<p>Stop Service:</p>
<blockquote><p>/etc/init.d/openbsd-inetd stop</p></blockquote>
<p>Start Service:</p>
<blockquote><p>/etc/init.d/openbsd-inetd stop</p></blockquote>
<p>Re-Start Service:</p>
<blockquote><p>/etc/init.d/openbsd-inetd restart</p></blockquote>
<p>IF: File does not exist&#8230;</p>
<blockquote><p>apt-get install telnetd</p></blockquote>
<p>Then Re-start the service.</p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/57-restart-inetd-on-debian.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Someone who understands</title>
		<link>http://randy.lorenzano.net/53-someone-who-understands.html</link>
		<comments>http://randy.lorenzano.net/53-someone-who-understands.html#comments</comments>
		<pubDate>Sat, 04 Apr 2009 00:58:55 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Wala lang]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=53</guid>
		<description><![CDATA[A store owner was tacking a sign above his door that read: &#8220;Puppies For Sale&#8221;. Signs like that have a way of attracting small children and sure enough, a little boy appeared under the store owner&#8217;s sign. 
&#8220;How much are you going to sell the puppies for?&#8221; he asked. 
The store owner replied, &#8220;Anywhere from [...]]]></description>
			<content:encoded><![CDATA[<p>A store owner was tacking a sign above his door that read: &#8220;Puppies For Sale&#8221;. Signs like that have a way of attracting small children and sure enough, a little boy appeared under the store owner&#8217;s sign. </p>
<p>&#8220;How much are you going to sell the puppies for?&#8221; he asked. </p>
<p>The store owner replied, &#8220;Anywhere from $30 to $50.&#8221; </p>
<p>The little boy reached in his pocket and pulled out some change. </p>
<p>&#8220;I have $2.37,&#8221; he said. &#8220;Can I please look at them?&#8221; </p>
<p>The store owner smiled and whistled and out of the kennel came Lady, who ran out in the aisle of his store followed by five teeny, tiny balls of fur. One puppy was lagging considerably behind. </p>
<p>Immediately the little boy singled out the lagging, limping puppy and said, &#8220;What&#8217;s wrong with that little dog?&#8221; </p>
<p>The store owner explained that the veterinarian had examined the little puppy and had discovered it didn&#8217;t have a hip socket. It would always be lame. </p>
<p>The little boy became excited. &#8220;That is the puppy that I want to buy.&#8221; </p>
<p>The store owner said, &#8220;No, you don&#8217;t want to buy that little dog. If you really want him, I&#8217;ll just give him to you.&#8221; </p>
<p>The little boy got quite upset. He looked straight into the store owner&#8217;s eyes, pointing his finger, and said, &#8220;I don&#8217;t want you to give him to me. </p>
<p>That little dog is worth every bit as much as all the other dogs and I&#8217;ll pay full price. In fact, I&#8217;ll give you $2.37 now, and 50 cents a month until I have him paid for.&#8221; </p>
<p>The store owner countered, &#8220;You really don&#8217;t want to buy this little dog. He is never going to be able to run and jump and play with you like the other puppies.&#8221; </p>
<p>To his surprise, the little boy reached down and rolled up his pant leg to reveal a badly twisted, crippled left leg supported by a big metal brace. He looked up at the store owner and softly replied, &#8220;Well, I don&#8217;t run so well myself, and the little puppy will need someone who understands.&#8221; </p>
<p>Don&#8217;t we all need someone who understands? </p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/53-someone-who-understands.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Protected: I wish you happiness, always</title>
		<link>http://randy.lorenzano.net/42-i-wish-you-happiness-always.html</link>
		<comments>http://randy.lorenzano.net/42-i-wish-you-happiness-always.html#comments</comments>
		<pubDate>Mon, 30 Mar 2009 16:40:28 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=42</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://randy.lorenzano.net/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-42">Password:<br />
<input name="post_password" id="pwbox-42" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/42-i-wish-you-happiness-always.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Sulat ni nanay at ni tatay</title>
		<link>http://randy.lorenzano.net/28-sulat-ni-nanay-at-ni-tatay.html</link>
		<comments>http://randy.lorenzano.net/28-sulat-ni-nanay-at-ni-tatay.html#comments</comments>
		<pubDate>Mon, 16 Feb 2009 10:15:05 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=28</guid>
		<description><![CDATA[i recieved this email today&#8230;  
Sa aking pagtanda, unawain mo sana  ako at pagpasensiyahan.
Kapag dala ng kalabuan ng mata ay nakabasag ako ng pinggan
o nakatapon ng sabaw sa hapag kainan, huwag mo sana akong kagagalitan.
Maramdamin ang isang matanda. Nagse-self-pity ako sa tuwing sinisigawan mo ako.
Kapag mahina na ang tenga ko at hindi ko [...]]]></description>
			<content:encoded><![CDATA[<p>i recieved this email today&#8230; <img src='http://randy.lorenzano.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>Sa aking pagtanda, unawain mo sana  ako at pagpasensiyahan.</p>
<p>Kapag dala ng kalabuan ng mata ay nakabasag ako ng pinggan<br />
o nakatapon ng sabaw sa hapag kainan, huwag mo sana akong kagagalitan.<br />
Maramdamin ang isang matanda. Nagse-self-pity ako sa tuwing sinisigawan mo ako.</p>
<p>Kapag mahina na ang tenga ko at hindi ko maintindihan<br />
ang sinasabi mo, huwag mo naman sana akong sabihan<br />
ng &#8216;binge!&#8217; paki-ulit nalang ang sinabi mo o pakisulat nalang.<br />
Pasensya ka na, anak. Matanda na talaga ako.</p>
<p>Kapag mahina na ang tuhod ko, pagtiyagaan mo sana akong<br />
tulungang tumayo, katulad ng pag-aalalay ko sa iyo<br />
noong nag-aaral ka pa lamang lumakad.</p>
<p>Pagpasensyahan mo sana ako kung ako man ay<br />
nagiging makulit at paulit-ulit na parang sirang plaka.<br />
Basta pakinggan mo nalang ako. Huwag mo sana akong<br />
Pagtatawanan o pagsasawaang pakinggan.</p>
<p>Natatandaan mo anak noong bata ka pa?<br />
kapag gusto mo ng lobo, paulit-ulit mo &#8216;yong sasabihin,<br />
maghapon kang mangungulit hangga&#8217;t hindi mo nakukuha ang<br />
  gusto mo.<br />
Pinagtyagaan ko ang kakulitan mo.</p>
<p>Pagpasensyahan mo na rin sana ang aking amoy.  Amoy matanda, amoy lupa.<br />
Huwag mo sana akong piliting maligo. Mahina na ang katawan ko.<br />
Madaling magkasakit kapag nalamigan, huwag mo sana akong pandirihan.  </p>
<p>Natatandaan mo noong bata ka pa? Pinagtyagaan kitang habulin<br />
As ilalim ng kama kapag ayaw mong maligo.</p>
<p>Pagpasensyahan mo sana kung madalas, ako&#8217;y masungit,<br />
Dala na marahil ito ng katandaan. Pagtanda mo,<br />
maiintindihan mo rin.</p>
<p>Kapag may konti kang panahon, magkwentuhan naman tayo, kahit sandali lang.<br />
Inip na ako sa bahay, maghapong nag-iisa. Walang kausap.</p>
<p>Alam kong busy ka sa trabaho, subalit nais kong malaman mo na sabik na sabik<br />
Na akong makakwentuhan ka, kahit alam kong hindi ka interesado sa mga kwento ko. </p>
<p>Natatandaan mo anak, noong bata ka pa?<br />
Pinagtyagaan kong pakinggan at intindihin<br />
ang pautal-utal mong kwento tungkol sa iyong teddy bear.</p>
<p>At kapag dumating ang sandali na ako&#8217;y magkakasakit<br />
at maratay sa banig ng karamdaman,<br />
huwag mo sana akong pagsawaang alagaan.</p>
<p>Pagpasensyahan mo na sana kung ako man ay maihi o madumi sa higaan,<br />
Pagtyagaan mo sana akong alagaan sa mga huling sandali ng aking buhay.<br />
Tutal hindi na naman ako magtatagal.</p>
<p>Kapag dumating ang sandali ng aking pagpanaw, hawakan mo sana ang akin g kamay<br />
At bigyan mo ako ng lakas ng loob na harapin ang kamatayan. </p>
<p>At huwag kang mag-alala, kapag kaharap ko na ang Diyos na lumikha,<br />
ibubulong ko sa kanya na pagpalain ka sana &#8230;<br />
Dahil naging mapagmahal ka sa iyong ama&#8217;t ina&#8230; </p>
<p>Written by Rev. Fr. Ariel F. Robles<br />
CWL Spiritual Director<br />
St. Augustine Parish<br />
Baliuag, Bulacan </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/28-sulat-ni-nanay-at-ni-tatay.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>SMS Scam strikes again!</title>
		<link>http://randy.lorenzano.net/27-sms-scam-strikes-again.html</link>
		<comments>http://randy.lorenzano.net/27-sms-scam-strikes-again.html#comments</comments>
		<pubDate>Thu, 22 Jan 2009 11:30:54 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[Scam]]></category>

		<category><![CDATA[urban legends]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=27</guid>
		<description><![CDATA[I was working late in the afternoon when i received an SMS message from an un-registered user. Informing me that i won 100,000 pesos. the actual message as follows:
&#8220;PCCNS Company informing you that ur CELFONE# had w0n 100,000.00 last Jan21, 09. DTI#4312 series of 2009. Just txt ur name, age &#038; address then call us, [...]]]></description>
			<content:encoded><![CDATA[<p>I was working late in the afternoon when i received an SMS message from an un-registered user. Informing me that i won 100,000 pesos. the actual message as follows:</p>
<blockquote><p>&#8220;PCCNS Company informing you that ur CELFONE# had w0n 100,000.00 last Jan21, 09. DTI#4312 series of 2009. Just txt ur name, age &#038; address then call us, im MARK TAN&#8221;</p></blockquote>
<p>If i really had won this amount, why would a company giving away 100,000 pesos want me to call them? How can they afford to give away 100,000.00 when they can&#8217;t afford to give a call instead?kinda stupid.. *sigh*</p>
<p>To all people out there&#8230; Beware of text messages informing you that you&#8217;ve won a prize. In case you want to take the bait, make sure you don&#8217;t spend a thing before the prize even reaches you. Don’t be a victim!</p>
<p>If you are in doubt, try calling Department of Trade and Industry (DTI) they sure may be able to assist you clear your doubts. Call their call center: (+632) 751.3330</p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/27-sms-scam-strikes-again.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>urban legends: purefoods accident</title>
		<link>http://randy.lorenzano.net/24-urban-legends-purefoods-accident.html</link>
		<comments>http://randy.lorenzano.net/24-urban-legends-purefoods-accident.html#comments</comments>
		<pubDate>Thu, 28 Aug 2008 08:54:31 +0000</pubDate>
		<dc:creator>randy</dc:creator>
		
		<category><![CDATA[urban legends]]></category>

		<category><![CDATA[purefoods]]></category>

		<category><![CDATA[san miguel corporation]]></category>

		<guid isPermaLink="false">http://randy.lorenzano.net/?p=24</guid>
		<description><![CDATA[just this afternoon, i recieved a message containing this message.
helo!tell ur fam n friends na wag muna buy ng purefoods na products ha kase ung ksama ko sa bank dati, sa purefoods na nagwowork ngayon eh nakachat ko sya kanina sabi nya namatayan sila ng kasama nung isang araw  nahulog sa gilingan nagiling 2 [...]]]></description>
			<content:encoded><![CDATA[<p>just this afternoon, i recieved a message containing this message.</p>
<blockquote><p>helo!tell ur fam n friends na wag muna buy ng purefoods na products ha kase ung ksama ko sa bank dati, sa purefoods na nagwowork ngayon eh nakachat ko sya kanina sabi nya namatayan sila ng kasama nung isang araw  nahulog sa gilingan nagiling 2 paa then eventually namatay dahil naubusan ng dugo.dated aug-sept wag daw muna bibili</p></blockquote>
<p>I just wanted to post my view regarding such a &#8220;scam&#8221; .. hehe maybe&#8230;?</p>
<p>well, i&#8217;m not really a purefoods fan, but i do buy purefoods products&#8230; but this does not stop me from buying purefoods products.. why? should you?</p>
<p>San Miguel Corporation has been around for decades and is now one of the leading producers and marketers of branded food products both in human and in animal nutrition here in the Philippines.</p>
<p>If this scam roaming around the internet is true, na meron nga na accidente, do we think that purefoods/san miguel corporation will still sell the affected products? If i were the even just a manager on the area.. i would stop the production and create an advice to dispose affected products right?</p>
<p>i doubt that purefoods will gamble their decades of hardwork and trusted name with just a few thousands&#8230; say even a million pesos&#8230; they can throw a million just to save their ass&#8230; lol&#8230;.</p>
<p>besides, there are actually no proofs that this event happened. if it was true&#8230; extend your condolonces to the person involved. he was there to help provide the nation with quality product&#8230;</p>
<p>well this is just my view, wala lang ako magawa kaya eto dakdak lol <img src='http://randy.lorenzano.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://randy.lorenzano.net/24-urban-legends-purefoods-accident.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
