Quote:
|
Originally Posted by Fris
ya 5.0 uses a different password structure too, so you would either have to convert or use --old-passwords on startup
|
Yeah I forgot that is a bitch when using the DB with older scripts. You will bang your head 500 times trying to figure out why your password in the connection parameter isn't working eventhough it is spelled right. BTW the conversion string that you use in the MySQL console is
Code:
SET PASSWORD FOR 'dude'@'domain' = OLD_PASSWORD('thepass');
I just do this once on a per script basis.