<?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>InstaCarma Blog &#187; phpmyadmin</title>
	<atom:link href="http://instacarma.com/blog/tag/phpmyadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://instacarma.com/blog</link>
	<description>Information Resource for Web Hosting Technical Support and Server Management</description>
	<lastBuildDate>Sat, 04 Sep 2010 16:06:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MySQL:Got a packet bigger than &#8216;max_allowed_packet&#8217; bytes</title>
		<link>http://instacarma.com/blog/technical/mysqlgot-a-packet-bigger-than-max_allowed_packet-bytes/</link>
		<comments>http://instacarma.com/blog/technical/mysqlgot-a-packet-bigger-than-max_allowed_packet-bytes/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:53:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quick fixes]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=967</guid>
		<description><![CDATA[Issue : While trying to restore a database through phpmyadmin, following error occurs: #1153 &#8211; Got a packet bigger than &#8216;max_allowed_packet&#8217; bytes Solution : This error occurs if the packet size is more than the default value OR the value defined in the my.cnf file. my.cnf might be blank on a cPanel server by default. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Issue : </strong></p>
<p>While trying to restore a database through phpmyadmin, following error occurs:</p>
<p><em>#1153 &#8211; Got a packet bigger than &#8216;max_allowed_packet&#8217; bytes</em></p>
<p><strong>Solution : </strong></p>
<p>This error occurs if  the packet size is more than the default value OR the value defined in the <em>my.cnf</em> file.<br />
<em>my.cnf</em> might be blank on a cPanel server by default. You can simply add the variable to it or increase the value if it already exists.</p>
<p>For example,</p>
<blockquote><p>max_allowed_packet = 2097152</p></blockquote>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://instacarma.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://instacarma.com/blog/technical/mysqlgot-a-packet-bigger-than-max_allowed_packet-bytes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logging in to PHPMyAdmin directly</title>
		<link>http://instacarma.com/blog/technical/logging-in-to-phpmyadmin-directly/</link>
		<comments>http://instacarma.com/blog/technical/logging-in-to-phpmyadmin-directly/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 16:33:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quick fixes]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=742</guid>
		<description><![CDATA[Issue : How to login to PHPMyAdmin directly (without logging in to the cPanel interface) ? Solution : This can be achieved by the following steps : First, download and untar the latest version in to your public_html folder. wget http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/2.11.9.5/phpMyAdmin-2.11.9.5-english.tar.gz tar -zxvf phpMyAdmin-2.11.9.5-english.tar.gz cd phpMyAdmin-2.11.9.5-english mv phpMyAdmin-2.11.9.5-english phpMyAdmin Then, create a file named config.inc.php [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Issue : </strong></p>
<p>How to login to PHPMyAdmin directly (without logging in to the cPanel interface) ?</p>
<p><strong>Solution : </strong></p>
<p>This can be achieved by the following steps :</p>
<p>First, download and untar the latest version in to your public_html folder.</p>
<blockquote><p>wget http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/2.11.9.5/phpMyAdmin-2.11.9.5-english.tar.gz<br />
tar -zxvf phpMyAdmin-2.11.9.5-english.tar.gz<br />
cd phpMyAdmin-2.11.9.5-english<br />
mv phpMyAdmin-2.11.9.5-english phpMyAdmin</p></blockquote>
<p>Then, create a file named <em>config.inc.php</em> and put the following entries in it .</p>
<blockquote><p>vi config.inc.php<br />
&#8212;&#8212;&#8212;<br />
<?php</p>
<p>$i=0;<br />
$i++;<br />
$cfg['Servers'][$i]['user']          = 'example_test'; //database username<br />
$cfg['Servers'][$i]['password']      = 'qazplm123'; // use here your password<br />
$cfg['Servers'][$i]['auth_type']     = 'config';<br />
?><br />
&#8212;&#8212;&#8212;-</p></blockquote>
<p>Now, you would be able to access it as http://domainname.com/phpmyadmin</p>
<p>For more details on this , please refer <a href="http://www.aota.net/PHP_and_MySQL/phpmyadmin.php4">this.</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://instacarma.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://instacarma.com/blog/technical/logging-in-to-phpmyadmin-directly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Error #1153 &#8211; Got a packet bigger than &#8216;max_allowed_packet&#8217; bytes</title>
		<link>http://instacarma.com/blog/technical/error-1153-got-a-packet-bigger-than-max_allowed_packet-bytes/</link>
		<comments>http://instacarma.com/blog/technical/error-1153-got-a-packet-bigger-than-max_allowed_packet-bytes/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 20:33:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quick fixes]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=598</guid>
		<description><![CDATA[Issue : While trying to import a database via PhpMyAdmin , following error occurred : #1153 &#8211; Got a packet bigger than &#8216;max_allowed_packet&#8217; bytes Fix: Get into the file /etc/my.cnf Change the following to the required value : ================ max_allowed_packet = 16M ================ This should resolve the issue.]]></description>
			<content:encoded><![CDATA[<p><strong>Issue : </strong></p>
<p>While trying to import a database via PhpMyAdmin , following error occurred :</p>
<p><em>#1153 &#8211; Got a packet bigger than &#8216;max_allowed_packet&#8217; bytes </em></p>
<p><strong>Fix: </strong></p>
<p>Get into the file /etc/my.cnf<br />
Change the following to the required value :</p>
<p>================<br />
max_allowed_packet = 16M<br />
================</p>
<p>This should resolve the issue. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://instacarma.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://instacarma.com/blog/technical/error-1153-got-a-packet-bigger-than-max_allowed_packet-bytes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhpMyadmin errror &#8220;#2002</title>
		<link>http://instacarma.com/blog/technical/phpmyadmin-errror-2002/</link>
		<comments>http://instacarma.com/blog/technical/phpmyadmin-errror-2002/#comments</comments>
		<pubDate>Sat, 09 May 2009 17:23:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quick fixes]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://instacarma.com/blog/?p=176</guid>
		<description><![CDATA[Issue : The phpMyadmin errror &#8220;#2002 &#8211; The server is not responding (or the local MySQL server&#8217;s socket is not correctly configured)&#8221; Fix : 1.First check whether mysql is working in the server or not. 2. Check whether there is a symbolic link from mysql.sock to /tmp. If not, create a symlink between /var/lib/mysql/mysql.sock and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Issue : </strong></p>
<p>The phpMyadmin errror &#8220;#2002 &#8211; The server is not responding (or the local MySQL server&#8217;s socket is not correctly configured)&#8221;</p>
<p><strong>Fix : </strong></p>
<p>1.First check whether mysql is working in the server or not.</p>
<p>2. Check whether there is a symbolic link from mysql.sock to /tmp. If not, create a symlink between /var/lib/mysql/mysql.sock and /tmp/mysql.sock.<br />
~~~~~~~~~<br />
ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock<br />
~~~~~~~~~</p>
<p>3. If this doesn&#8217;t fix the issue check the file: /usr/local/cPanel/base/3rdparty/phpMyAdmin/config.inc.php and make sure the entries are like this:<br />
~~~~~~~~~~~~~~~~<br />
$cfg['Servers'][$i]['socket'] = &#8216;/var/lib/mysql/mysql.sock&#8217;;<br />
$cfg['Servers'][$i]['connect_type'] = &#8216;socket&#8217;;</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://instacarma.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://instacarma.com/blog/technical/phpmyadmin-errror-2002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
