Diferencia entre revisiones de «Usuario:Lmorillas/desarrollo web servidor/php»
De WikiEducator
(Una revisión intermedia por el mismo usuario no mostrado) | |||
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/ | ||
+ | * http://www.forosdelweb.com/wiki/Manual_de_PHP | ||
* Un resumen sencillo: http://mundogeek.net/archivos/2009/11/26/tutorial-rapido-de-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 | * Cheatsheet http://www.emezeta.com/articulos/emezeta-card-php-cheat-sheet | ||
|Title=Documentación}} | |Title=Documentación}} | ||
+ | |||
+ | {{Tip| | ||
+ | Echa un vistazo a https://www.lazycat.org/phptips.html}} | ||
{{Usuario:Lmorillas/desarrollo_web_servidor/php/instalar}} | {{Usuario:Lmorillas/desarrollo_web_servidor/php/instalar}} |
Última revisión de 10:54 9 feb 2014
Tip:
Echa un vistazo a https://www.lazycat.org/phptips.html
$ 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/ |