Como Xdebug para NetBeans
De CidesaWiki
(Diferencias entre revisiones)
Línea 1: | Línea 1: | ||
- | |||
* Desde la Consola | * Desde la Consola | ||
Línea 12: | Línea 11: | ||
</pre> | </pre> | ||
- | * | + | * Agregar las siguientes líneas al final del archivo de configuración |
<pre> | <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> | </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