【发布时间】:2014-01-16 06:18:39
【问题描述】:
我正在使用
- Aptana 3.5.0
- Php5.4
- PDT(Php 开发工具)eclipse 插件
我也安装了 wamp,一切都设置正确
我的 php.ini
zend_extension = "c:/wamp/bin/php/php5.4.12/zend_ext/php_xdebug-2.2.3-5.4-vc9-x86_64.dll"
[xdebug]
xdebug.remote_enable=1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_mode = "req"
xdebug.remote_port=9001
xdebug.remote_autostart=off
xdebug.idekey = "ECLIPSE_DBGP"
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
我可以使用我的 Php Web 应用程序调试配置在 Firefox 中进行调试,但无法使断点工作,唯一的方法是在第一行停止,这对 Web 调试目的没有多大帮助
【问题讨论】:
标签: php aptana breakpoints xdebug remote-debugging