Programatically check customer email exist in magento (tested in v 1.5.1.0) Thanks to : http://svn.magentocommerce.com/source/branches/1.2/app/code/core/Mage/Checkout/Model/Type/Onepage.php
Posts Tagged ‘1.5.1.0’:
Programatically add customer in magento
Programatically add customer in magento tested in Magento 1.5.1.0 require_once ‘app/Mage.php’; umask(0); $websiteId = Mage::app()->getWebsite()->getId(); $store = Mage::app()->getStore(); $customer = Mage::getModel(“customer/customer”); $customer->website_id = $websiteId; $customer->setStore($store); $customer->firstname = “Branko”; $customer->lastname = “Ajzele”; $customer->email = “ajzele@someserver11.com”; $customer->password_hash = md5(“mycoolpass”); $customer->save();
Best Magento 1.5.1.0 Free Themes
http://www.magento-theme.com/free/ http://www.magento-theme.com/free/mebay-auction/ http://www.magento-theme.com/free/free-pop-music-movie/






