Here is a mini-howto in how to install the xdebug extension with PHP5 in Ubuntu 7.04
This will install xdebug 2.0 (or whatever is latest version in PEAR repository when you try this).
It is assumed you have Apache2 + PHP5 working already.
Now install xdebug thru PECL.Code:sudo apt-get install php5-dev php-pear
Now we need to find where xdebug.so went (the compiled module)Code:sudo pecl install xdebug
Then edit php.ini:Code:martin@martin-dev:/$ find / -name 'xdebug.so' 2> /dev/null /usr/lib/php5/20060613/xdebug.so
Add the following line:Code:sudo gedit /etc/php/apache2/php.ini
Then restart apache for changes to take effectCode:zend_extension="/usr/lib/php5/20060613/xdebug.so"
Check phpinfo() to make sure the extension is loaded correctly. The following line should have been appended to the copyright lines:Code:sudo /etc/init.d/apache2 restart
with Xdebug v2.0.0, Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, by Derick Rethans
For more information about xdebug configuration and usage, please read the official documentation, found here: http://xdebug.org/docs/




Bookmarks