Xdebug
Manual Install The following Instructions based on http://xdebug.org/wizard.php help you to install it manually: Download the latest version (xdebug-x.x.x.tgz) from http://xdebug.org/download.php Unpack the downloaded file with:
1 |
$> tar -xvzf xdebug-x.x.x.tgz |
On shell run:
1 2 |
$> cd xdebug-2.2.3 $> phpize #(See the FAQ if you don't have phpize. |
Result should be:
1 2 3 4 |
Configuring for: ... Zend Module Api No: 20090626 Zend Extension Api No: 220090626 |
Please consider the number! If you got different results, look at http://xdebug.org/docs/install for help. Next shell commands:
1 2 3 4 |
$> ./configure $> make $> cp modules/xdebug.so /usr/lib/php5/20090626 $> nano /etc/php5/apache2/php.ini |
Change or […]