如何使 xdebug 与 Zend Studio 一起工作
我有以下配置:
在远程计算机上:
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_dir=/tmp/xdebug
xdebug.remote_connect_back=1
xdebug.remote_port=9000
在本地计算机上:
- 我安装了 zend studio,并将 PHP 调试器设置为 XDebug 。
- 接受设置为“任意”的远程会话。
- 我使用远程连接(sftp)来处理代码。
- telnet localhost 9000 正在工作
我已经安装了简单的 XDebug firefox 插件。
现在,当我尝试运行远程脚本时,它没有提供任何调试信息。
我正在使用类似这样的 get 参数:XDEBUG_SESSION_START=test11
如果我遗漏了任何内容,请告诉我,或者告诉我如何调试我遗漏的内容。
I have following configurations:
On remote machine:
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_dir=/tmp/xdebug
xdebug.remote_connect_back=1
xdebug.remote_port=9000
On Local Machine:
- I have zend studio installed with PHP Debugger set to XDebug .
- Accept remote session set to Any.
- I used remote connection(sftp) to work on the code.
- telnet localhost 9000 is working
I have installed easy XDebug firefox plugin.
Now when I try to run a remote script it is not giving any debug info.
I am using a get parameter something like this: XDEBUG_SESSION_START=test11
Please let me know if I am missing anything or tips on how I can debug what I am missing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保您还有配置参数:
请参阅:http://www.xdebug.org/docs/remote< /a>
Make sure you also have the configuration parameter:
See: http://www.xdebug.org/docs/remote
不要费心将 Xdebug 与 Zend Studio 一起使用。 XDebug 没有收到来自 Zend Studio 团队的任何测试。您可能希望将 Eclipse indigo 与 PDT 结合使用,它支持 Zend 调试器和 XDebug。如果您想知道为什么 Zend 可以得出这样的结论,您可能需要阅读:
http://forums.zend.com/viewtopic.php?f=59&t=24113&p=108183#p108183
Don't bother use Xdebug with Zend Studio. XDebug does not receive any testing from the Zend Studio team. You might want to use Eclipse indigo with PDT which supports both the Zend debugger and XDebug. If you wonder why Zend can come to such a conclusion you might want to read:
http://forums.zend.com/viewtopic.php?f=59&t=24113&p=108183#p108183
您可能需要使用本页上的屏幕截图来检查使用 Zend Studio 或 Eclipse 配置 XDebug 的分步过程,http://vitalflux.com/configure-xdebug-debugger-for-zend-studio/
You may want to check step by step process for configuring XDebug with Zend Studio or Eclipse with screenshots on this page, http://vitalflux.com/configure-xdebug-debugger-for-zend-studio/