Author Topic: I have trouble with config.php  (Read 11927 times)

0 Members and 1 Guest are viewing this topic.

xonnk

  • Jr. Member
  • **
  • Posts: 1
I have trouble with config.php
« 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 ?

Inspirer

  • Mibew Project founder
  • Native
  • *****
  • Posts: 262
    • Mibew Messenger
Re: I have trouble with config.php
« Reply #1 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.

kcor000

  • Jr. Member
  • **
  • Posts: 1
Re: I have trouble with config.php
« Reply #2 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.

HTMLCSSNoob

  • Jr. Member
  • **
  • Posts: 2
Re: I have trouble with config.php
« Reply #3 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