Magento create admin user programmatically
Here is custom script to create admin user programmatically.
# Create New admin User programmatically.
require_once('./app/Mage.php');
umask(0);
Mage: :app();
try {
$user = Mage: :getModel('admin/user')->setData(array(
'username' => 'admin',
'firstname' => 'Bhanderi',
'lastname' => 'Consulting',
'email' => 'hbhnderi@gmail.com',
'password' =>'admin123',
'is_active' => 1
))->save();
} catch (Exception $e) {
echo $e->getMessage();
exit;
}
//Assign Role Id
try {
$user->setRoleIds(array(1)) //Administrator role id is 1 ,Here you can assign other roles ids
->setRoleUserId($user->getUserId())
->saveRelations();
} catch (Exception $e) {
echo $e->getMessage();
exit;
}
echo "User created successfully";
Put the above content in a magento root folder in a file and then browse the file.
You are done with creating new admin user.
Kerry
Kerry Page
