Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Warning: mysql_pconnect(): Client does not support authentication prot

Status
Not open for further replies.

tshey

Technical User
Dec 28, 2005
78
AU
I have this error message come up. I understand that it is the algorithm password, however I do not know what to change it too. I have a connections folder that states the connection between php and phpMysqlAdmin.
Code:
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_aaaa = "localhost";
$database_aaaa = "voi_aaaa";
$username_aaaa = "voi_franchi";
<b>$password_aaaa </b>= 'communications';
$aaaa = mysql_pconnect($hostname_aaaa, $username_aaaa, <b>$password_aaaa</b>) or trigger_error(mysql_error(),E_USER_ERROR); 
?>

What do I change the bold to??
 
read the mysql manual on using OLD PASSWORDS that will solve your problem.
 
I had the very same yesterday, simply put:

use mysql;

update user set password=old_password('your_password') where user='voi_franchi';

______________________________________________________________________
There's no present like the time, they say. - Henry's Cat.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top