Last active
August 29, 2015 14:23
-
-
Save jansanchez/66e00962b193b0b4fdcd to your computer and use it in GitHub Desktop.
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
# (GitHub-Flavored) Markdown Editor | |
### Instalar PHP 5 | |
```bash | |
sudo apt-get install libapache2-mod-php5 | |
sudo a2enmod php5 | |
sudo /etc/init.d/apache2 restart | |
``` | |
### Instalar PHP 5 y MSQL | |
* [installing-apache2](http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-debian-wheezy) | |
```bash | |
sudo apt-get install mysql-server mysql-client | |
sudo apt-get install apache2 | |
sudo apt-get install php5-mysql | |
sudo apt-get install php5-curl #instalar CURL para PHP | |
sudo apt-get install php5-intl #libreria | |
sudo apt-get install php5-gd | |
``` | |
### Habilitar configuracion .htaccess | |
```bash | |
sudo a2enmod rewrite #RewriteEngine | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment