<?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 &#187; Linux Tutorial</title>
	<atom:link href="http://www.iprobot.net/category/linux-tutorial/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>[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>
		<item>
		<title>[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit</title>
		<link>http://www.iprobot.net/linux-tutorial/directadmin-problem-fix-directadmin-installation-on-centos-64bit/</link>
		<comments>http://www.iprobot.net/linux-tutorial/directadmin-problem-fix-directadmin-installation-on-centos-64bit/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 05:06:15 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=27</guid>
		<description><![CDATA[Make sure you install these before installing DirectAdmin yum install gcc-c++ libxml2-devel libjpeg-devel libpng-devel -y As you notice on 64-bit, you have /lib and /lib64. It&#8217;s just the dynamic linking in the installer is a bit skewed, now run the &#8230; <a href="http://www.iprobot.net/linux-tutorial/directadmin-problem-fix-directadmin-installation-on-centos-64bit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Make sure you install these before installing DirectAdmin</p>
<blockquote><p><strong>yum <span class="highlight">install</span> gcc-c++ libxml2-devel libjpeg-devel libpng-devel -y</strong></p></blockquote>
<p>As you notice on 64-bit, you have /lib and /lib64. It&#8217;s just the dynamic linking in the installer is a bit skewed, now run the command below:</p>
<blockquote><p><strong>ln -sf /usr/lib64/libgssapi_krb5.so.2.2 /usr/lib/libgssapi_krb5.so</p>
<p>ln -sf /usr/lib64/libkrb5.so.3.3 /usr/lib/libkrb5.so</p>
<p>ln -sf /usr/lib64/libk5crypto.so.3.1 /usr/lib/libk5crypto.so</p>
<p>ln -sf /lib64/libcom_err.so.2 /usr/lib/libcom_err.so</p>
<p>ln -sf /usr/lib64/libexpat.so /usr/lib/libexpat.so</p>
<p>ln -sf /usr/lib64/libm.so /usr/lib/libm.so</p>
<p>ln -sf /usr/lib64/libssl.so /usr/lib/libssl.so </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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;title=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;title=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;title=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;title=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;title=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;title=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/&amp;t=[DirectAdmin-Problem] Fix DirectAdmin Installation on CentOS 64bit' 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/directadmin-problem-fix-directadmin-installation-on-centos-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[OpenVZ-Problem] Server refused to allocate pty</title>
		<link>http://www.iprobot.net/linux-tutorial/openvz-problem-server-refused-to-allocate-pty/</link>
		<comments>http://www.iprobot.net/linux-tutorial/openvz-problem-server-refused-to-allocate-pty/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 04:35:19 +0000</pubDate>
		<dc:creator>SamO</dc:creator>
				<category><![CDATA[Linux Tutorial]]></category>

		<guid isPermaLink="false">http://www.iprobot.net/?p=21</guid>
		<description><![CDATA[If you are getting this error message in your OpenVZ vm, you can fix this by running command below in your VPS node: vzctl exec &#60;VPSID&#62; /sbin/MAKEDEV ptyp]]></description>
			<content:encoded><![CDATA[<p>If you are getting this error message in your OpenVZ vm, you can fix this by running command below in your VPS node:</p>
<blockquote><p><strong>vzctl exec &lt;VPSID&gt; /sbin/MAKEDEV ptyp</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/openvz-problem-server-refused-to-allocate-pty/&amp;title=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/&amp;title=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/&amp;title=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/&amp;title=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/&amp;title=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/' 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/openvz-problem-server-refused-to-allocate-pty/&amp;title=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/&amp;t=[OpenVZ-Problem] Server refused to allocate pty' 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/openvz-problem-server-refused-to-allocate-pty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
