Friday, May 30, 2014

TUTORIAL INSTALAR XDEBUG LINUX CENTOS 6.5



Intalar xdebug en un servidor centos 6.5 desde terminal.
URL manual http://www.webmaster.net/how-install-xdebug-centos-6x-whm-server-configure-phpstorm-and-forward-firewall-ports

COMO DESCARGAR XDEBUG EN INSTALARLO DESDE TERMINAL
wget http://xdebug.org/files/xdebug-2.2.3.tgz
tar -xzvf xdebug-2.2.3.tgz
cd xdebug-2.2.3
phpize
./configure
make
make install

CONFIGURAR PHP.INI
cd /usr/local/lib/
pico php.ini

CODIGO A COLOCAR EN PHP.INI
[XDebug]
zend_extension = /usr/local/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so
xdebug.default_enable = "On"
xdebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "xampptmp"
xdebug.profiler_output_name = "xdebug_profile.%p"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "177.224.205.191"
xdebug.remote_port = 9000
xdebug.trace_output_dir = "xampptmp"
xdebug.remote_connect_back = On


COMANDO EN TERMINAL PARA COFIRMAR QUE XDEBUG ESTE CARGADO APROPIADAMENTE
php -i | grep xdebug

MANUAL DE COMO CONFIGURAR XDEBUG CON NETBEANS
https://www.youtube.com/watch?v=9yzkxpxCmNM
SUERTE

Fuentes:
https://github.com/Varying-Vagrant-Vagrants/VVV/wiki/Using-Netbeans-with-XDebug

source

2 comments:

  1. i dont know Spanish but I applied by watching the video. =) Thanks for your labor.

    ReplyDelete