Created
December 22, 2016 09:33
-
-
Save gbaudoin/d4d46a2db62030ad5ea236fb457906fb to your computer and use it in GitHub Desktop.
Drupal 7 base install
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
drush dl drupal | |
mv drupal-7.x <sitename> | |
drush si standard --db-url=mysql://dbusername:dbpassword@localhost:port/dbname --site-name="Your New Site" | |
drush upwd admin --password=”test” | |
drush dis dashboard overlay toolbar | |
drush dl drush_language | |
drush language-add fr | |
drush en statistics token ctools pathauto admin_menu wysiwyg transliteration i18n search_api facetapi views advanced_help entity l10n_update | |
cd sites/all/ | |
mkdir libraries | |
cd libraries | |
wget http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.6.6/ckeditor_3.6.6.zip | |
unzip ckeditor* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment