我已经安装了 netbeans 7.3,php 5.4.7 和 xdebug via xampp 配置正确。
当我尝试在我的 index.html 文件上启动调试会话时,该文件包含我提交给我的 php 文件的表单,调试器永远不会连接(等待连接)。但是,如果我在它运行的 php 文件上启动调试器,但它当然没有索引页面上的表单中的值?
这是我的 php.ini 设置:
zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.1-5.4-vc9.dll"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
我错过了什么?