我想用Apache24 httpd服务器
从eclipse调试我的php页面
我正在使用线程安全的PHP版本,并且还下载了线程安全的zend调试器。
我执行了以下步骤
- 将ZendDebugger.dll复制到C:\ Softwares \ php \ php-5.6.8-Win32-VC11-x64 \ ext
- 将dummy.php复制到我的Apache htdocs目录
- 为我的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 =始终
zend_debugger.httpd_uid = -1
- 重新启动服务器。
- 我在eclipse中为php调试器设置。
- 调试端口:10000,客户端主机/ IP:192.168.1.2/32,127.0.0.1/32,调试响应超时:50000
- 现在尝试从eclipse测试我的调试器,但是为了连接到上面的IP而获得超时异常。
- 我的phpinfo没有显示Zend调试器的任何条目。
我可能会遗漏一些非常简单的东西。