MySQL : Access denied after setup [message #7378] |
Wed, 20 November 2002 11:55 |
jeroen
Messages: 2 Registered: November 2002
Karma: 0
|
Junior Member |
|
|
I get the following error after creation with php safe mode:
quote:
Warning: Access denied for user: 'FUD@localhost' (Using password: YES) in /opt/guide/www.xxx.xx/HTML/FUD/forum/index.php on line 27
Warning: MySQL Connection Failed: Access denied for user: 'FUD@localhost' (Using password: YES) in /opt/guide/www.xxx.xx/HTML/FUD/ forum/index.php on line 27
Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in /opt/guide/www.xxx.xx/HTML/FUD/forum/index.php on line 28
Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in /opt/guide/www.xxx.xx/HTML/FUD/forum/index.php on line 28
Fatal error: SQL Error has occured, please contact the administrator of the forum and have them review the forum's SQL query log in /opt/guide/ www.xxx.xx/HTML/FUD/data/include/theme/default/err.inc on line 102
/quote
(I changed the domain name in the above message for privacy reasons.)
(I tested on another server, similarly configured but without php safe mode and a different MySQL environment and had no problems.)
The database "FUD" has been filled with data so I would say the user must be ok. Can it be caused by the setup of MySQL?
Thanks in advance,
Jeroen
[Updated on: Thu, 21 November 2002 08:14] Report message to a moderator
|
|
|
Re: MySQL : Access denied after setup [message #7381 is a reply to message #7378] |
Wed, 20 November 2002 16:14 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
Hi,
It's definetely problem with ur SQL configuration. SQL has rejected the connection because:
- The user exists but the password is wrong
- Neither user nor password are known to the system
- user and password exist, however this client was refused because of the access rules u set for SQL
So u can:
- Check the user and password u supplied at setup against existing accounts on the SQL Server
- Check the Access Control for the user specified whether he/she/it is allowed to connect to the server.
Should solve ur problem
Bye
Olliver
|
|
|
Re: MySQL : Access denied after setup [message #7382 is a reply to message #7378] |
Wed, 20 November 2002 16:16 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Warning: Access denied for user: 'FUD@localhost' (Using password: YES) in /opt/guide/www.xxx.xx/HTML/FUD/forum/index.php on line 27
this is the 'primary' error, it appears you are being refused access to MySQL db. Check inside GLOBALS.php if the password used is correct.
FUDforum Core Developer
|
|
|
|