<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IPRobot.net</title>
	<atom:link href="http://www.iprobot.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iprobot.net</link>
	<description>Technology, Reviews, Tutorials, Make Money Online, Linux Tutorials</description>
	<lastBuildDate>Wed, 14 Jul 2010 07:48:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Synchronizing Folders using Rsync</title>
		<link>http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/</link>
		<comments>http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 07:41:08 +0000</pubDate>
		<dc:creator>awang</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=69</guid>
		<description><![CDATA[This is an alternative to the &#8220;mv&#8221; command (move) or cp (copy) but slightly with a added feature of doing it remotely from server to another server. Local Server rsync -avzp /source-address/* /destination-address/ Remote Server rsync -avzp -e &#8216;ssh -p &#8230; <a href="http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is an alternative to the &#8220;mv&#8221; command (move) or cp (copy) but slightly with a added feature of doing it remotely from server to another server.</p>
<p>Local Server<br />
rsync -avzp /source-address/* /destination-address/</p>
<p>Remote Server<br />
rsync -avzp -e &#8216;ssh -p portnumber&#8217; /source-address/* root@ipaddress:/destination-address/</p>
<p>*Note*<br />
source-address = the source of the folder/files eg:<br />
/home/test/</p>
<p>destination-address = the destination to sync the files from the source eg:<br />
/home/robot/</p>
<p>portnumber = the ssh port number, default is:<br />
22</p>
<p>ipaddress = the ip address of the destination server of the hosname eg:<br />
202.111.111.202 or yahoo.domain.com</p>
<p>Lastly, don&#8217;t forget to change the file ownership, example like below:<br />
chown username.username *</p>
<p>============================================<br />
================== Edit 1 ===================<br />
============================================</p>
<p>If you noticed, some files won&#8217;t be copied over using the Rsync, especially like the .htaccess file. As an alternative you can use this coding to copy those special file like example below:<br />
scp -P portnumber /home/username/public_html/.htaccess root@ipaddress:/home/username/public_html/</p>
<p>If a folder that can&#8217;t be transfered, you can use as below, but make sure to create a folder at server B also, for example as below:<br />
scp -P portnumber /home/username/public_html/.smileys/* root@ipaddress:/home/username/public_html/.smileys/</p>
<p>Don&#8217;t forget to change the ownership again.</p>
<p>============================================<br />
================== Edit 2 ===================<br />
============================================</p>
<p>When moving website that have a database, make sure to properly configure the data base when transferring it.</p>
<p>Let say now our current situation, server A is transferring to server B. After the files have been transferred to server B, log into server A PhpMyAdmin and find the account name.</p>
<p>Click to open the database (_testdb).<br />
Username<br />
|<br />
|&#8212;-_testdb</p>
<p>Click Export<br />
Select compression = gzipped<br />
Click Go</p>
<p>Then just save it any place in your pc.</p>
<p>Ok then, next is a bit tricky part. Go to server B, and the folder where you upload the file and try to open:<br />
nano configuration.php</p>
<p>The content of the file as below:<br />
$mosConfig_offline = &#8217;0&#8242;;<br />
$mosConfig_host = &#8216;localhost&#8217;;<br />
<strong>$mosConfig_user = &#8216;username_testdb&#8217;;</strong><br />
<strong>$mosConfig_password = &#8216;xxxxx&#8217;;<br />
$mosConfig_db = &#8216;username_testdb&#8217;;</strong><br />
$mosConfig_dbprefix = &#8216;mos_&#8217;;<br />
<strong>$mosConfig_absolute_path = &#8216;/home/username/public_html/&#8217;;</strong><br />
$mosConfig_live_site = &#8216;http://domain.com&#8217;;<br />
$mosConfig_sitename = &#8216;Testing Website&#8217;;<br />
$mosConfig_shownoauth = &#8217;0&#8242;;<br />
$mosConfig_useractivation = &#8217;1&#8242;;<br />
$mosConfig_uniquemail = &#8217;1&#8242;;<br />
$mosConfig_usecaptcha = &#8217;0&#8242;;<br />
$mosConfig_offline_message = &#8216;This site is down for maintenance.&lt;br /&gt; Please check back again soon.&#8217;;<br />
$mosConfig_error_message = &#8216;This site is temporarily unavailable.&lt;br /&gt; Please notify the System Administrator&#8217;;<br />
$mosConfig_debug = &#8217;0&#8242;;<br />
$mosConfig_lifetime = &#8217;900&#8242;;<br />
$mosConfig_MetaDesc = &#8216;This Software Site Is Under Serverfreak&#8217;;<br />
$mosConfig_MetaKeys = &#8221;;<br />
$mosConfig_MetaAuthor = &#8217;1&#8242;;<br />
$mosConfig_MetaTitle = &#8217;1&#8242;;<br />
$mosConfig_lang = &#8216;english&#8217;;<br />
$mosConfig_locale = &#8216;en&#8217;;<br />
$mosConfig_charset = &#8216;utf-8&#8242;;<br />
$mosConfig_locale_debug = &#8217;0&#8242;;<br />
$mosConfig_locale_use_gettext = &#8217;0&#8242;;<br />
$mosConfig_offset = &#8217;0&#8242;;<br />
$mosConfig_hideAuthor = &#8217;1&#8242;;<br />
$mosConfig_hideCreateDate = &#8217;1&#8242;;<br />
$mosConfig_hideModifyDate = &#8217;1&#8242;;<br />
$mosConfig_hidePdf = &#8217;0&#8242;;<br />
$mosConfig_hidePrint = &#8217;0&#8242;;<br />
$mosConfig_hideEmail = &#8217;0&#8242;;<br />
$mosConfig_enable_log_items = &#8217;0&#8242;;<br />
$mosConfig_enable_log_searches = &#8217;0&#8242;;<br />
$mosConfig_enable_stats = &#8217;0&#8242;;<br />
$mosConfig_sef = &#8217;0&#8242;;<br />
$mosConfig_vote = &#8217;0&#8242;;<br />
$mosConfig_gzip = &#8217;0&#8242;;<br />
$mosConfig_multipage_toc = &#8217;1&#8242;;<br />
$mosConfig_allowUserRegistration = &#8217;0&#8242;;<br />
$mosConfig_link_titles = &#8217;0&#8242;;<br />
$mosConfig_error_reporting = &#8216;-1&#8242;;<br />
$mosConfig_register_globals = &#8217;1&#8242;;<br />
$mosConfig_list_limit = &#8217;50&#8242;;<br />
$mosConfig_caching = &#8217;0&#8242;;<br />
<strong>$mosConfig_cachepath = &#8216;/home/username/public_html/cache&#8217;;</strong><br />
$mosConfig_cachetime = &#8217;900&#8242;;<br />
$mosConfig_mailer = &#8216;mail&#8217;;<br />
$mosConfig_mailfrom = &#8216;abc@domain.com&#8217;;<br />
$mosConfig_fromname = &#8221;;<br />
$mosConfig_sendmail = &#8216;/usr/sbin/sendmail&#8217;;<br />
$mosConfig_smtpauth = &#8217;0&#8242;;<br />
$mosConfig_smtpuser = &#8221;;<br />
$mosConfig_smtppass = &#8221;;<br />
$mosConfig_smtphost = &#8216;localhost&#8217;;<br />
$mosConfig_back_button = &#8217;0&#8242;;<br />
$mosConfig_item_navigation = &#8217;0&#8242;;<br />
$mosConfig_secret = &#8216;xxxxxx&#8217;;<br />
$mosConfig_pagetitles = &#8217;1&#8242;;<br />
$mosConfig_readmore = &#8217;1&#8242;;<br />
$mosConfig_hits = &#8217;1&#8242;;<br />
$mosConfig_icons = &#8217;1&#8242;;<br />
$mosConfig_favicon = &#8216;favicon.ico&#8217;;<br />
$mosConfig_fileperms = &#8221;;<br />
$mosConfig_dirperms = &#8221;;<br />
$mosConfig_mbf_content = &#8217;0&#8242;;<br />
$mosConfig_helpurl = &#8216;http://docs.mambo-foundation.org&#8217;;</p>
<p>The parts I bold above are the part you need to pay attention.<br />
$mosConfig_user = &#8216;username_testdb&#8217;;<br />
$mosConfig_password = &#8216;xxxxx&#8217;;<br />
$mosConfig_db = &#8216;username_testdb&#8217;;<br />
$mosConfig_absolute_path = &#8216;/home/username/public_html/&#8217;;<br />
$mosConfig_cachepath = &#8216;/home/username/public_html/cache&#8217;;</p>
<p>So now assuming that our database name and the user is username_testdb, while the password is xxxxx</p>
<p>Go to the the account&#8217;s cPanel. Under Database, select the MySQL Databases. Under Create New Database, fill in the <strong>BOLD</strong> part as below:<br />
New Database:   username_<strong>testdb</strong><br />
and then click the Create Database button.</p>
<p>Next, go to the Add New User, then fill in as below:<br />
Username:<strong>username_testdb</strong><br />
Password:<strong>xxxxx</strong><br />
Password (Again):<strong>xxxxx</strong><br />
Click Create User button afterward.</p>
<p>Then, go to Add User To Database section, select as below:<br />
User: username_testdb<br />
Database: username_testdb<br />
and click on the Add button.<br />
It will bring to a new page. This page is quite important. Make sure to Tick the <strong>ALL PRIVILEGES</strong> checkbox and then click the Make Changes button.</p>
<p>============================================<br />
==================== End ====================<br />
============================================</p>
<p>Ok then, the database part is finished. Make sure to test run and check whether got any error message or not. By the way, this were all tested in a cPanel-based hosting. The Rsync and the scp part will work on any hosting, but the database part might be slightly different.</p>
<p>Happy Trails.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;title=Synchronizing Folders using Rsync' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;title=Synchronizing Folders using Rsync' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;title=Synchronizing Folders using Rsync' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;title=Synchronizing Folders using Rsync' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;title=Synchronizing Folders using Rsync' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;title=Synchronizing Folders using Rsync' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/&amp;t=Synchronizing Folders using Rsync' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/synchronizing-folders-using-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compile PHP 5.3 via CustomBuild in Direct Admin</title>
		<link>http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/</link>
		<comments>http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 06:42:19 +0000</pubDate>
		<dc:creator>awang</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=65</guid>
		<description><![CDATA[This is the step on how to compile your PHP into the latest version (or vice versa, according to your preferences) using CustomBuild in Direct Admin servers. Note: This same procedure also can be applied with any other supported modules &#8230; <a href="http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is the step on how to compile your PHP into the latest version (or vice versa, according to your preferences) using CustomBuild in Direct Admin servers.</p>
<p>Note: This same procedure also can be applied with any other supported modules in Direct Admin. Just type &#8220;./build&#8221; to list out the things that you are able to update.</p>
<p>First, go to this folder:<br />
/usr/local/directadmin/custombuild</p>
<p>Then modify the option.conf:<br />
nano options.conf</p>
<p>Try to find this string:<br />
php5_ver=</p>
<p>In my case, my current php is 5.2 and i need to recompile it to 5.3, so my current option.conf should looks like this:<br />
php5_ver=5.2</p>
<p>and modified to this:<br />
php5_ver=5.3</p>
<p>Save and close it.</p>
<p>Next, to download the updated version, type:<br />
./build update</p>
<p>After the download is done, then finally we can start compiling by typing this:<br />
./build php n</p>
<p>The compiling process should take a while. But just in case you ran into this kind of error:<br />
virtual memory exhausted: Cannot allocate memory<br />
make: *** [ext/date/lib/tm2unixtime.lo] Error 1<br />
make: *** Waiting for unfinished jobs&#8230;.<br />
virtual memory exhausted: Cannot allocate memory<br />
make: *** [ext/date/lib/parse_tz.lo] Error 1<br />
virtual memory exhausted: Cannot allocate memory<br />
make: *** [ext/date/lib/parse_date.lo] Error 1</p>
<p>So you are running out of RAM. Make sure too add enough RAM for the process to proceed.</p>
<p>Finally when finished, it will restart the httpd by itself. You can check the php version by typing &#8220;php -v&#8221; and the result as below will appear:<br />
Before:<br />
[root@server custombuild]# php -v<br />
PHP 5.2.13 (cli) (built: Jul  7 2010 01:09:45)<br />
Copyright (c) 1997-2010 The PHP Group<br />
Zend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies</p>
<p>and after:<br />
[root@server custombuild]# php -v<br />
PHP 5.3.2 (cli) (built: Jul  8 2010 07:36:44)<br />
Copyright (c) 1997-2010 The PHP Group<br />
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies</p>
<p>Happy compiling.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;title=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;title=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;title=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;title=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;title=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;title=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/&amp;t=Compile PHP 5.3 via CustomBuild in Direct Admin' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/compile-php-5-3-via-custombuild-in-direct-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding multiple alternative SMTP Port in Direct Admin</title>
		<link>http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/</link>
		<comments>http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 12:56:32 +0000</pubDate>
		<dc:creator>awang</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=62</guid>
		<description><![CDATA[Whereas in Direct Admin, things will done in a manual way. Ssh into the server and type: vi /etc/exim.conf Try to find &#8220;daemon_smtp_ports&#8221; and then you may add/edit the line to look like this: 25 : 587 : 26 The &#8230; <a href="http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Whereas in Direct Admin, things will done in a manual way. Ssh into the server and type:</p>
<p>vi /etc/exim.conf</p>
<p>Try to find &#8220;daemon_smtp_ports&#8221; and then you  may add/edit the line to look like this:<br />
25 : 587 : 26</p>
<p>The above means the email will pass through only on port 25, 26, and 587</p>
<p>Save  and close. Restart Exim.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;title=Adding multiple alternative SMTP Port in Direct Admin' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;title=Adding multiple alternative SMTP Port in Direct Admin' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;title=Adding multiple alternative SMTP Port in Direct Admin' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;title=Adding multiple alternative SMTP Port in Direct Admin' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;title=Adding multiple alternative SMTP Port in Direct Admin' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;title=Adding multiple alternative SMTP Port in Direct Admin' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/&amp;t=Adding multiple alternative SMTP Port in Direct Admin' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-direct-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding multiple alternative SMTP Port in cPanel</title>
		<link>http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/</link>
		<comments>http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 10:49:33 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=60</guid>
		<description><![CDATA[By default, cPanel only support one additional alternative SMTP port. However, if you need multiple port, follow the steps below: 1) Disable &#8220;exim on another port&#8221; in WHM -> Service Manager 2) Go to WHM-> Exim Configuration Editor -> Advanced &#8230; <a href="http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>By default, cPanel only support one additional alternative SMTP port. However, if you need multiple port, follow the steps below:</p>
<p>1) Disable &#8220;exim on another port&#8221; in WHM -> Service Manager<br />
2) Go to WHM-> Exim Configuration Editor -> Advanced Editor -> at the first text box, add in &#8220;daemon_smtp_ports = 25 : 26 : 587&#8243; without &#8220;&#8221;.<br />
3) Save.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;title=Adding multiple alternative SMTP Port in cPanel' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;title=Adding multiple alternative SMTP Port in cPanel' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;title=Adding multiple alternative SMTP Port in cPanel' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;title=Adding multiple alternative SMTP Port in cPanel' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;title=Adding multiple alternative SMTP Port in cPanel' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;title=Adding multiple alternative SMTP Port in cPanel' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/&amp;t=Adding multiple alternative SMTP Port in cPanel' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/adding-multiple-alternative-smtp-port-in-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom php.ini on suPHP using .htaccess</title>
		<link>http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/</link>
		<comments>http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 10:17:47 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=58</guid>
		<description><![CDATA[Remove the lines that begin with &#8220;php_value&#8221; and &#8220;php_flag&#8221;. You will need to move these files to a file named php.ini and upload php.ini into your public_html directory. Then, add the following line into the .htaccess file in your public_html: &#8230; <a href="http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Remove the lines that begin with &#8220;php_value&#8221; and &#8220;php_flag&#8221;. You will need to move these files to a file named php.ini and upload php.ini into your public_html directory. Then, add the following line into the .htaccess file in your public_html:</p>
<p>suPHP_ConfigPath /home/username/public_html</p>
<p>where &#8220;username&#8221; is your cPanel username. You will need to remove php_value and php_flag from ALL .htaccess files you may have. However, you only need to add the suPHP_ConfigPath line in the .htaccess file in your public_html directory only.</p>
<p>Please note that you will need to change the format of your php_value and php_flag lines into the php.ini format</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;title=Custom php.ini on suPHP using .htaccess' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;title=Custom php.ini on suPHP using .htaccess' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;title=Custom php.ini on suPHP using .htaccess' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;title=Custom php.ini on suPHP using .htaccess' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;title=Custom php.ini on suPHP using .htaccess' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;title=Custom php.ini on suPHP using .htaccess' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/&amp;t=Custom php.ini on suPHP using .htaccess' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/custom-php-ini-on-suphp-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix User&#8217;s Folder and File permission when suPHP enabled</title>
		<link>http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/</link>
		<comments>http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 04:02:07 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=52</guid>
		<description><![CDATA[Just use the command below to fix the user&#8217;s files and folder permission. find /home/username/public_html/ -type d -exec chmod 755 {} \; find /home/username/public_html/ -type f -exec chmod 644 {} \; Repace with the real username in the system.]]></description>
			<content:encoded><![CDATA[<p>Just use the command below to fix the user&#8217;s files and folder permission.</p>
<blockquote><p>
<strong>find /home/username/public_html/ -type d -exec chmod 755 {} \;</strong>
</p></blockquote>
<blockquote><p>
<strong>find /home/username/public_html/ -type f -exec chmod 644 {} \;</strong>
</p></blockquote>
<p>Repace <username> with the real username in the system.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;title=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;title=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;title=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;title=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;title=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;title=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/&amp;t=Fix User&#8217;s Folder and File permission when suPHP enabled' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/fix-users-folder-and-file-permission-when-suphp-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[HowTo] Update Timezone on CentOS/RedHat</title>
		<link>http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/</link>
		<comments>http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 15:51:13 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=43</guid>
		<description><![CDATA[This tutorial shows you how to update timezone on your CentOS/Redhat machine. Run the command below to install system-config-date. [root]# yum install system-config-date [root]# setup Go-to -&#62; Timezone configuration -&#62; Select your local time zone -&#62; Click OK -&#62; Quit. &#8230; <a href="http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows you how to update timezone on your CentOS/Redhat machine. Run the command below to install system-config-date.</p>
<p>[root]# yum install system-config-date<br />
[root]# setup</p>
<p>Go-to -&gt; Timezone configuration -&gt; Select your local time zone -&gt; Click OK -&gt; Quit.</p>
<p>To check your current timezone:<br />
[root]# date<br />
Sun Mar 15 23:50:42 MYT 2009</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;title=[HowTo] Update Timezone on CentOS/RedHat' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;title=[HowTo] Update Timezone on CentOS/RedHat' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;title=[HowTo] Update Timezone on CentOS/RedHat' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;title=[HowTo] Update Timezone on CentOS/RedHat' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;title=[HowTo] Update Timezone on CentOS/RedHat' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;title=[HowTo] Update Timezone on CentOS/RedHat' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/&amp;t=[HowTo] Update Timezone on CentOS/RedHat' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/howto-update-timezone-on-centosredhat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Your Streamyx Problem Today by Using TMnet Proxy</title>
		<link>http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/</link>
		<comments>http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 18:59:28 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=35</guid>
		<description><![CDATA[Guys, if you having packet loss problem now with streamyx, you can use these proxies. Usable proxy list: 219.93.178.162:3128 updated: 26/04/2010 Firefox setting: Tools -&#62;Options-&#62;Advance-&#62;Network-&#62;Settings Internet Explorer Setting: Tools -&#62; Internet Options -&#62; Connections -&#62; Lan Settings Notes: If you &#8230; <a href="http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Guys, if you having packet loss problem now with streamyx, you can use these proxies.<br />
<span style="text-decoration: line-through;"><br />
</span><strong> </strong></p>
<p><strong>Usable proxy list:<br />
</strong>219.93.178.162:3128</p>
<p><em>updated: 26/04/2010</em></p>
<p><strong>Firefox setting:</strong></p>
<p>Tools -&gt;Options-&gt;Advance-&gt;Network-&gt;Settings</p>
<p><img class="alignnone size-full wp-image-36" title="proxy" src="http://www.iprobot.net/wp-content/uploads/2009/02/proxy.jpg" alt="proxy" width="450" height="451" /></p>
<p><strong>Internet Explorer Setting:</strong></p>
<p>Tools -&gt; Internet Options -&gt; Connections -&gt; Lan Settings</p>
<p><a href="http://www.iprobot.net/wp-content/uploads/2009/02/ie-proxy.jpg"><img class="alignnone size-thumbnail wp-image-46" title="ie-proxy" src="http://www.iprobot.net/wp-content/uploads/2009/02/ie-proxy-150x150.jpg" alt="ie-proxy" width="150" height="150" /></a></p>
<p>Notes: If you happen to get error message while surfing the net using this proxy, which means this proxy is no longer usable.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;title=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;title=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;title=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;title=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;title=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;title=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/&amp;t=Fix Your Streamyx Problem Today by Using TMnet Proxy' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/internet/fix-your-streamyx-problem-today-by-using-tmnet-proxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Opera v9.60  Released</title>
		<link>http://www.iprobot.net/internet/opera-v960-released/</link>
		<comments>http://www.iprobot.net/internet/opera-v960-released/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 03:35:45 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=32</guid>
		<description><![CDATA[The most full-featured Internet power tool on the market, Opera includes pop-up blocking, tabbed browsing, integrated searches, and advanced functions like Opera&#8217;s groundbreaking E-mail program, RSS Newsfeeds and IRC chat. And because we know that our users have different needs, &#8230; <a href="http://www.iprobot.net/internet/opera-v960-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The most full-featured Internet power tool on the market, Opera includes pop-up blocking, tabbed browsing, integrated searches, and advanced functions like Opera&#8217;s groundbreaking E-mail program, RSS Newsfeeds and IRC chat. And because we know that our users have different needs, you can customize the look and content of your Opera browser with a few clicks of the mouse.</p>
<p>Download: <a href="http://www.opera.com/download/" target="_blank">Opera v9.60</a></p>
<p><span id="more-32"></span></p>
<h2>Release Notes</h2>
<p>Opera 9.6 is a recommended security and stability upgrade. See the <a href="http://www.opera.com/docs/changelogs/windows/960/#sec">Security</a> section.</p>
<p>A separate changelog listing <a href="http://www.opera.com/docs/changelogs/windows/960/sincebeta1.dml">changes since Opera 9.6 Beta 1</a> is available.</p>
<h2>New and improved features in Opera 9.6</h2>
<h3>Opera Link</h3>
<p>Custom search engines and typed history (typed history is only the history you explicitly type or select from the address bar) are now joining bookmarks, notes, personal bar and Speed Dial in Opera Link.</p>
<h3>Opera Mail</h3>
<h4>Feed Preview</h4>
<p>Now you can preview an RSS/Atom feed before subscribing.</p>
<h4>Follow/Ignore threads and contacts</h4>
<p>Follow and Ignore are new features for users that receive numerous messages. It makes it easier to dismiss unimportant messages and easier to recognise important messages.</p>
<ul>
<li>Activate this feature by selecting Follow/Ignore in the email context menu (or click the message subject header), then select either Follow Thread or Ignore Thread.</li>
<li>Also, you can click the names in the From or To headers to enable the following or ignoring of contacts.</li>
</ul>
<h4>Go To Thread</h4>
<p>You can now also use &#8220;Go to thread&#8221; which means that you can view only the messages from that thread. This is useful for those that employ flat view.</p>
<h4>Low Bandwidth Mode</h4>
<p>Low Bandwidth Mode is a setting on mail accounts that makes Opera Mail use as little bandwidth as possible.</p>
<ul>
<li>For <strong>IMAP</strong> (Internet Message Access Protocol): Opera will only synchronise new messages and it will not fetch message attachments unless requested</li>
<li>For <strong>POP</strong> (Post Office Protocol): Opera will not fetch more than the first 100 lines of a message unless requested</li>
</ul>
<h3>Opera Scroll Marker</h3>
<p>The new Opera Scroll Marker makes it easier to continue reading when you scroll through a Web page. At the end of the page it will indicate the previous position of the bottom of the screen so you can easily see where to continue reading.</p>
<p>Enable Opera Scroll Marker in the Preferences dialog box. Navigate to <strong>Tools &gt; Preferences &gt; Advanced &gt; Browsing &gt; Show scroll marker (check box)</strong>.</p>
<ul>
<li>Check the box to enable Opera Scroll Marker</li>
<li>Leave the box unchecked (default) to keep it disabled</li>
</ul>
<p>Using the opera:config Preferences Editor <a href="opera:config#UserPrefs%7CEnableScrollMarker">opera:config#UserPrefs|EnableScrollMarker</a>, you can also set Opera Scroll Marker to show every time you scroll less than a full page down or up. The options in the drop-down menu are:</p>
<ul>
<li><strong>0</strong> — off</li>
<li><strong>1</strong> — show when reaching the bottom or top of the page</li>
<li><strong>2</strong> — always show when scrolling</li>
</ul>
<h2>Changes since Opera 9.52</h2>
<h3>User Interface</h3>
<ul>
<li>Opera now remembers the bookmark panel position after restart</li>
<li>Added a setting <a href="opera:config#UserPrefs%7CShowBookmarksInAddressfieldAutocompletion">opera:config#UserPrefs|ShowBookmarksInAddressfieldAutocompletion</a> to prevent bookmarks from showing in the Address field auto-completion drop-down</li>
<li>When setting <a href="opera:config#TransferWindow%7CKeepEntriesDays">opera:config#TransferWindow|KeepEntriesDays</a> to 0, Opera now removes the transfer history when restarting</li>
<li>Sites using HTTP Auth are now saved in typed history</li>
<li>Opera now stops loading pages with iframes when closing the page or pressing stop</li>
<li>Page encoding in site preferences can now be reset to automatic</li>
<li>Browsing Intranet sites now works after changing proxies in a running session</li>
<li>Improvements to Opera Link include the synchronization of search engines and typed history</li>
<li>Changed the default global history to 1000</li>
<li>Added a new default speedial.ini</li>
<li>Fixed sorting by progress in Transfers</li>
<li>Fixed copying of multiple entries from the history manager</li>
<li>Fixed a bug that could cause notes to be lost when using certain characters</li>
<li>Fixed dataloss situation when note folders had more than one line in their name</li>
<li>Fixed spurious highlighting when using the space character in inline find</li>
<li>Fixed an issue that would prevent links in frames from being opened by the keyboard</li>
</ul>
<h3>Mail, News, Chat</h3>
<ul>
<li>Added popular Chinese providers in mailproviders.xml</li>
<li>Made all top-level access points (except All Messages) selectable</li>
<li>Now copes better with broken POP servers that send empty UIDLs</li>
<li>The &#8220;Large font&#8221; setting is now respected for subjects</li>
<li>Cache files from feeds no longer show up in Transfers</li>
<li>Feeds are now detected even when served as text/html</li>
<li>Fixed the synchronization of removed labels for IMAP accounts</li>
<li>Fixed an issue where the signatures wouldn&#8217;t change if the default account signature ended with a space</li>
<li>Fixed an issue where sent message bodies could disappear under certain circumstances</li>
<li>Fixed DCC transfers in IRC</li>
</ul>
<h3>Display and Scripting</h3>
<ul>
<li>Improved Acid3 support: The <code>document</code> property has been removed from <code>iframe</code> objects for compatibility with Gecko, WebKit, and the Acid3 test</li>
<li>Added support for the <a href="http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Global_Objects:Function:caller"><code>caller</code> property on functions</a>: http://developer.mozilla.org/En/Core_JavaScript_1.5_Reference:Global_Objects:Function:caller</li>
<li>Special characters are now displayed properly in the Address bar drop-down</li>
<li>Opera Dragonfly element highlighting no longer stays on the page after closing the developer tools window</li>
<li>Script focused elements are no longer highlighted</li>
<li>Fixed saving of SVG when right clicking</li>
<li>Fixed an issue where custom search engines would not get a favicon</li>
</ul>
<h3 id="sec">Security</h3>
<ul>
<li>Verisign and Comodo are now formally EV-enabled: see <a href="http://my.opera.com/rootstore/blog/2008/09/12/verisign-and-comodo-formally-ev-enabled">Yngve&#8217;s blog post</a></li>
<li>Fixed an issue where specially crafted addresses could execute arbitrary code, as reported by Chris of Matasano Security; see our <a href="http://www.opera.com/support/search/view/901/">advisory</a></li>
<li>Java applets can no longer be used to read sensitive information, as reported by Nate McFeters; see our <a href="http://www.opera.com/support/search/view/902/">advisory</a></li>
</ul>
<h3>Miscellaneous</h3>
<ul>
<li>Added the Opera Core version (currently &#8220;Presto/2.1.1&#8243;) to the User Agent header</li>
<li>Improved performance with large wand.dat files</li>
<li>Fixed Fast Forward on Google search results pages</li>
</ul>
<h3>Windows-specific changes</h3>
<ul>
<li>Fixed a bug where network paths that start with \\ would not work, which in particular caused issues with sent mail when storing profiles on network drives</li>
<li>Fixed installation problems on Windows NT 4.0</li>
</ul>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/internet/opera-v960-released/&amp;title=Opera v9.60  Released' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/internet/opera-v960-released/&amp;title=Opera v9.60  Released' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/internet/opera-v960-released/&amp;title=Opera v9.60  Released' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/internet/opera-v960-released/&amp;title=Opera v9.60  Released' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/internet/opera-v960-released/&amp;title=Opera v9.60  Released' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/internet/opera-v960-released/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/internet/opera-v960-released/&amp;title=Opera v9.60  Released' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/internet/opera-v960-released/&amp;t=Opera v9.60  Released' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/internet/opera-v960-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[How-to]Install DOM XML on Directadmin</title>
		<link>http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/</link>
		<comments>http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 06:39:22 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=29</guid>
		<description><![CDATA[Below is the tutorial on how-to install DOM-XML in DirectAdmin using customapache. # yum install libxml2-devel libxslt-devel libgcrypt-devel # cd /usr/local/directadmin/customapache # vi configure.php Add this to configure.php before &#8211;with-gd \ : &#8211;with-dom=/usr/lib \ &#8211;with-dom-exslt=/usr/lib \ &#8211;with-dom-xslt=/usr/lib \ # ./build &#8230; <a href="http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Below is the tutorial on how-to install DOM-XML in DirectAdmin using customapache.</p>
<blockquote><p><strong># yum install libxml2-devel libxslt-devel libgcrypt-devel<br />
# cd /usr/local/directadmin/customapache<br />
# vi configure.php</p>
<p>Add this to configure.php before &#8211;with-gd \ :<br />
&#8211;with-dom=/usr/lib \<br />
&#8211;with-dom-exslt=/usr/lib \<br />
&#8211;with-dom-xslt=/usr/lib \</p>
<p># ./build clean<br />
# ./build php n<br />
# service httpd restart </strong></p></blockquote>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;title=[How-to]Install DOM XML on Directadmin' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us]'  /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;title=[How-to]Install DOM XML on Directadmin' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg]'  /></a> <a href='http://reddit.com/submit?url=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;title=[How-to]Install DOM XML on Directadmin' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit]'  /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;title=[How-to]Install DOM XML on Directadmin' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot]'  /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;title=[How-to]Install DOM XML on Directadmin' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon]'  /></a> <a href='http://technorati.com/faves?add=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/' title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati]'  /></a> <a href='https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;title=[How-to]Install DOM XML on Directadmin' title='Save to Windows Live' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live]'  /></a> <a href='http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/&amp;t=[How-to]Install DOM XML on Directadmin' title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.iprobot.net/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!]'  /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.iprobot.net/linux-tutorial/how-toinstall-dom-xml-on-directadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
