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
require_once '../../../../../../../../../../app/Mage.php';
$customer = Mage::getModel('customer/customer');
then it says
Fatal error: Call to a member function getModelInstance() on a non-object in app\Mage.php on line 432
Can anyone please help me???
You should initialize the Magento Framework first:
you need to initialize magento. the safest way to initialize it is by using initializer before your actual call to the model
Mage::init();
$customer = Mage::getModel('customer/customer');
I got the same error message. The solution was different. I forgot to give the permission on the magento folder to the Apache.
Your proposed solution is not optimal. You have not initialized Magento so module XML is not loaded yet and the factory pattern does not work.
Simply use either:
or
before using getModel.
I personally had solved it by using
instead of using