Help me please

mambojambo

Member
Jan 27, 2012
40
0
when i go to my hotel it writes '' Warning: mysql_pconnect() [ ]: Access denied for user 'root'@'localhost' (using password: YES) in C:\xampp\htdocs\app\class.engine.php on line 48
MySQL Engine - RevCMS:
MySQL could not connect to host ''
 

1990

90s > Present
Jun 18, 2012
118
33
when i go to my hotel it writes '' Warning: mysql_pconnect() [ ]: Access denied for user 'root'@'localhost' (using password: YES) in C:\xampp\htdocs\app\class.engine.php on line 48
MySQL Engine - RevCMS:
MySQL could not connect to host ''

Mysql details are wrong.
 

1990

90s > Present
Jun 18, 2012
118
33
how can i fix it ?

app>management>config.


Code:
$_CONFIG['mysql']['connection_type'] = 'connect'; //Type of connection: It must be connect, or pconnect: if you want a persistent connection.
 
$_CONFIG['mysql']['hostname'] = 'localhost'; //MySQL host
 
$_CONFIG['mysql']['username'] = 'root'; //MySQL username
 
$_CONFIG['mysql']['password'] = 'PASSWORDHERE'; //MySQL password
 
$_CONFIG['mysql']['database'] = 'DATABASENAMEHERE'; //MySQL database
 
$_CONFIG['mysql']['port'] = '3306'; //MySQL's port


Same details you used in the PHPMYADMIN when you Installed your bloody XAMMP
 

Users who are viewing this thread

Top