I'm trying to set up remote PHP debugging with Zend Debugger (I tried installing Xdebug, but it conflicts with ionCube Loader). I've followed the instructions for Linux. In particular, I've added the following lines to the end of /etc/php.ini
:
zend_extension=ZendDebugger.so
zend_debugger.allow_hosts=127.0.0.1,173.181.57.148
zend_debugger.expose_remotely=always
I don't have an absolute path to ZendDebugger.so
because it's in extension_dir (/usr/lib64/php/modules).
After restarting Apache, there isn't anything different in phpinfo()
. Also, I can't find any problems in the Apache error log (/var/log/httpd/error_log).
Is there anything that I missed?
Thanks, Shane.