Code:
sudo apt-get install php5-dev php-pear
Now install xdebug thru PECL.
Code:
sudo pecl install xdebug
Now we need to find where xdebug.so went (the compiled module)
Code:
martin@martin-dev:/$ find / -name 'xdebug.so' 2> /dev/null
/usr/lib/php5/20060613/xdebug.so
Then edit php.ini:
Code:
sudo gedit /etc/php/apache2/php.ini
Add the following line:
Code:
zend_extension="/usr/lib/php5/20060613/xdebug.so"
Then restart apache for changes to take effect
Code:
sudo /etc/init.d/apache2 restart