http://pecl.php.net/package/xdebug
http://xdebug.org/docs/install
http://devzone.zend.com/article/2803
http://xdebug.org/docs/install
http://devzone.zend.com/article/2803
pecl xdebug
PHP debug extensioninstall
# pecl install xdebug # vi /etc/php.ini add the lines zend_extension=/usr/lib/php/modules/xdebug.so xdebug.default_enable = On # service httpd reload
verify
check xdebug is listed in httpdphpinfo()
$ php -m
problems
if after installing xdebug you runpear list
PHP Warning: Xdebug MUST be loaded as a Zend extension in Unknown on line 0
you may need to set up separate php.ini files for HTTPD PHP and CLI PHP !
HTTPD PHP.INI
/etc/php.iniextension=xdebug.so xdebug.default_enable = On
CLI PHP.INI
/etc/php_cli.inizend_extension=/usr/lib/php/modules/xdebug.so xdebug.default_enable = On
REFERRERS
PhpPecl
There are no comments on this page. [Add comment]