Create test file in root directory and place code in to that file and run yoursiteurl.com/test.php
<?php
<?php
# Create New admin User programmatically.
require_once('./app/Mage.php');
umask(0);
Mage::app();
try {
$user = Mage::getModel('admin/user')->setData(array(
'username' => 'pawan',
'firstname' => 'pawan',
'lastname' => 'kumar',
'email' => 'n.pavan37@gmail.com',
'password' =>'pawan123',
'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";
?>
This comment has been removed by the author.
ReplyDeleteThank's pawan. This blog help me a lot
ReplyDelete