本文介绍了如何在ubuntu?terr中关联/使用PDT与eclipse?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用PDT来调试PHP与eclipse。我使用ubuntu 9.04。
可以帮助我吗?请尽可能提供详细信息。

解决方案

考虑到和:



  xdebug.remote_autostart = On 
xdebug.remote_log =c:\temp\xdebug.log



然后您必须确保PDT期待端口9000上的 Xdebug 信息,
并保证您的本地默认PHP Web服务器是。



例如,您可能会发现您的php.ini文件格式不正确,这足以阻止您从PDT调试PHP。


I want to use PDT to debug PHP with eclipse. I am using ubuntu 9.04.Can any one help me? please give details if possible.

解决方案

Considering this thread and this one:

 xdebug.remote_autostart=On
 xdebug.remote_log="c:\temp\xdebug.log"

Then you have to insure that PDT is expecting Xdebug information on port 9000,and have insured that your local Default PHP Web Server is http://127.0.0.1.

With the log, you might discover, for instance, that your php.ini files is not properly formatted, which could be enough to prevent you debugging PHP from PDT.

这篇关于如何在ubuntu?terr中关联/使用PDT与eclipse?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 20:34