Re: [PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-13 Thread Sascha Kaufmann
You have to change the password hash to the old 3.23.x format if you don't want or can't use mysqli. Open a mysql shell and type something like: use mysql; UPDATE user SET password = OLD_PASSWORD('yourpass') WHERE user = 'youruser' AND host = 'localhost'; On Thu, 2005-10-13 at 08:23 +0200, Blaz

Re: [PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-13 Thread Sascha Kaufmann
: Thursday, October 13, 2005 9:46 AM Subject: Re: [PHP-DB] Re: MySQL Connect using Dreamweaver You have to change the password hash to the old 3.23.x format if you don't want or can't use mysqli. Open a mysql shell and type something

Re: [PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-13 Thread skaufmann
, 2005 9:46 AM Subject: Re: [PHP-DB] Re: MySQL Connect using Dreamweaver You have to change the password hash to the old 3.23.x format if you don't want or can't use mysqli. Open a mysql shell and type something like

Re: [PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-13 Thread Shahmat Dahlan
Correct me if I'm wrong, but if I'm not mistaken Mysql 5 will not work in Dreamweaver. It will only work if you have 4.x (can't remember the exact version) Even if you have installed Mysql 4.x, u must make sure you add in old_password at the last line of the my.cnf If not, you can always