gpetruz / rth-turbo

Automatically exported from code.google.com/p/rth-turbo
0 stars 0 forks source link

Install RTHTurbo #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I have two problems:

1) System Warning :- mysql_connect() [function.mysql-connect]: Access
denied for user 'rth'@'localhost' (using password: YES)
File: C:\Arquivos de programas\Apache Software
Foundation\Apache2.2\htdocs\rth\adodb-4.65\drivers\adodb-mysql.inc.php
Line: 348
User Defined Error :- mysql error: [1045: Access denied for user
'rth'@'localhost' (using password: YES)] in CONNECT(localhost, '****',
'****', rth)
2) File: C:\Arquivos de programas\Apache Software
Foundation\Apache2.2\htdocs\rth\adodb-4.65\adodb-errorhandler.inc.php
Line: 77

Can help me?

Original issue reported on code.google.com by martins....@gmail.com on 23 Aug 2009 at 11:40

GoogleCodeExporter commented 8 years ago
seems like you have not created the user 'rth' in mysql.

Soln: login to mysql as root and execute the following commands,

mysql> create user 'rth'@'localhsot' identified by 'rth';
mysql> grant all privileges on *.* to 'rth'@'localhost'
    -> with grant option;
mysql> set password for 'rth'@'localhost' = password('rth');

you should be good to go...

Original comment by lokesh...@gmail.com on 23 Sep 2009 at 6:53

GoogleCodeExporter commented 8 years ago
Hi,
I am getting below error while trying to open login page, could you please help 
me in resolving this issue. 

Fatal error: Call to undefined function mysql_connect() in C:\Program 
Files\Apache Software 
Foundation\Apache2.2\htdocs\rth\adodb-4.65\drivers\adodb-mysql.inc.php on line 
347

Thanks in Advance!!!!

Original comment by debarshi...@gmail.com on 27 Jun 2014 at 2:26