Last active
August 29, 2015 14:18
-
-
Save ghalusa/e9ddcb6f176150101512 to your computer and use it in GitHub Desktop.
Revisions
-
Goran Halusa revised this gist
Mar 31, 2015 . 2 changed files with 13 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ ## Create a New User ```bash drush ucrt "new_user" --mail="new_user@email_address.com" --password="new_password" ``` ## Add the Administrator Role to the New User (check the database to get the administrator ID) ```bash drush urol "administrator" 2 ``` This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +0,0 @@ -
Goran Halusa created this gist
Mar 31, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ Create a New User drush ucrt "new_user" --mail="new_user@email_address.com" --password="new_password" Add the Administrator Role to the New User (check the database to get the administrator ID) drush urol "administrator" 2