Como Xdebug para NetBeans
De CidesaWiki
(Diferencias entre revisiones)
Línea 4: | Línea 4: | ||
<pre> | <pre> | ||
- | sudo apt-get install php5- | + | sudo apt-get install php5-xdebug |
</pre> | </pre> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
* Buscar la dirección donde se instalo el xdebug.so, Installing shared extensions: '''/usr/lib/php5/20090626+lfs/''' | * Buscar la dirección donde se instalo el xdebug.so, Installing shared extensions: '''/usr/lib/php5/20090626+lfs/''' |
Revisión de 18:14 23 ene 2012
Lo primero, que hay que hacer es instalar php5-dev
- Desde la Consola
sudo apt-get install php5-xdebug
- Buscar la dirección donde se instalo el xdebug.so, Installing shared extensions: /usr/lib/php5/20090626+lfs/
- Luego crear el archivo xdebug.ini
sudo nano /etc/php5/apache2/conf.d/xdebug.ini
- Copiar lo siguiente y reemplazar donde dice /path/to por la dirección anteriormente buscada /usr/lib/php5/20090626+lfs/
zend_extension=/path/to/xdebug.so 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