PDA

View Full Version : Centreon 2.0-rc5 wont login


Tali81
10-13-2008, 06:03 PM
When I login is redirected to

/index.php?disconnect=1

I thought my password might have been corrupted but i used a md5() command in php to put a new password in, and got the same effect.

What caused it to redirect to the disconnect=1?

David

xspoon
10-13-2008, 10:25 PM
Hello,

You could try resetting your password from inside mysql:

# mysql -u root (-p)
mysql > use centreon;
mysql > update contact set contact_passwd=md5("your_password") where contact_alias="your_login";

if you're not sure about your login, see what's in the contact table in the column contact_alias

mysql > use centreon;
mysql > select * from contact;


Regards