Last active
December 23, 2015 02:39
-
-
Save joelpittet/6568016 to your computer and use it in GitHub Desktop.
Fresh Reinstall Drupal 8
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 characters
# From your Drupal 8 Root | |
cd sites/default | |
# Remove the files and re-create the directory with full permissions | |
sudo rm -fr files && sudo mkdir files && sudo chmod 777 files | |
# Remove settings and re-create it with full permissions. | |
sudo rm settings.php && sudo cp default.settings.php settings.php && sudo chmod 777 settings.php | |
# Install drupal with standard profile | |
drush si --db-url=mysql://root:root@localhost/d8 --account-name=admin --account-pass=password standard |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment