I've downloaded a php/mysql-webshop and it works like a charm on localhost.
Today I set up the exact same scripts and imported the identical database on a remote server, and now the admin login script refuses to accept the user/password.
Strange . . . since user/pass works locally on my laptop.
NOTE: I'm NOT talking about accessing the remote database, but simply logging in to the webshop's admin pages. The config file is updated with the correct host/user/password for the remote server. Also the encrypted passwords in my local database and that of the remote database are equal. Still I can't log on to the remote adminpages.
I do not get the typical error-message you'd normally get when a script attempts to log on to mysql with the wrong host/user/password. Instead I get an error message that seems to be generated by the webshop's login script.
It seems to me that the login-script successfully accesses the users-table of the database and fetches the encrypted password, but somehow finds that it is different from the password just typed in (even if they are not).
I run MySQL version: 3.23.49 locally, and version 5.0.51a on the remote server.
Could it be that these two mysql-versions treat the encrypted passwords differently?