Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/php»
De WikiEducator
Línea 4: | Línea 4: | ||
* http://www.php.net/manual/es/ | * http://www.php.net/manual/es/ | ||
* http://www.mclibre.org/consultar/php/ | * http://www.mclibre.org/consultar/php/ | ||
+ | * Un resumen sencillo: http://mundogeek.net/archivos/2009/11/26/tutorial-rapido-de-php/ | ||
+ | * Cheatsheet http://www.emezeta.com/articulos/emezeta-card-php-cheat-sheet | ||
|Title=Documentación}} | |Title=Documentación}} | ||
{{Usuario:Lmorillas/desarrollo_web_servidor/php/instalar}} | {{Usuario:Lmorillas/desarrollo_web_servidor/php/instalar}} |
Revisión de 08:30 10 ene 2014
$ sudo apt-get install apache2 $ sudo apt-get install php5 libapache2-mod-php5 Para tener acceso a mysql $ sudo apt-get install mysql-server php5-mysql phpmyadmin Reiniciar apache $ sudo service apache2 reload |
Para ver los errores, puedes mirar el log de apache $ tail -f /var/log/apache2/error.log
|
Tip: Si hay que reinstalar apache y volver a generar la configuración:
sudo apt-get -o Dpkg::Options::="--force-confmiss" install --reinstall apache2.2-common
sudo add-apt-repository ppa:ondrej/php5 sudo apt-get update sudo apt-get install php5 php5 -v sudo service apache2 restart o http://www.dotdeb.org/ |