Mibew Messenger Community

General => Support => Topic started by: xonnk on February 21, 2010, 09:28:53 PM

Title: I have trouble with config.php
Post by: xonnk on February 21, 2010, 09:28:53 PM
Help me please

$mysqlhost = "localhost";
$mysqldb = "here i show my Database Name";
$mysqllogin = "here i show my user";
$mysqlpass = "and here my password";

when i go to install show me this

Correct the mistakes:

Could not connect, please check server settings in config.php. Error: Access denied for user 'user'@'ecthelion.crazyduck.gr' (using password: YES)

Or i am wrong tell me what to do please ?
Title: Re: I have trouble with config.php
Post by: Inspirer on February 22, 2010, 07:23:58 AM
Check database permissions for the user. Try to login with phpMyAdmin and check which databases are available.
Title: Re: I have trouble with config.php
Post by: kcor000 on April 17, 2010, 06:47:00 PM
If your database password has the dollar sign character ($) in it then mysql_connect will fail. You either have to change the password to exclude the '$' character or in the config.php file change the double quotes to single quotes for $mysqlpass and the other database variables for that matter.
Title: Re: I have trouble with config.php
Post by: HTMLCSSNoob on October 13, 2010, 02:36:00 PM
If your database password has the dollar sign character ($) in it then mysql_connect will fail. You either have to change the password to exclude the '$' character or in the config.php file change the double quotes to single quotes for $mysqlpass and the other database variables for that matter.

Thanks for the suggestion. That was my exact problem, so I took the $ out of the password and I was able to install.

Thanks  ;D