Last active
August 29, 2015 14:16
-
-
Save KamilBalwierz/2a35ca28e1db7a49bdcf to your computer and use it in GitHub Desktop.
Create admin user Magento
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCK TABLES `admin_role` WRITE , `admin_user` WRITE; | |
SET @PASSWORD = "password"; | |
SET @FIRSTNAME = "Firstname"; | |
SET @LASTNAME = "Lastname"; | |
SET @USERNAME = "myuser"; | |
SET @EMAIL = "[email protected]"; | |
SET @SALT = "rp"; | |
SET @PASS = CONCAT(MD5(CONCAT( @SALT , @PASSWORD) ), CONCAT(":", @SALT )); | |
SELECT @EXTRA := MAX(extra) FROM admin_user WHERE extra IS NOT NULL; | |
INSERT INTO `admin_user` (firstname,lastname,email,username,password,created,lognum,reload_acl_flag,is_active,extra,rp_token_created_at) | |
VALUES (@FIRSTNAME,@LASTNAME,@EMAIL,@USERNAME,@PASS,NOW(),0,0,1,@EXTRA,NOW()); | |
INSERT INTO `admin_role` (parent_id,tree_level,sort_order,role_type,user_id,role_name) | |
VALUES (1,2,0,'U',(SELECT user_id FROM admin_user WHERE username = @USERNAME),@FIRSTNAME); | |
UNLOCK TABLES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment