Como Xdebug para NetBeans
De CidesaWiki
(Diferencias entre revisiones)
(6 ediciones intermedias no se muestran.) | |||
Línea 1: | Línea 1: | ||
- | + | * Desde la Consola | |
- | + | <pre> | |
+ | sudo apt-get install php5-xdebug | ||
+ | </pre> | ||
- | + | * Luego crear el archivo xdebug.ini | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | Luego crear el archivo xdebug.ini | + | |
+ | <pre> | ||
sudo nano /etc/php5/apache2/conf.d/xdebug.ini | sudo nano /etc/php5/apache2/conf.d/xdebug.ini | ||
+ | </pre> | ||
- | + | * Agregar las siguientes líneas al final del archivo de configuración | |
- | + | ||
- | + | ||
+ | <pre> | ||
xdebug.remote_enable=1 | xdebug.remote_enable=1 | ||
- | |||
xdebug.remote_handler=dbgp | xdebug.remote_handler=dbgp | ||
- | |||
xdebug.remote_mode=req | xdebug.remote_mode=req | ||
- | |||
xdebug.remote_host=127.0.0.1 | xdebug.remote_host=127.0.0.1 | ||
- | |||
xdebug.remote_port=9000 | xdebug.remote_port=9000 | ||
+ | </pre> | ||
- | Por último, reiniciar el apache | + | * Por último, reiniciar el apache |
+ | <pre> | ||
sudo /etc/init.d/apache2 restart | sudo /etc/init.d/apache2 restart | ||
+ | </pre> |
Última versión de 14:58 8 feb 2012
- Desde la Consola
sudo apt-get install php5-xdebug
- Luego crear el archivo xdebug.ini
sudo nano /etc/php5/apache2/conf.d/xdebug.ini
- Agregar las siguientes líneas al final del archivo de configuración
xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000
- Por último, reiniciar el apache
sudo /etc/init.d/apache2 restart