Apr
7
2010
7
2010
Linux // Programming
Install xdebug profiler on Ubuntu 9.10 Karmic Koala
Install the following :
sudo apt-get install php5-dev sudo apt-get install php5-xdebug
Find where the xdebug.so file is :
martin@martin-dev:/$ find / -name 'xdebug.so' 2> /dev/null /usr/lib/php5/20060613/xdebug.so
Now edit the php.ini configuration file as follows :
sudo gedit /etc/php/apache2/php.ini
Add the following line at the end :
zend_extension="/usr/lib/php5/20060613/xdebug.so"
To enable profiling add :
xdebug.profiler_enable = 1
Now restart Apache
sudo /etc/init.d/apache2 restart
Popularity: 2% [?]
Tags: xdebug
Leave a comment
Subscribe
Recent Posts
- Compile wxwebconnect on Ubuntu 11.04 64 bit
- Disqus Comments Importer Script in PHP
- Beginners’ guide to socket programming with winsock
- Handle multiple socket connections with fd_set and select on Linux
- Beginners guide to socket programming in C on Linux
- Gui whois client in python with wxpython
- Whois client code in C with Linux sockets
- str_replace for C
- Easy to use C/C++ IDE for Ubuntu Linux
- Get local ip in C on linux
Binarytides
Tags
apache
applications
box2d
bsnl
c
chrome
cron
css
database
dns
firefox
flash
freelance
game programming
gd
graphs
hacking
htaccess
html
html5
imagemagick
java
javascript
libpcap
linux
mod rewrite
moneybookers
mootools
mvc
mysql
networking
payment
paypal
php
phpmyadmin
python
ruby
security
Sockets
software
swing
ubuntu
winpcap
winsock
xdebug
An article by Binary Tides




