<?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>ThinkSupport.net - Outsourced Web Hosting Support, Cheap Server Management, Cheap Fully Managed Dedicated Servers, Software Development, Website Designing and SEO services, Vision Helpdesk Software &#187; Linux</title>
	<atom:link href="http://www.thinksupport.net/blog/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thinksupport.net/blog</link>
	<description>Outsourced Web Hosting and Software Development</description>
	<lastBuildDate>Tue, 01 Feb 2011 12:42:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Apache &#8211; Address already in use: make_sock: could not bind to address</title>
		<link>http://www.thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html</link>
		<comments>http://www.thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html#comments</comments>
		<pubDate>Tue, 19 Aug 2008 06:31:21 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html</guid>
		<description><![CDATA[This error message can be caused by an improper shut down, the apache processes are still hanging around and apachectl restart won&#8217;t work. Solution just kill off the hanging processes: # fuser 80/tcp 80/tcp: 3010 3702 4088 16754 # kill -n 9 3010 # kill -n 9 3702 # kill -n 9 4088 # kill [...]]]></description>
			<content:encoded><![CDATA[<p>This error message can be caused by an improper shut down, the apache processes are still hanging around and apachectl restart won&#8217;t work.</p>
<p><strong>Solution</strong></p>
<p>just kill off the hanging processes:<br />
# fuser 80/tcp<br />
80/tcp: 3010 3702 4088 16754<br />
# kill -n 9 3010<br />
# kill -n 9 3702<br />
# kill -n 9 4088<br />
# kill -n 9 16754<br />
# apachectl start</p>
<p>or if there&#8217;s loads of processes use<br />
# for i in $(fuser 80/tcp);do kill -n 9 $i;done<br />
to kill them all off</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/apache-address-already-in-use-make_sock-could-not-bind-to-address.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix (rpmdb Lock table is out of available locker entries) error when trying to use RPM.</title>
		<link>http://www.thinksupport.net/blog/how-to-fix-rpmdb-lock-table-is-out-of-available-locker-entries-error-when-trying-to-use-rpm.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-fix-rpmdb-lock-table-is-out-of-available-locker-entries-error-when-trying-to-use-rpm.html#comments</comments>
		<pubDate>Tue, 13 May 2008 13:28:53 +0000</pubDate>
		<dc:creator>Sunil</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/how-to-fix-rpmdb-lock-table-is-out-of-available-locker-entries-error-when-trying-to-use-rpm.html</guid>
		<description><![CDATA[If you are trying to use rpm or yum (which in turn calls RPM) and its showing a locker issues that looks something like this: rpmdb: Lock table is out of available locker entries error: db4 error(22) from db-&#62;close: Invalid argument error: cannot open Packages index or rpmdb: Lock table is out of available locker [...]]]></description>
			<content:encoded><![CDATA[<p>If you are trying to use rpm or yum (which in turn calls RPM) and its showing a locker issues that looks something like this:</p>
<p><strong>rpmdb: Lock table is out of available locker entries</strong><br />
<strong>error: db4 error(22) from db-&gt;close: Invalid argument</strong><br />
<strong>error: cannot open Packages index</strong></p>
<p>or</p>
<p><strong>rpmdb: Lock table is out of available locker entries</strong><br />
<strong>error: db4 error(22) from db-&gt;close: Invalid argument</strong><br />
<strong>error: cannot open Packages index using db3 &#8211; Cannot allocate memory (12)</strong><br />
<strong>error: cannot open Packages database in /var/lib/rpm</strong></p>
<p><strong>Solution :</strong><br />
Make a backup of /var/lib/rpm in case you break something:</p>
<p><p>tar cvzf rpmdb-backup.tar.gz /var/lib/rpm</p>
<p>Remove the Berkeley databases that rpm uses:</p>
<p><p>rm /var/lib/rpm/__db.00*</p>
<p>Make rpm rebuild the databases from scratch (may take a short while):</p>
<p><p>rpm &#8211;rebuilddb</p>
<p>Now, check rpm to make sure everything is okay:</p>
<p><p>rpm -qa | sort</p>
<p><strong>Why does this happen?</strong><br />
When rpm accesses the Berkeley database files, it makes temporary locker entries within the tables while it searches for data. If you control-c your rpm processes often, this issue will occur much sooner because the locks are never cleared.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-fix-rpmdb-lock-table-is-out-of-available-locker-entries-error-when-trying-to-use-rpm.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Send Email from a PHP Script</title>
		<link>http://www.thinksupport.net/blog/how-to-send-email-from-a-php-script.html</link>
		<comments>http://www.thinksupport.net/blog/how-to-send-email-from-a-php-script.html#comments</comments>
		<pubDate>Sat, 12 Jan 2008 06:22:43 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Direct Admin]]></category>
		<category><![CDATA[Ensim]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Helm]]></category>
		<category><![CDATA[HSP]]></category>
		<category><![CDATA[HSphere]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP / Mysql]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/how-to-send-email-from-a-php-script.html</guid>
		<description><![CDATA[Using php mail() function to send emails from php script. Send Email from a PHP Script Example : The first argument to this function is the recipient, the second specifies the message&#8217;s subject and the third one should contain the body. So to send a simple sample message, we could use:]]></description>
			<content:encoded><![CDATA[<p>Using  php mail() function to send emails from php script.</p>
<p>Send Email from a PHP Script Example :</p>
<p>The first argument to this function is the recipient, the second specifies the message&#8217;s subject and the third one should contain the body. So to send a simple sample message, we could use:</p>
<blockquote><p>
<? php<br />
    $to = "recipient@example.com";<br />
    $subject = "Hi!";<br />
    $body = "Hi,\n\nHow are you?";<br />
    if (mail($to, $subject, $body)) {<br />
      echo("
<p>Message successfully sent!</p>
<p>&#8220;);<br />
     } else {<br />
      echo(&#8220;
<p>Message delivery failed&#8230;</p>
<p>&#8220;);<br />
     }<br />
    ?>
</p></blockquote>
<p>Save this file as mail.php and browse from url http://yourdomain/mail.php </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/how-to-send-email-from-a-php-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what ports are listening on my server?</title>
		<link>http://www.thinksupport.net/blog/what-ports-are-listening-on-my-server.html</link>
		<comments>http://www.thinksupport.net/blog/what-ports-are-listening-on-my-server.html#comments</comments>
		<pubDate>Sun, 29 Jul 2007 10:50:05 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Ensim]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/what-ports-are-listening-on-my-server.html</guid>
		<description><![CDATA[You can use this commands &#8211; lsof -i Or netstat &#8211;listen]]></description>
			<content:encoded><![CDATA[<p>You can use this commands &#8211;</p>
<p>lsof -i</p>
<p>Or </p>
<p>netstat &#8211;listen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/what-ports-are-listening-on-my-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk Linux server &#8212; Configure qmail to run on port 26.</title>
		<link>http://www.thinksupport.net/blog/plesk-linux-server-configure-qmail-to-run-on-port-26.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-linux-server-configure-qmail-to-run-on-port-26.html#comments</comments>
		<pubDate>Sun, 29 Jul 2007 10:36:48 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/plesk-linux-server-configure-qmail-to-run-on-port-26.html</guid>
		<description><![CDATA[Follow below steps to change smtp port on plesk server to 26. >> cd /etc/xinetd.d >> ls -l &#124; grep smtp* >> cat smtp_psa service smtp { socket_type = stream protocol = tcp wait = no disable = no user = root instances = UNLIMITED server = /var/qmail/bin/tcp-env server_args = /usr/sbin/rblsmtpd -r bl.spamcop.net /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd [...]]]></description>
			<content:encoded><![CDATA[<p>Follow below steps to change smtp port on plesk server to 26.</p>
<p>>> cd /etc/xinetd.d<br />
>> ls -l | grep smtp*<br />
>> cat smtp_psa</p>
<p>service smtp<br />
{<br />
        socket_type     = stream<br />
        protocol        = tcp<br />
        wait            = no<br />
        disable         = no<br />
        user            = root<br />
        instances       = UNLIMITED<br />
        server          = /var/qmail/bin/tcp-env<br />
        server_args     = /usr/sbin/rblsmtpd  -r bl.spamcop.net /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true<br />
}</p>
<p>>> pico /etc/services</p>
<p>Add this line<br />
smtp_psa_new  26/tcp          mail<br />
smtp_psa_new  26/udp          mail</p>
<p>>> cp smtp_psa smtp_psa_new</p>
<p>Change the service line in the new file &#8216;smtp_psa_new&#8221; to be this:</p>
<p>service smtp_psa_new<br />
{<br />
        socket_type     = stream<br />
        protocol        = tcp<br />
        wait            = no<br />
        disable         = no<br />
        user            = root<br />
        instances       = UNLIMITED<br />
        server          = /var/qmail/bin/tcp-env<br />
        server_args     = /usr/sbin/rblsmtpd  -r bl.spamcop.net /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true<br />
}</p>
<p> >> /etc/init.d/xinetd restart</p>
<p>And you should see smtp listening on ports 25, and 26:</p>
<p>>> netstat -anp | grep xinetd</p>
<p>tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN      6989/xinetd<br />
tcp        0      0 0.0.0.0:26              0.0.0.0:*               LISTEN      6989/xinetd</p>
<p>You are done ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-linux-server-configure-qmail-to-run-on-port-26.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk &#8211; How to access MySQL from the command line?</title>
		<link>http://www.thinksupport.net/blog/plesk-how-to-access-mysql-from-the-command-line.html</link>
		<comments>http://www.thinksupport.net/blog/plesk-how-to-access-mysql-from-the-command-line.html#comments</comments>
		<pubDate>Sun, 29 Jul 2007 10:17:07 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/plesk-how-to-access-mysql-from-the-command-line.html</guid>
		<description><![CDATA[You can use this command on command prompt - mysql -umysql_user -pmysqlpass]]></description>
			<content:encoded><![CDATA[<p>You can use this command on command prompt -</p>
<p>mysql -umysql_user -pmysqlpass</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/plesk-how-to-access-mysql-from-the-command-line.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IonCube Error zend_hash_destroy</title>
		<link>http://www.thinksupport.net/blog/ion-cube-error-zend_hash_destroy.html</link>
		<comments>http://www.thinksupport.net/blog/ion-cube-error-zend_hash_destroy.html#comments</comments>
		<pubDate>Wed, 06 Jun 2007 10:40:48 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=211</guid>
		<description><![CDATA[If you come across error after installing ioncube /home/username/public_html/ioncube/ioncube_loader_lin_5.2.so: undefined symbol: zend_hash_destroy in Follow this &#8211; This can occur if PHP is configured with the option &#8211;enable-versioning This option can prevent the export of global PHP API symbols, causing failure when attempting to link libraries such as the Loader or Zend Optimiser. PHP must be [...]]]></description>
			<content:encoded><![CDATA[<p>If you come across error after installing ioncube </p>
<p><strong>/home/username/public_html/ioncube/ioncube_loader_lin_5.2.so: undefined symbol: zend_hash_destroy in</strong></p>
<p>Follow this &#8211;</p>
<p>This can occur if PHP is configured with the option<br />
  &#8211;enable-versioning<br />
This option can prevent the export of global PHP API symbols, causing failure when attempting to link libraries such as the Loader or Zend Optimiser. PHP must be rebuilt without that option so that the PHP API is correctly visible. A phpinfo page should show at the top of the page what options were used to configure PHP, and should confirm that the option had been used.</p>
<p>Thanks </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/ion-cube-error-zend_hash_destroy.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Quota Check Tool</title>
		<link>http://www.thinksupport.net/blog/mysql-quota-check-tool.html</link>
		<comments>http://www.thinksupport.net/blog/mysql-quota-check-tool.html#comments</comments>
		<pubDate>Sat, 26 May 2007 06:29:36 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Articles -- Webhosting]]></category>
		<category><![CDATA[Direct Admin]]></category>
		<category><![CDATA[Ensim]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP / Mysql]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=204</guid>
		<description><![CDATA[I came across wonderfull mysql quota check tool &#8212; Here is how it works - The MySQL Quota-Tool helps you to set a size limit on MySQL databases. It works by checking the size of each database and revoking the INSERT- and REATE-priveleges for the databases, which exceed the given size limit. When the size [...]]]></description>
			<content:encoded><![CDATA[<p>I came across wonderfull mysql quota check tool &#8212; Here is how it works -</p>
<p>The MySQL Quota-Tool helps you to set a size limit on MySQL databases.</p>
<p>It works by checking the size of each database and revoking the INSERT- and REATE-priveleges for the databases, which exceed the given size limit.</p>
<p>When the size of the database falls below the given limit, the INSERT- and CREATE-priveleges are granted again.</p>
<p>This (of course) doesn&#8217;t work for users who have global priveleges, because the quota is database and not user based, but in most environments privileges are given in the &#8220;db&#8221;-table which is modified by the MySQL Quota Tool. </p>
<p><code>#!/usr/bin/php -q<br />
<?PHP</p>
<p>/*<br />
 * MySQL quota script<br />
 * written by Sebastian Marsching<br />
 *<br />
 */</p>
<p>/*<br />
    This program is free software; you can redistribute it and/or modify<br />
    it under the terms of the GNU General Public License as published by<br />
    the Free Software Foundation; either version 2 of the License, or<br />
    (at your option) any later version.</p>
<p>    This program is distributed in the hope that it will be useful,<br />
    but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
    GNU General Public License for more details.</p>
<p>    You should have received a copy of the GNU General Public License<br />
    along with this program; if not, write to the Free Software<br />
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA<br />
*/</p>
<p>/*<br />
 * Create table for quota data with the following statement:<br />
 *<br />
 * CREATE TABLE `Quota` (`Db` CHAR(64) NOT NULL,<br />
 * `Limit` BIGINT NOT NULL,<br />
 * `Exceeded` ENUM('Y','N') DEFAULT 'N' NOT NULL,<br />
 * PRIMARY KEY (`Db`), UNIQUE (`Db`));<br />
 *<br />
 * The field 'db' stores the information for which database<br />
 * you want to limit the size.<br />
 * The field 'limit' is the size limit in bytes.<br />
 * The field 'exceeded' is only used internally and must be<br />
 * initialized with 'N'.<br />
 */</p>
<p>/*<br />
 * Settings<br />
 */</p>
<p>$mysql_host  = 'localhost';<br />
$mysql_user  = 'root'; // Do NOT change, root-access is required<br />
$mysql_pass  = '';<br />
$mysql_db    = 'quotadb'; // Not the DB to check, but the db with the quota table<br />
$mysql_table = 'quota';</p>
<p>/*<br />
 * Do NOT change anything below<br />
 */</p>
<p>$debug = 0;</p>
<p>// Connect to MySQL Server</p>
<p>if (!mysql_connect($mysql_host, $mysql_user, $mysql_pass))<br />
{<br />
 echo "Connection to MySQL-server failed!";<br />
 exit;<br />
}</p>
<p>// Select database</p>
<p>if (!mysql_select_db($mysql_db))<br />
{<br />
 echo "Selection of database $mysql_db failed!";<br />
 exit;<br />
}</p>
<p>// Check quota for each entry in quota table</p>
<p>$sql = "SELECT * FROM $mysql_table;";<br />
$result = mysql_query($sql);</p>
<p>while ($row = mysql_fetch_array($result))<br />
{<br />
 $quota_db = $row['db'];<br />
 $quota_limit = $row['limit'];<br />
 $quota_exceeded = ($row['exceeded']=='Y') ? 1 : 0;</p>
<p> if ($debug)<br />
  echo "Checking quota for '$quota_db'...\n";</p>
<p> $qsql = "SHOW TABLE STATUS FROM $quota_db;";<br />
 $qresult = mysql_query($qsql);</p>
<p> if ($debug)<br />
  echo "SQL-query is \"$qsql\"\n";</p>
<p> $quota_size = 0;</p>
<p> while ($qrow = mysql_fetch_array($qresult))<br />
 {<br />
  if ($debug)<br />
  { echo "Result of query:\n"; var_dump($qrow); }<br />
  $quota_size += $qrow['Data_length'] + $qrow['Index_length'];<br />
 }</p>
<p> if ($debug)<br />
  echo "Size is $quota_size bytes, limit is $quota_limit bytes\n";</p>
<p> if ($debug &#038;&#038; $quota_exceeded)<br />
  echo "Quota is marked as exceeded.\n";<br />
 if ($debug &#038;&#038; !$quota_exceeded)<br />
  echo "Quota is not marked as exceeded.\n";</p>
<p> if (($quota_size > $quota_limit) &#038;&#038; !$quota_exceeded)<br />
 {<br />
  if ($debug)<br />
   echo "Locking database...\n";<br />
  // Save in quota table<br />
  $usql = "UPDATE $mysql_table SET exceeded='Y' WHERE db='$quota_db';";<br />
  mysql_query($usql);<br />
  if ($debug)<br />
   echo "Querying: $usql\n";<br />
  // Dismiss CREATE and INSERT privilege for database<br />
  mysql_select_db('mysql');<br />
  $usql = "UPDATE db SET Insert_priv='N', Create_priv='N' WHERE Db='$quota_db';";<br />
  mysql_query($usql);<br />
  if ($debug)<br />
   echo "Querying: $usql\n";<br />
  mysql_select_db($mysql_db);<br />
 }</p>
<p> if (($quota_size <= $quota_limit) &#038;&#038; $quota_exceeded)<br />
 {<br />
  if ($debug)<br />
   echo "Unlocking database...\n";<br />
  // Save in quota table<br />
  $usql = "UPDATE $mysql_table SET exceeded='N' WHERE db='$quota_db';";<br />
  mysql_query($usql);<br />
  if ($debug)<br />
   echo "Querying: $usql\n";<br />
  // Grant CREATE and INSERT privilege for database<br />
  mysql_select_db('mysql');<br />
  $usql = "UPDATE db SET Insert_priv='Y', Create_priv='Y' WHERE Db='$quota_db';";<br />
  mysql_query($usql);<br />
  if ($debug)<br />
   echo "Querying: $usql\n";<br />
  mysql_select_db($mysql_db);<br />
 }<br />
}</p>
<p>?></code></p>
<p>&#8212;-</p>
<p>More details can be found at &#8211;<a href="http://projects.marsching.org/mysql_quota/"> http://projects.marsching.org/mysql_quota/</a></p>
<p>I am going to install this tool and see how it works for me <img src='http://www.thinksupport.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Thanks,<br />
Preeti S.<br />
<a href="http://ThinkSupport.net">ThinkSupport.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/mysql-quota-check-tool.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here is how to turn off safe_mode in php for 1 domain &#8212; Ensim Server</title>
		<link>http://www.thinksupport.net/blog/here-is-how-to-turn-off-safe_mode-in-php-for-1-domain-ensim-server.html</link>
		<comments>http://www.thinksupport.net/blog/here-is-how-to-turn-off-safe_mode-in-php-for-1-domain-ensim-server.html#comments</comments>
		<pubDate>Fri, 25 May 2007 14:31:32 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Ensim]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=203</guid>
		<description><![CDATA[Here is how to turn off safe_mode in php for 1 domain pico /etc/httpd/conf/siteXX/safemode where &#8216;siteXX&#8217; is the domain&#8217;s site number. &#8220;sitelookup -d domain.com&#8221; to get site number in that file type this line: php_admin_flag safe_mode off now restart apache Thanks]]></description>
			<content:encoded><![CDATA[<p>Here is how to turn off safe_mode in php for 1 domain</p>
<p>pico /etc/httpd/conf/siteXX/safemode</p>
<p>where &#8216;siteXX&#8217; is the domain&#8217;s site number.</p>
<p>&#8220;sitelookup -d domain.com&#8221; to get site number</p>
<p>in that file type this line:</p>
<p>php_admin_flag safe_mode off</p>
<p>now restart apache</p>
<p>Thanks </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/here-is-how-to-turn-off-safe_mode-in-php-for-1-domain-ensim-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastico De Luxe 2.10.2 r45 (LATEST and STABLE releases) has fixed Mysql Bug</title>
		<link>http://www.thinksupport.net/blog/fantastico-de-luxe-2102-r45-latest-and-stable-releases-has-fixed-mysql-bug.html</link>
		<comments>http://www.thinksupport.net/blog/fantastico-de-luxe-2102-r45-latest-and-stable-releases-has-fixed-mysql-bug.html#comments</comments>
		<pubDate>Fri, 25 May 2007 13:04:22 +0000</pubDate>
		<dc:creator>Sachin</dc:creator>
				<category><![CDATA[Articles -- Webhosting]]></category>
		<category><![CDATA[Fantastico / Installatron]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://thinksupport.net/blog/?p=202</guid>
		<description><![CDATA[If you were having issues connecting to mysql through fantastico (though you have mysql server up and running ) Fantastico has released patch for mysql bug &#8211; http://netenberg.com/forum/viewtopic.php?t=5786 Fantastico De Luxe 2.10.2 r45 (LATEST and STABLE releases) Changes/Fixes: - Fixed: MySQL Bug (http://netenberg.com/forum/viewtopic.php?t=5786) Cheers Sachin J. http://thinksupport.net]]></description>
			<content:encoded><![CDATA[<p>If you were having issues connecting to mysql through fantastico (though you have mysql server up and running ) </p>
<p>Fantastico has released patch for mysql bug &#8211; <a href="http://netenberg.com/forum/viewtopic.php?t=5786">http://netenberg.com/forum/viewtopic.php?t=5786</a><br />
Fantastico De Luxe 2.10.2 r45 (LATEST and STABLE releases) </p>
<p>Changes/Fixes:<br />
- Fixed: MySQL Bug (<a href="http://netenberg.com/forum/viewtopic.php?t=5786">http://netenberg.com/forum/viewtopic.php?t=5786</a>) </p>
<p>Cheers <img src='http://www.thinksupport.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Sachin J.<br />
<a href="http://ThinkSupport.net">http://thinksupport.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinksupport.net/blog/fantastico-de-luxe-2102-r45-latest-and-stable-releases-has-fixed-mysql-bug.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

