bhutanesephper Posted January 26, 2014 Share Posted January 26, 2014 I have a log in page as http://www.bhutanfootprintstravel.com/webadmin/index.php, it was working fine until I change the hosting. Now, even when I enter the correct username & password, it doesn't return anything, I mean doesn't even take me to the desired page (index.php) or throughs any error msg. Its same even when I put wrong or invalid username and password. Can anyone please help me here? Regards Link to comment https://forums.phpfreaks.com/topic/285684-login-page-not-working/ Share on other sites More sharing options...
adam_bray Posted January 26, 2014 Share Posted January 26, 2014 Could be something to do with the session or cookies. Go through the code and put die('1'); to see how far you're getting before it messes up. Link to comment https://forums.phpfreaks.com/topic/285684-login-page-not-working/#findComment-1466593 Share on other sites More sharing options...
mac_gyver Posted January 26, 2014 Share Posted January 26, 2014 the symptom sounds like the code is dependent on register_globals, which have finally been removed in the latests php version (they were first turned off by default in the year 2002.) if this is the case, all the code using $_POST, $_GET, $_COOKIE, $_FILES, and $_SESSION variables will need to be rewritten. Link to comment https://forums.phpfreaks.com/topic/285684-login-page-not-working/#findComment-1466611 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.