0

xampp実行中の に xdebug をインストールしようとしましたが、php 5.4.4何時間も費やした後でも、インストールできませんでした。

これがphp.iniの私の設定です

zend_extension = "Z:\xampp\php\ext\php_xdebug-2.2.1-5.4-vc9-x86_64.dll"
xdebug.remote_mode = "req"
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.profiler_enable=1
xdebug.profiler_output_dir="Z:\xampp\tmp"

誰でも間違いを見つけることができますか?

ありがとう

4

2 に答える 2

5

http://xdebug.org/wizard.phpにあるウィザードを参照してください。どの設定を正確に行い、どのバイナリをダウンロードするかがわかります。

于 2012-11-12T13:31:42.127 に答える
0

私は同じ問題を抱えていました.xamppでxdebugを実行できず、IDE netbeansを使用できませんでした. (TSである必要があります)-php.iniの行を次のように編集しました:

[XDebug]
zend_extension="c:\xampp\php\ext\php_xdebug.dll"
xdebug.remote_enable=1
xdebug.remote_host="127.0.0.1"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"

それだけでした。お役に立てば幸いです。乾杯

于 2013-05-10T15:56:32.110 に答える