phpMyAdmin connection problem

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sweenyman
Forum Commoner
Posts: 29
Joined: Fri Feb 04, 2005 11:28 am
Location: Ireland

phpMyAdmin connection problem

Post by sweenyman »

Hi all
I have MySQL/PHP4/Apache running on my Windows machine. The problem is when I use a password for my database I get this error

Code: Select all

#1045 Access denied for user’ joe@localhost’    (USING PASSWORD: ’YES’)
No password-No problem. I've double-checked that all passwords are matching. I have a username in the mysql database with a password and I'm using these in the . conf file in phpMyAdmin. Any suggestions would be gratefully received.
Sean
User avatar
seodevhead
Forum Regular
Posts: 705
Joined: Sat Oct 08, 2005 8:18 pm
Location: Windermere, FL

Post by seodevhead »

looks like you got an extra space before your username...

' joe@localhost'
instead of
'joe@localhost'

perhaps you added extra space in your Definintion?>??

forgive me if I am wrong.
Post Reply