配置记事本++ PHP 的 DBGP 插件和 XDebug
我按照以下步骤操作:
- 将 x-debug*.dll 下载到 D:\Program Files\webserver\php\ext\php_xdebug.dll
修改 php.ini 并插入以下内容
zend_extension_ts="D:\Program Files\webserver\php\ext\php_xdebug.dll" xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.idekey=默认值 xdebug.remote_autostart=1
重新启动apache,XDebug安装成功。
DBGP 已成功安装并配置为 127.0.0.1
但 XDebugger 仍然无法连接/使用 notepad++。
I followed these steps:
- download x-debug*.dll to D:\Program Files\webserver\php\ext\php_xdebug.dll
modify php.ini and insert following
zend_extension_ts="D:\Program Files\webserver\php\ext\php_xdebug.dll" xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.idekey=default xdebug.remote_autostart=1
restart apache and XDebug is successfully installed.
DBGP is installed successfully and configured with 127.0.0.1
but XDebugger is still not connecting/working with notepad++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在这里找到了答案
确保您安装了最新版本的 Notepad++。
i found the answer here
Make sure you have latest version of Notepad++ is installed.
XDebug 现在有自己的向导。
http://xdebug.org/wizard.php
您所要做的就是复制并粘贴以下内容你的 phpinfo 输出到其中。它将为您提供正确的库以及需要添加到 php.ini 的详细信息。
不要忘记,您必须在 URL 后附加
?XDEBUG_SESSION_START=name
才能开始操作。XDebug now have their very own wizard.
http://xdebug.org/wizard.php
All you have to do is copy and paste the contents of your phpinfo output into it. It'll provide you with the correct library and the details that you need to add to your php.ini.
Dont forget that you have to append your URL with
?XDEBUG_SESSION_START=name
to kick things off.