diff --git a/scripts/sources/common b/scripts/sources/common
index b5376a5..418cde5 100644
--- a/scripts/sources/common
+++ b/scripts/sources/common
@@ -204,10 +204,8 @@ s_install_drupal_8() {
   mkdir "/home/$S_ID/www/sites/default/files"
   mkdir "/home/$S_ID/www/sites/default/files/tmp"
   mkdir "/home/$S_ID/www/sites/default/files/translations"
-  cp "/home/$S_ID/www/sites/default/default.settings.php" "/home/$S_ID/www/sites/default/settings.php" || s_ste 303
   chmod --recursive 555 "/home/$S_ID/www"
   chmod --recursive 777 "/home/$S_ID/www/sites/default/files"
-  chmod --recursive 777 "/home/$S_ID/www/sites/default/settings.php"
   chown --recursive $S_ID "/home/$S_ID/www"/* || s_ste 303
   chgrp --recursive nogroup "/home/$S_ID/www"/* || s_ste 303
   chown --recursive $S_ID "/home/$S_ID/www/.htaccess" || s_ste 303
diff --git a/scripts/sources/type-drupal-core b/scripts/sources/type-drupal-core
index 6ec06e5..d8b7456 100644
--- a/scripts/sources/type-drupal-core
+++ b/scripts/sources/type-drupal-core
@@ -18,6 +18,8 @@ s_project_download() {
   rm -rf "/home/$S_ID/www"
   # Now clone it.
   s_fetch_project "$S_PROJECT" "$S_GITURL" "/home/$S_ID/www"
+  # Create a sites/all directory for drush 6 with drupal 8.
+  mkdir "/home/$S_ID/www/sites/all"
 
   # Checkout specified version and remove .git.
   lg "Set version.."
diff --git a/scripts/sources/type-module b/scripts/sources/type-module
index f9f6aac..84a55e4 100644
--- a/scripts/sources/type-module
+++ b/scripts/sources/type-module
@@ -51,6 +51,8 @@ s_project_fetch_dependencies() {
   # We'll directly clone it into the www directory, so delete it for git.
   rm -rf "/home/$S_ID/www"
   timeout 350 drush dl --destination="/home/$S_ID" --drupal-project-rename="www" --default-major="$S_CORE" "drupal-$S_CORE"
+  # Create a sites/all directory for drush 6 with drupal 8.
+  mkdir "/home/$S_ID/www/sites/all"
 
   # Prepare the modules directory and copy it in.
   lg "Prepare the module project.."
diff --git a/scripts/sources/type-theme b/scripts/sources/type-theme
index a3bb7ab..c09090d 100644
--- a/scripts/sources/type-theme
+++ b/scripts/sources/type-theme
@@ -30,7 +30,7 @@ s_project_download() {
     S_PROJECT_FILE=$S_PROJECT
   fi
   lg "-> projectfile name: $S_PROJECT_FILE"
-  
+
   # Try to discover the main info file.
   S_INFO_FILE=$(s_discover_info_file "/home/$S_ID/$S_PROJECT")
   lg "-> discovered info file: $S_INFO_FILE"
@@ -49,6 +49,8 @@ s_project_fetch_dependencies() {
   # We'll directly clone it into the www directory, so delete it for git.
   rm -rf "/home/$S_ID/www"
   timeout 350 drush dl --destination="/home/$S_ID" --drupal-project-rename="www" "drupal-$S_CORE"
+  # Create a sites/all directory for drush 6 with drupal 8.
+  mkdir "/home/$S_ID/www/sites/all"
 
   # Prepare the themes directory and copy it in.
   lg "Prepare the theme project.."
