Last active
December 22, 2015 19:39
-
-
Save GoZOo/6520890 to your computer and use it in GitHub Desktop.
Installation d'un serveur lamp basique pour drupal
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
| apt-get install apache2 php5 mysql-server phpmyadmin git-core vim curl php5-curl sendmail | |
| # active apache mods | |
| a2enmod rewrite headers expires | |
| # install pear | |
| wget http://pear.php.net/go-pear.phar | |
| php go-pear.phar | |
| # install drush | |
| pear channel-discover pear.drush.org | |
| pear install drush/drush | |
| pear upgrade --force Console_Getopt | |
| pear upgrade --force pear | |
| pear upgrade-all | |
| drush |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment