xdebug install
Installing xdebug for PHP debugging on a CentOS box
Submitted by david on Thu, 02/19/2009 - 14:41
CentOS
Linux
xdebug
Here are the steps that worked for me to install eclipse with xdebug on a fresh CentOS box:
Make sure that phpize in on Centos: yum -y install php-devel
Make sure that pear is installed: yum install php-pear
Download the latest PDT 2.0 All In Ones: http://www.eclipse.org/pdt/downloads/
Get the latest xdebug and install:pecl install xdebug
Modify the php.ini:zend.ze1_compatibility_mode = Onzend_extension="/usr/lib/php/modules/xdebug.so"
Restart apache service
create a new .php test file:
Load the test page in a browser and look for the info on the Xdebug module. If you see it next to the Zend logo, it is successful
