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 updat

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

2005-10-13 Thread skaufmann
t; Will > - Original Message - > From: Sascha Kaufmann > To: php-db@lists.php.net > Sent: Thursday, October 13, 2005 9:46 AM > Subject: Re: [PHP-DB] Re: MySQL Connect using Dreamweaver > > > You have to c

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

2005-10-13 Thread Sascha Kaufmann
x27;s, > > Will > - Original Message - > From: Sascha Kaufmann > To: php-db@lists.php.net > Sent: Thursday, October 13, 2005 9:46 AM > Subject: Re: [PHP-DB] Re: MySQL Connect using Dreamweaver > > >

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 w

[PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-12 Thread Blaz
Hi. You must use mysqli which is only supported in php5. Of corse if you will use MySQL5. regards W Roothman wrote: Dear All, I have installed MySQL 5 with PHP 4.3.3. When trying to connect to a database form the 'Database' tab in Dreamweaver, I now get the following error when trying to se