I want to debug my php pages from eclipse with Apache24 httpd server
I am using thread safe PHP version and have also downloaded thread safe zend debugger.
Following steps I have performed
- Copied ZendDebugger.dll to C:\Softwares\php\php-5.6.8-Win32-VC11-x64\ext
- Copied dummy.php to my Apache htdocs directory
- Added lines to my php.ini zend_extension_ts=C:/Softwares/php/php-5.6.8-Win32-VC11-x64/ext/ZendDebugger.dll zend_debugger.allow_hosts=192.168.1.2/32,127.0.0.1/32 zend_debugger.expose_remotely=always zend_debugger.httpd_uid=-1
- Restarted the server.
- My settings in eclipse for php debugger .
- Debug port : 10000 , Client Host/IP: 192.168.1.2/32,127.0.0.1/32, Debug response timeout : 50000
- Now trying to test my debugger from eclipse but getting timeout exception in order to connect to the above IPs.
- My phpinfo does not show any entry for Zend debugger.
I might be missing something very simple.