Heading
I am having an issue with setting XDebug to work with my php5; The core problem seems to be that XDebug cannot be shown in my phpinfo.
Env: Ubuntu 11.10 64 bit Apache Version Apache/2.2.22 (Unix) PHP/5.4.5
here is what i tried with xdebug.
xdebug installation: sudo apt-get install php5-xdebug then an xdebug.so is installed in the following location. /usr/lib/php5/20090626/xdebug.so
file /usr/lib/php5/20090626/xdebug.so
/usr/lib/php5/20090626/xdebug.so: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, not stripped
then i appended the following settings into the php.ini file being referenced by phpinfo in my apache.
[XDebug]
zend_extension=/usr/lib/php5/20090626/xdebug.so
; Remote settings
xdebug.remote_autostart = Off
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
xdebug.remote_host = localhost
xdebug.remote_port = 9000
BTW, i had restarted my apache server many times, but no luck, the xdebug was still not present in my php info.
please correct my steps if inappropriate and any advice and clues that can help resolve my issue would be greatly appreciated.
zend_extensionline went before[xdebug](which is also all lowercase) - Philapt-getshould have added a config file in/etc/php5/conf.d/xdebug.ini. - Phil