Skip to content

Instantly share code, notes, and snippets.

@joelpittet
Last active December 23, 2015 02:39
Show Gist options
  • Save joelpittet/6568016 to your computer and use it in GitHub Desktop.
Save joelpittet/6568016 to your computer and use it in GitHub Desktop.
Fresh Reinstall Drupal 8
# 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