Magento admin için kullanıcı oluşturma kodu

bu kodu example.php gibi bişeye oluşturabilirsiniz.

require_once('app/Mage.php'); //Path to Magento
umask(0);
Mage::app();

Mage::getModel('admin/user')
->loadByUsername('admin')
->setPassword("senin_şifren")
->save();

echo "Successfully Changed";
die;