以下是我目前针对xDebug的PHP.ini设置(包括一些rem'd):
; XDEBUG Extension
;zend_extension = "c:/wamp/bin/php/php5.3.13/zend_ext/php_xdebug-2.2.0-5.3-vc9.dll"
zend_extension = c:\wamp\bin\php\php5.3.13\ext\php_xdebug-2.2.1-5.3-vc9.dll
[xdebug]
xdebug.default_enable = On ;added
xdebug.remote_enable = On ;Off
xdebug.remote_port = 9000 ;added
xdebug.remote_handler="dbgp" ;added
xdebug.remote_host="localhost" ;added
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On ;Off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.trace_output_dir = "c:/wamp/tmp" ;added
;xdebug.show_local_vars=On
;xdebug.dump.SERVER=HTTP_HOST, SERVER_NAME
;xdebug.dump_globals=On
;xdebug.collect_params=4
;xdebug.show_local_vars=1
是的,我知道Wamp中有两个单独的PHP.ini文件,但两者都做了改动。
我在xDebug网站上尝试了“自定义安装”说明,但这没有做任何事情。
phpinfo文件将其列为已安装。
我可以在Wamp工具的文件夹中找到xDebug客户端并将其打开,但xDebug菜单上的打开文件选项显示为灰色且不起作用。
我已经在SO网站上探索并尝试了各种解决方案,但仍然没有乐趣。
我甚至为WampServer和xDebug http://www3.ntu.edu.sg/home/ehchua/programming/howto/WampServer_HowTo.html找到了一个很好的分步安装网页,但我所做的就是下载另一个名为eclipse的非常大的程序,安装和配置,但仍然没有。这似乎是一个很好看的程序,但在完成配置后,它似乎也与wampserer无关。
xDebug和wampserver看起来似乎是非常常见的问题在这里问...所以任何想法实际上工作???
顺便说一下:有没有办法在这个问题和评论框中增加字体大小,所以我不必用放大镜看我输入的是什么?我知道它会在下面重复,但是看到你输入的内容,你输入的地方要容易得多......只是我的两分钱......感谢您的帮助,
...斯坦
答案 0 :(得分:0)
尝试执行这些步骤
现在下载向导提供的DLL文件并将其放在wamp / bin / php / php / ext文件夹中。
将以下代码粘贴到最后的php.ini文件中......
注意:在wamp / bin / apache / apache / bin / php.ini下使用php.ini
zend_extension="C:/Softwares/wamp/bin/php/php5.3.8/ext/php_xdebug-2.2.0-5.3-vc9.dll"
[xdebug]
xdebug.remote_enable=on
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
希望这对你有用。我在工作3到4天后得到了这些信息,以便在NetBeans上获得xDebug。 :)
答案 1 :(得分:0)
最后在PHP.ini文件中使用此代码。
[Xdebug的]
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
答案 2 :(得分:-1)
要使用xdebugclient
,您需要将XDEBUG_SESSION_START=session_name
作为参数添加到网址,其中session_name
是调试会话的名称。