让MySQL搜索区分大小写或排序时分大小写方法如下: 1.在SQL中强制 SELECT `field` FROM `table` WHERE BINARY…
PHP Magento Mage_Core_Exception Invalid login or password
I am running a Magento Store and have created a seperate login outside of the root folder. I moved the store from Bluehost to Rackspace cloud and now I get this message when trying to login
Fatal error: Uncaught exception ‘Mage_Core_Exception’ with message ‘Invalid login or password.’ in myDomain/store/app/Mage.php:536 Stack trace: #0 myDomain/store/app/code/core/Mage/Customer/Model/Customer.php(121): Mage::exception(‘Mage_Core’, ‘Invalid login o…’, 2) #1 myDomain/store/app/code/core/Mage/Customer/Model/Session.php(182): Mage_Customer_Model_Customer->authenticate(‘user@myDomain….’, ‘password’) #2 myDomain/dashboard/setup_mage.php(16): Mage_Customer_Model_Session->login(‘user@myDomain….’, ‘password’) #3 myDomain/dashboard/all_includes.php(7): require_once(‘/home/myDomain/p…’) #4 myDomain/dashboard/dashboard.php(4): require_once(‘/home/myDomain/p…’) #5 {main} thrown in myDomain/store/app/Mage.php on line 536
解决方法:
try{ $session->login($email, $password); } catch(Exception $e) {}
源自: http://stackoverflow.com/a/12114334/602382
本文:PHP Magento Mage_Core_Exception Invalid login or password