无法使用 PHP 风暴调试来访问 Drupal 模块


Can't Hit Drupal Module with PHP Storm Debugging

我试图用PHP Storm和xdebug从Drupal访问模块。 我可以点击索引.php文件,但不能点击这个模块。 有什么线索吗?

zend_extension = "c:/wamp/bin/php/php5.3.13/zend_ext/php_xdebug-2.2.0-5.3-vc9.dll"
[xdebug]
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp

当我尝试从调试/服务器部分验证远程环境时,出现"无法执行验证脚本"。

不知道发生了什么,但今天它开始工作了。 我相信我打开了错误的模块文件,该文件来自网站。 PHP Storm 添加了包含相同代码的外部库,但如果我更新一个库,它不会更新另一个文件。 所以我用断点更新了外部库文件并确认它正在工作。