Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Latest commit

 

History

History
56 lines (37 loc) · 1000 Bytes

xdebug.rst

File metadata and controls

56 lines (37 loc) · 1000 Bytes

XDebug

Ver reference-linux-php-instalacion_php

Ubuntu

sudo apt-get install php5-xdebug

sudo vim /etc/php5/mods-available/xdebug.ini
zend_extension=/usr/lib/php5/20100525/xdebug.so
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.output_buffering=off

Fedora

dnf install php-pecl-xdebug -y

Centos PHP 5

yum install --enablerepo=remi,remi-php55 php-pecl-xdebug

Fedora y Centos PHP 5

vim /etc/php.d/xdebug.ini
; Enable xdebug extension module
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9090
xdebug.output_buffering=off