Cookie与Session,一般认为是两个独立的东西,Session采用的是在服务器端保持状态的方案,而Cookie采用的是在客户端保持状态的方案。 Cookie分为两种,一种可以叫做session cookie,浏览器关闭就会丢失,一种可以叫做persistent cookie,就是我们通常意义上所说的cookie,通常服务器端的session是借助于seesion cookie来和客户端交互的。 针对php,如果客户端关闭cookie,我们怎么办? 1. 设置php.ini配置文件中的“session.use_trans_sid =…
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