Magento: Fatal error: Call to a member function getModelInstance() on a non-object in app\Mage.php on line 432

后端 未结 5 813
感情败类
感情败类 2020-12-20 18:50

I want to call a PHP file using ajax where in that PHP i will place order by the ajax call. But it throws error while i am using app/Mage.php from that file

         


        
5条回答
  •  無奈伤痛
    2020-12-20 19:39

    I personally had solved it by using

    $customer = new Mage_Customer_Model_Customer();
    

    instead of using

    $customer = Mage::getModel('customer/customer');
    

提交回复
热议问题