Jump to content

[SOLVED] calling mysql within php-4.4.4


bruceg

Recommended Posts

I need to use PHP-4.4.4 & MySQL. I can't seem to open MySQL from within the 4.4.4 environment althought it works just fine using 5.1.6.  When configuring PHP, I used the --with-mysql directive for both 4.4.4 and 5.1.6.  I have copied a very simple script below that fails and have the message from that shown below.  Any help would be appreciate.

[b]Script[/b]
#!/usr/bin/php --q
<?php

include('db_login.php');

$connection=mysql_connect($db_host, $db_username, $db_password);
if (!$connection){
die ("No connection: ".mysql_error());
}

?>

[b]Message[/b]
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in /var/lib/asterisk/agi-bin/my_test.agi on line 6

No connection: Client does not support authentication protocol requested by server; consider upgrading MySQL client
Link to comment
https://forums.phpfreaks.com/topic/32383-solved-calling-mysql-within-php-444/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.