phpStorm 4.0.3 を使用して php 5.4.4 をリモート デバッグしようとしていますが、失敗しました。奇妙なことに、ローカルの PHP コードを Phpstorm で正常にデバッグできます。
私は Xdebug v2.2.0 を使用しており、私の OS は Windows 8 です。これがデバッグできない主な理由だと思います。同じ構成を使用して、Windows Server 2003 でも実行できるからです。
これは私の設定ですphp.ini
:
[xdebug]
zend_extension="D:/apachePHP/PHP/ext/php_xdebug.dll"
xdebug.remote_enable = On
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
xdebug.remote_handler = "dbgp"
xdebug.auto_trace = 1
xdebug.collect_includes = 1
xdebug.collect_params = 1
xdebug.collect_return = 1
xdebug.default_enable = 1
xdebug.collect_assignments = 1
xdebug.collect_vars = 1
xdebug.remote_autostart = 1
xdebug.remote_connect_back = 1
xdebug.show_exception_trace = 1
xdebug.show_local_vars = 1