Skip to content

Instantly share code, notes, and snippets.

@jansanchez
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jansanchez/66e00962b193b0b4fdcd to your computer and use it in GitHub Desktop.
Save jansanchez/66e00962b193b0b4fdcd to your computer and use it in GitHub Desktop.
# (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