View Single Post
  #3  
Old 01-26-2004, 08:25 AM
_OZZY_
Hill Giant
 
Join Date: Jan 2002
Location: Shreveport, Louisiana, USA
Posts: 129
Default

I keep getting this error:

Warning: mysql_pconnect(): Access denied for user: '0@localhost.localdomain' (Using password: YES) in /var/www/legends/config.inc.php on line 11
Query failed

I'm accessing the page using the following URL:
http://mysite/index.php?pp=16

This is the config.inc.php:
<?
/*
+ config.inc.php
- config file for EQEMu Legends
* khuong
*/
define("mySQL-host", "localhost"); // 99% of the time you won't have to change this
define("mySQL-user", "root"); // mysql username
define("mySQL-pass", "****"); // mysql password
define("database", "eq"); // database where tables are stored
mysql_pconnect(mySQL-host, mySQL-user, mySQL-pass);
mysql_select_db(database);
?>
Reply With Quote