<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Cloud and Dedicated Server Hosting Forum by bodHOST</title>
		<link>http://forums.bodhost.com/</link>
		<description>Web Server Hosting Forum by BODHost</description>
		<language>en</language>
		<lastBuildDate>Mon, 20 May 2013 16:11:20 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.bodhost.com/images/misc/rss.png</url>
			<title>Cloud and Dedicated Server Hosting Forum by bodHOST</title>
			<link>http://forums.bodhost.com/</link>
		</image>
		<item>
			<title>Special IP requirement</title>
			<link>http://forums.bodhost.com/showthread.php?7788-Special-IP-requirement&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 14:56:40 GMT</pubDate>
			<description>I am searching for a new VPS for VPN (virtual private network) but I have a special requirement for the IP address. I want the third octet of the IP...</description>
			<content:encoded><![CDATA[<div>I am searching for a new VPS for VPN (virtual private network) but I have a special requirement for the IP address. I want the third octet of the IP to be a be a multiple of 5 and the fourth octet as 0 for example x.x.5.0/x.x.225.0. I am ready to pay more if you meet the criteria. For e</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?11-Hosting-Pre-Sales-Forum">Hosting Pre-Sales Forum</category>
			<dc:creator>Jacoob</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7788-Special-IP-requirement</guid>
		</item>
		<item>
			<title>Open Source CMS For Flash Website</title>
			<link>http://forums.bodhost.com/showthread.php?7787-Open-Source-CMS-For-Flash-Website&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 23:38:05 GMT</pubDate>
			<description>Image: http://blog.bodhost.com/wp-content/uploads/2013/05/silex_coal_manager1.png  
 
Silex is an open source content management system and a rich...</description>
			<content:encoded><![CDATA[<div><img src="http://blog.bodhost.com/wp-content/uploads/2013/05/silex_coal_manager1.png" border="0" alt="" /><br />
<br />
Silex is an open source content management system and a rich Internet application which allows to build Flash websites.<br />
<br />
Silex allows to assemble all multimedia formats on the web  as well as on CD-R. Compatible with most of the adobe software versions and several other popular software which allows to publish different types of media online while allowing to enjoy a group of features necessary for web publishing such as automatic SEO, media description, multilingual websites, etc.<br />
<br />
This CMS is based on ActionScript so anyone who is familiar with the general principles of Photoshop, Illustrator, etc … will find Silex basic principles of publication pretty easy. Moreover, Silex is a rich Internet application.<br />
<br />
Next part of this software is specifically important: Once copied to a server, it is accessible from any computer which connected to the Internet. It requires no installation and is fully compatible with Mac 10.5, Windows XP, Vista, and Linux operating systems.<br />
<br />
<b>Features:</b><br />
<br />
<ul><li style="">Genuine integration into the Adobe pack</li><li style="">Reference system</li><li style="">Multilingual function</li><li style="">Easy to handle</li><li style="">Detailed documentation</li><li style="">Growing community important for designers  and developers</li><li style="">Components and themes</li><li style="">Lightweight</li><li style="">Open source (License : GPL)</li></ul></div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?15-Tutorials-and-Documentation">Tutorials and Documentation</category>
			<dc:creator>paullopez</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7787-Open-Source-CMS-For-Flash-Website</guid>
		</item>
		<item>
			<title>Hello Bodhost Community</title>
			<link>http://forums.bodhost.com/showthread.php?7786-Hello-Bodhost-Community&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 21:03:46 GMT</pubDate>
			<description>Hi to all the forum members of Bodhost forum community. I am new here and feeling nice to be the part of this great web hosting community. 
 
See you...</description>
			<content:encoded><![CDATA[<div>Hi to all the forum members of Bodhost forum community. I am new here and feeling nice to be the part of this great web hosting community.<br />
<br />
See you on the board.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?37-Introduction">Introduction</category>
			<dc:creator>MJason</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7786-Hello-Bodhost-Community</guid>
		</item>
		<item>
			<title>How to Connect to Your Database in PHP MySQL</title>
			<link>http://forums.bodhost.com/showthread.php?7785-How-to-Connect-to-Your-Database-in-PHP-MySQL&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 12:23:49 GMT</pubDate>
			<description>A proper connection with dabase is necessary in PHP MySQL, otherwise any queries or scripts will not be able to read or write the data in database. 
...</description>
			<content:encoded><![CDATA[<div>A proper connection with dabase is necessary in PHP MySQL, otherwise any queries or scripts will not be able to read or write the data in database.<br />
<br />
Setting database name, Username and password at starting of the script code is necessary to build a connection with database. Later on you can change any of these if you want.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			$username=&quot;your_username&quot;;<br />
$password=&quot;your_password&quot;;<br />
$database=&quot;your_database&quot;;
			
		<hr />
	</div>
</div>Replace &quot;your_username&quot;, &quot;your_password&quot; and &quot;your_database&quot; with your MySQL username, password and database name respectively, this will be used by your script.<br />
<br />
Now you can use following 'mysql_connect' PHP function to connect your PHP script with your database.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			mysql_connect(localhost,$username,$password);
			
		<hr />
	</div>
</div><br />
Above function instructs PHP to connect with MySQL database server at 'localhost' which normally runs on the same physical server on which you script runs.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?19-MySQL-Issues">MySQL Issues.</category>
			<dc:creator>Alexander</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7785-How-to-Connect-to-Your-Database-in-PHP-MySQL</guid>
		</item>
		<item>
			<title>How to create a database table in MySQL by running query</title>
			<link>http://forums.bodhost.com/showthread.php?7784-How-to-create-a-database-table-in-MySQL-by-running-query&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 19:04:58 GMT</pubDate>
			<description>One can run following formate of queries to create a table in MySQL database 
 
 
---Quote--- 
CREATE TABLE tablename ( 
 
Fields 
 
) 
---End...</description>
			<content:encoded><![CDATA[<div>One can run following formate of queries to create a table in MySQL database<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			CREATE TABLE tablename (<br />
<br />
Fields<br />
<br />
)
			
		<hr />
	</div>
</div><br />
Fields can be difined with followind format<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			fieldname type(length) extra info,
			
		<hr />
	</div>
</div><br />
Remember to use comma as separator among fields<br />
<br />
If one want to create a table of employee records with table name  as 'Employee' and let us assume the table will contain 4 fields as EmpCode, EmpName, EmpPost and EmpAge the following is the query which will create such table<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			CREATE TABLE Employee<br />
(<br />
<br />
EmpCode int,<br />
EmpName varchar(15),<br />
EmpPost varchar(10),<br />
EmpAge int<br />
);
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?15-Tutorials-and-Documentation">Tutorials and Documentation</category>
			<dc:creator>Alexander</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7784-How-to-create-a-database-table-in-MySQL-by-running-query</guid>
		</item>
		<item>
			<title>How to create a database table in PHPMyAdmin</title>
			<link>http://forums.bodhost.com/showthread.php?7783-How-to-create-a-database-table-in-PHPMyAdmin&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 18:48:40 GMT</pubDate>
			<description>Tables are the most important part of any database and creating a table in PHPMyAdmin is very easy. One can do it by just typing the name of table...</description>
			<content:encoded><![CDATA[<div>Tables are the most important part of any database and creating a table in PHPMyAdmin is very easy. One can do it by just typing the name of table and choosing the number of fields required in the table. Then click on the 'Go' button and you will be redirected to the setup screen. You can created the various fields required in the database here.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?15-Tutorials-and-Documentation">Tutorials and Documentation</category>
			<dc:creator>Alexander</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7783-How-to-create-a-database-table-in-PHPMyAdmin</guid>
		</item>
		<item>
			<title><![CDATA[Live Chat & ecommerce solutions?]]></title>
			<link>http://forums.bodhost.com/showthread.php?7782-Live-Chat-amp-ecommerce-solutions&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 22:18:16 GMT</pubDate>
			<description><![CDATA[Is it advisable to include online chat option in eCommerce website? I don't want people keep irritating team member by asking the order status and...]]></description>
			<content:encoded><![CDATA[<div>Is it advisable to include online chat option in eCommerce website? I don't want people keep irritating team member by asking the order status and all other stuff. I am confused, do suggest me if anything there to learn new regarding this.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?21-ECommerce-Forum">ECommerce Forum</category>
			<dc:creator>SandraJose</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7782-Live-Chat-amp-ecommerce-solutions</guid>
		</item>
		<item>
			<title><![CDATA[ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.so]]></title>
			<link>http://forums.bodhost.com/showthread.php?7781-ERROR-2002-(HY000)-Can-t-connect-to-local-MySQL-server-through-socket-tmp-mysql-so&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 21:56:38 GMT</pubDate>
			<description>This error occurs when you attempt to log in, it occurs because MySQL server daemon (Unix) or service (Windows) is not running. In such case either...</description>
			<content:encoded><![CDATA[<div>This error occurs when you attempt to log in, it occurs because MySQL server daemon (Unix) or service (Windows) is not running. In such case either you can consult the administrator or install and upgrade MySQL which supports to your operating system.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?19-MySQL-Issues">MySQL Issues.</category>
			<dc:creator>Alexander</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7781-ERROR-2002-(HY000)-Can-t-connect-to-local-MySQL-server-through-socket-tmp-mysql-so</guid>
		</item>
		<item>
			<title>InnoDB: (Bug #16206654) fixed in MySQL 5.6.11</title>
			<link>http://forums.bodhost.com/showthread.php?7780-InnoDB-(Bug-16206654)-fixed-in-MySQL-5-6-11&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 21:47:34 GMT</pubDate>
			<description>New version of MySQL (MySQL 5.6.11) has come up with many bugs fixed, out of them was the InnoDB But (Bug #16206654). By reading the cached...</description>
			<content:encoded><![CDATA[<div>New version of MySQL (MySQL 5.6.11) has come up with many bugs fixed, out of them was the InnoDB But (Bug #16206654). By reading the cached information of cache policy which is to be used for each table, switching MySQL table used by the InnoDB memcached interface has been made more efficient now. This improvisation makes it possible to switch number of time among various table while a session which uses memcached interface, is in use. This switching does not incur I/O overhead from examining table metadata every time.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?19-MySQL-Issues">MySQL Issues.</category>
			<dc:creator>Alexander</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7780-InnoDB-(Bug-16206654)-fixed-in-MySQL-5-6-11</guid>
		</item>
		<item>
			<title>Latest PHP Version</title>
			<link>http://forums.bodhost.com/showthread.php?7779-Latest-PHP-Version&amp;goto=newpost</link>
			<pubDate>Tue, 07 May 2013 20:39:28 GMT</pubDate>
			<description>This thread has been started with the motive of providing updates over latest versions of PHP and features it has, compared to previous versions. 
...</description>
			<content:encoded><![CDATA[<div>This thread has been started with the motive of providing updates over latest versions of PHP and features it has, compared to previous versions.<br />
<br />
Latest version of PHP is 'PHP 5.4.14' and following bugs were fixed with it.<br />
<br />
    Fixed bug #64529 (Ran out of opcode space).<br />
    Fixed bug #64515 (Memoryleak when using the same variablename two times in function declaration).<br />
    Fixed bug #64432 (more empty delimiter warning in strX methods).<br />
    Fixed bug #64417 (ArrayAccess::&amp;offsetGet() in a trait causes fatal error).<br />
    Fixed bug #64370 (microtime(true) less than $_SERVER['REQUEST_TIME_FLOAT']).<br />
    Fixed bug #64239 (Debug backtrace changed behavior since 5.4.10 or 5.4.11).<br />
    Fixed bug #63976 (Parent class incorrectly using child constant in class property).<br />
    Fixed bug #63914 (zend_do_fcall_common_helper_SPEC does not handle exceptions properly).<br />
    Fixed bug #62343 (Show class_alias In get_declared_classes()).<br />
<br />
<b>PCRE:</b><br />
<br />
    Merged PCRE 8.32.<br />
<br />
<b>SNMP:</b><br />
<br />
    Fixed bug #61981 (OO API, walk: $suffix_as_key is not working correctly). <br />
<br />
<b>Zip:</b><br />
<br />
    Fixed bug #64452 (Zip crash intermittently). (Anatol)</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?18-PHP-Forum">PHP Forum</category>
			<dc:creator>Alexander</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7779-Latest-PHP-Version</guid>
		</item>
		<item>
			<title>A PHP undefined index error notice</title>
			<link>http://forums.bodhost.com/showthread.php?7778-A-PHP-undefined-index-error-notice&amp;goto=newpost</link>
			<pubDate>Sat, 04 May 2013 00:44:11 GMT</pubDate>
			<description><![CDATA[If you use the $ _POST or $ _GET variables to retrieve your forms or others, you may come across this error: 
 
Notice: Undefined index 'table...]]></description>
			<content:encoded><![CDATA[<div>If you use the $ _POST or $ _GET variables to retrieve your forms or others, you may come across this error:<br />
<br />
Notice: Undefined index 'table fields' in 'path to php file during execution' on line 'current line'<br />
<br />
To avoid this error just test if the table fields have been initialized with the isset () function. For Example  $ _POST ['value']<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			/ / Before using $ _POST ['value'] <br />
if (isset ($ _POST ['value']))<br />
{<br />
          / / Statements if $ _POST ['value'] is<br />
}
			
		<hr />
	</div>
</div>This type of error is reported depending on the server configuration. It is not reported by default because it is the least important type of error, corresponding to the constant E_NOTICE. You can change the types of errors reported with the function error_reporting.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?18-PHP-Forum">PHP Forum</category>
			<dc:creator>Judd</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7778-A-PHP-undefined-index-error-notice</guid>
		</item>
		<item>
			<title>Link decoration in CSS / HTML</title>
			<link>http://forums.bodhost.com/showthread.php?7777-Link-decoration-in-CSS-HTML&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 23:35:14 GMT</pubDate>
			<description>*How to get rid of the underline below the links in CSS / HTML?* 
 
By default, hyperlinks in HTML are underlined. However, it is possible to...</description>
			<content:encoded><![CDATA[<div><b>How to get rid of the underline below the links in CSS / HTML?</b><br />
<br />
By default, hyperlinks in HTML are underlined. However, it is possible to eliminate the underline using CSS text-decoration:none:<br />
<br />
<b>With CSS</b><br />
<br />
Simply set the following code in your CSS code: <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;style type=&quot;text/css&quot;&gt; <br />
a.nounderline:link<br />
{ <br />
 text-decoration: none; <br />
} <br />
&lt;/ Style&gt;
			
		<hr />
	</div>
</div>Note that the pseudo-class: link can target only hyperlinks (&lt;a href=&quot;&quot;&gt;) rather anchors (&lt;a name=&quot;&quot;&gt;). <br />
<br />
<b>Thanks to a class via CSS</b><br />
<br />
If you want this style applied only to certain links, just for example to define a specific class for non-highlighted links:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;style type=&quot;text/css&quot;&gt; <br />
a.nounderline: link <br />
{ <br />
 text-decoration: none; <br />
} <br />
&lt;/ Style&gt;
			
		<hr />
	</div>
</div>Then, while writing the link to refer to this class: <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;a href=&quot;/&quot; class=&quot;nounderline&quot;&gt; link text &lt;/ a&gt;
			
		<hr />
	</div>
</div><b>With inline CSS</b><br />
<br />
Finally, if you do not want to set a style sheet, you can simply set the line style using the style attribute, as follows: <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;a href=&quot;/&quot; style=&quot;text-decoration:none&quot;&gt; link text &lt;/ a&gt;
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?15-Tutorials-and-Documentation">Tutorials and Documentation</category>
			<dc:creator>Nicholas Easter</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7777-Link-decoration-in-CSS-HTML</guid>
		</item>
		<item>
			<title><![CDATA[PHP Parse error, unexpected T_STRING, expecting ',' or ';']]></title>
			<link>http://forums.bodhost.com/showthread.php?7776-PHP-Parse-error-unexpected-T_STRING-expecting-or&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 17:58:31 GMT</pubDate>
			<description><![CDATA[This error occurs when a specific quote is found in a string enclosed by the same type of quotation marks. 
 
For Example: 
 
 
---Quote--- 
<? 
echo...]]></description>
			<content:encoded><![CDATA[<div>This error occurs when a specific quote is found in a string enclosed by the same type of quotation marks.<br />
<br />
For Example:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;?<br />
echo ' I don’t like oranges ‘;<br />
&gt;
			
		<hr />
	</div>
</div>In this condition the PHP interpreter does not know where the string starts and ends. This solution is to break out the problematic quotes by prefixing them with a backslash (\):<br />
<br />
For Example:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;?<br />
echo ' I don\t like oranges’;<br />
&gt;
			
		<hr />
	</div>
</div>Same for double quotes<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			&lt;?<br />
echo “Robin said  \ “ Hi  \ “!”;<br />
&gt;
			
		<hr />
	</div>
</div>The “PHP Parse Error” also occurs due to the omission of a semicolon ( ; ) at the end of the command.</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?18-PHP-Forum">PHP Forum</category>
			<dc:creator>Robin</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7776-PHP-Parse-error-unexpected-T_STRING-expecting-or</guid>
		</item>
		<item>
			<title>VMware Guest Additions Installation On Ubuntu</title>
			<link>http://forums.bodhost.com/showthread.php?7775-VMware-Guest-Additions-Installation-On-Ubuntu&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 14:56:20 GMT</pubDate>
			<description>If you wish to run Ubuntu in VMware, then follow the below simple installation command:  
 
 
---Quote--- 
sudo apt-get install open-vm-tools...</description>
			<content:encoded><![CDATA[<div>If you wish to run Ubuntu in VMware, then follow the below simple installation command: <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			sudo apt-get install open-vm-tools open-vm-dkms
			
		<hr />
	</div>
</div>And that's it! Then you can mount the shared directories in single user mode. For Example: <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			vmware-hgfsmounter. shared host :/ shared / home / foo / myshare
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?15-Tutorials-and-Documentation">Tutorials and Documentation</category>
			<dc:creator>Arthur</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7775-VMware-Guest-Additions-Installation-On-Ubuntu</guid>
		</item>
		<item>
			<title><![CDATA[phpMyAdmin - Access denied for user root '@ localhost]]></title>
			<link>http://forums.bodhost.com/showthread.php?7774-phpMyAdmin-Access-denied-for-user-root-localhost&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 18:54:14 GMT</pubDate>
			<description>This tutorial is for those who have an open phpmyadmin ( problem with wamp server or easyphp ) with the following error: 
 
 
---Quote--- 
phpMyAdmin...</description>
			<content:encoded><![CDATA[<div>This tutorial is for those who have an open phpmyadmin ( problem with wamp server or easyphp ) with the following error:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			phpMyAdmin - Access denied for user root '@ localhost
			
		<hr />
	</div>
</div><b>It is necessary to do some manipulations after installation:</b><br />
<br />
• Open the mysql console<br />
• At the mysql command prompt, it is useful to start assigning the new password using following command:<br />
• SET PASSWORD FOR root @ localhost = PASSWORD (‘yourpassword’);<br />
• There is no need to reassign the super user by using the following command:<br />
• Mysql&gt; GRANT ALL PRIVILEGES ON *. * TO root @ localhost IDENTIFIED BY ‘yourpassword’ WITH GRANT OPTION;<br />
• Certainly you have to insert the name of the host and user account with the default password set up in the ‘php.ini’ to the next level:<br />
<br />
<b>Following commands do not apply in safe mode:</b><br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Default host for mysql_connect ()<br />
mysqli.default_host = 'localhost'
			
		<hr />
	</div>
</div><div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Default user for mysql_connect () <br />
mysqli.default_user = 'root'
			
		<hr />
	</div>
</div><div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			The default password for mysqli_connect () (Note: Generally this is not a good idea to store passwords in this file because any user with PHP access can run 'echo get_cfg_var (&quot;mysqli.default_pw&quot;) and reveal the password. Even the users who have the read access to the file will also be able to reveal the password as well (mysqli.default_pw = 'yourpassword').
			
		<hr />
	</div>
</div>It only remains to make the implementation of host names and user accounts with the default password in the file 'config. inc. php'. Check the following command lines:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			$ Cfg ['Servers'] [$ i] ['host'] = 'localhost';<br />
<br />
$ Cfg ['Servers'] [$ i] ['user'] = 'root';<br />
<br />
$ Cfg ['Servers'] [$ i] ['password'] = ‘yourpassword';
			
		<hr />
	</div>
</div>After failing to properly open the localhost page, you will be pleasantly surprised to be able to connect without PhpMyAdmin error # 1045 - Access denied for user 'root' @ localhost ', hopefully helpful!</div>

]]></content:encoded>
			<category domain="http://forums.bodhost.com/forumdisplay.php?15-Tutorials-and-Documentation">Tutorials and Documentation</category>
			<dc:creator>dWight</dc:creator>
			<guid isPermaLink="true">http://forums.bodhost.com/showthread.php?7774-phpMyAdmin-Access-denied-for-user-root-localhost</guid>
		</item>
	</channel>
</rss>
