This topic is locked

Login failure after upload the site on remote live server

4/2/2014 12:26:58
PHPRunner General questions
A
Abul author

I have completed my portal site on my local machine with XAMPP. It works fine. My site has dynamic permission with encrypted password (database level as advised by manual).
Now I have uploaded all files created by phprunner to my remote live server and customized all necessary configuration with database. Problem is here when I try to login as user or even admin it's failed.
I tracked the error but I don't understand. The error is as:

select `TableName`,`AccessMask` from `portal_ugrights` where `GroupID` in (-3)

SELECT `portal_usersid`, `portal_users_date`, `portal_users_name`, cast(DES_DECRYPT(unhex(`portal_users_password`), 'encryptionkey') as char) as `portal_users_password`, `portal_users_fname`, `portal_users_lname`, `portal_users_email`, `portal_users_contactph`, `portal_users_affiliation`, `portal_users_title`, `portal_users_agreement` FROM `portal_users` WHERE ((portal_users_name='admin' and cast(DES_DECRYPT(unhex(portal_users_password), ' encryptionkey ') as char)='adminpw' )) ORDER BY `portal_users_fname`

insert into `portal_audit` (`datetime`,`ip`,`user`,`table`,`action`,`description`) values ('2014-04-02 11:27:29','69.174.58.204','admin','portal_users','failed login','')

insert into `portal_audit` (`datetime`,`ip`,`user`,`table`,`action`,`description`) values ('2014-04-02 11:27:29','69.174.58.204','admin','portal_users','failed login','')


I don't understand how the GroupID become -3 as it totally absent in the portal_ugrights table. Please help me out from this mess. Thanks in advance.