Mutley Posted June 10, 2007 Share Posted June 10, 2007 I redesigned a site, it had a members login area which I haven't touched ... but for some reason users can't login anymore (or never could). It says: Sorry, that login and password were not recognised. Please try again. The code where this message is generated: <?php function processArgs() { $a = array(); $a['action'] = ema_CleanArgs('action'); $a['param'] = ema_CleanArgs('param'); return $a; } ///////////////////////////////////////////////////////////////////////////// /** * Checks and processes valid logins. * * This function is responsible for administration security. */ function processLogin() { global $emag; if (array_key_exists('oUser', $_SESSION)) { //User is logged in. //TODO verify some user data for additional security. return TRUE; } switch ($emag['args']['action']) { case ACT_LOGIN: $userA = $emag['dbo']->getUserA(ema_CleanArgs('login'), ema_CleanArgs('pass')); if ($userA['user_username'] == NULL){ echo "Sorry, that login and password were not recognised. Please try again.<br/>"; } else { // Successful login. $_SESSION['oUser'] = new EMA_user($userA); $emag['dbo']->updateUserLoginTime($userA['user_id']); return TRUE; } break; ?> I can register and it inputs the data into the database fine and the SQL config file seems fine to, so what is causing this? Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/54980-cant-login-not-sure-why/ Share on other sites More sharing options...
Mutley Posted June 10, 2007 Author Share Posted June 10, 2007 ??? Quote Link to comment https://forums.phpfreaks.com/topic/54980-cant-login-not-sure-why/#findComment-271891 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.