View Single Post
  #15  
Old 05-17-2007, 03:22 PM
CrabClaw's Avatar
CrabClaw
Hill Giant
 
Join Date: Jun 2006
Location: Plane of Knowledge
Posts: 191
Default

Hmm, the first two things come to mind.

Quote:
<database>
<host>localhost</host>
<port>3306</port>
<username>username</username>
<password>password</password>
<db>peq</db>
</database>
Did you fill this part (the username and password) out correctly?

Also, what version of MySQL are you using? You might need to tweak the password with the instructions found here.

http://dev.mysql.com/doc/refman/5.0/en/old-client.html

SET PASSWORD FOR 'some_user'@'localhost' = OLD_PASSWORD('newpwd');

Remember to do a backup of your schema using the admin tool before touching anything so you have a fallback position.
Reply With Quote