我为PhpStorm和xdebug配置了所有工作,我正在运行Ubuntu 14.04。
没有建立回IDE的连接,我在IDE事件Log
中得到了这个无法接受外部Xdebug连接:无法计算表达式'isset($ _ SERVER ['PHP_IDE_CONFIG'])' - Osama Salama 13分钟前
我将把我在不同地方配置的配置值放在一起。因为我无法找出问题所在
的php.ini
zend_extension = /usr/lib/php5/20121212/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_connect_back = 1
xdebug.remote_autostart = 1
xdebug.remote_log=xxx/xdebug.log
xdebug.IDE_key=PHPSTORM
PHP信息
Xdebug的
xdebug support enabled
Version 2.3.1
IDE Key PHPSTORM
Supported protocols Revision
DBGp - Common DeBuGger Protocol $Revision: 1.145 $
Directive Local Value Master Value
xdebug.auto_trace Off Off
xdebug.cli_color 0 0
xdebug.collect_assignments Off Off
xdebug.collect_includes On On
xdebug.collect_params 0 0
xdebug.collect_return Off Off
xdebug.collect_vars Off Off
xdebug.coverage_enable On On
xdebug.default_enable On On
xdebug.dump.COOKIE no value no value
xdebug.dump.ENV no value no value
xdebug.dump.FILES no value no value
xdebug.dump.GET no value no value
xdebug.dump.POST no value no value
xdebug.dump.REQUEST no value no value
xdebug.dump.SERVER no value no value
xdebug.dump.SESSION no value no value
xdebug.dump_globals On On
xdebug.dump_once On On
xdebug.dump_undefined Off Off
xdebug.extended_info On On
xdebug.file_link_format no value no value
xdebug.force_display_errors Off Off
xdebug.force_error_reporting 0 0
xdebug.halt_level 0 0
xdebug.idekey no value no value
xdebug.max_nesting_level 256 256
xdebug.max_stack_frames -1 -1
xdebug.overload_var_dump On On
xdebug.profiler_aggregate Off Off
xdebug.profiler_append Off Off
xdebug.profiler_enable Off Off
xdebug.profiler_enable_trigger Off Off
xdebug.profiler_enable_trigger_value no value no value
xdebug.profiler_output_dir /tmp /tmp
xdebug.profiler_output_name cachegrind.out.%p cachegrind.out.%p
xdebug.remote_autostart On On
xdebug.remote_connect_back On On
xdebug.remote_cookie_expire_time 3600 3600
xdebug.remote_enable On On
xdebug.remote_handler dbgp dbgp
xdebug.remote_host 127.0.0.1 127.0.0.1
xdebug.remote_log /home/nautilus/Desktop/xdebug.log /home/nautilus/Desktop/xdebug.log
xdebug.remote_mode req req
xdebug.remote_port 9000 9000
xdebug.scream Off Off
xdebug.show_exception_trace Off Off
xdebug.show_local_vars Off Off
xdebug.show_mem_delta Off Off
xdebug.trace_enable_trigger Off Off
xdebug.trace_enable_trigger_value no value no value
xdebug.trace_format 0 0
xdebug.trace_options 0 0
xdebug.trace_output_dir /tmp /tmp
xdebug.trace_output_name trace.%c trace.%c
xdebug.var_display_max_children 128 128
xdebug.var_display_max_data 512 512
xdebug.var_display_max_depth 3 3
我还验证了远程调试环境。这一切都很好。 https://www.jetbrains.com/phpstorm/help/validating-the-configuration-of-a-debugging-engine.html也很好。
最后一种可能的方法是xdebug日志文件:
Log opened at 2015-03-13 14:39:01
I: Checking remote connect back address.
W: Remote address not found, connecting to configured address/port: 127.0.0.1:9000. :-|
I: Connected to client. :-)
-> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="dbgp://stdin" language="PHP" protocol_version="1.0" appid="4474"><engine version="2.3.1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2015 by Derick Rethans]]></copyright></init>
<- feature_set -i 1 -n show_hidden -v 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="1" feature="show_hidden" success="1"></response>
<- feature_set -i 2 -n max_depth -v 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="2" feature="max_depth" success="1"></response>
<- feature_set -i 3 -n max_children -v 100
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="3" feature="max_children" success="1"></response>
<- status -i 4
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="status" transaction_id="4" status="starting" reason="ok"></response>
<- step_into -i 5
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="5" status="stopping" reason="ok"></response>
<- eval -i 6 -- aXNzZXQoJF9TRVJWRVJbJ1BIUF9JREVfQ09ORklHJ10p
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="eval" transaction_id="6"><error code="5"><message><![CDATA[command is not available]]></message></error></response>
Log closed at 2015-03-13 14:39:01
答案 0 :(得分:17)
我在PhpStorm中遇到与OP完全相同的错误。
This answer针对不同的问题解决了我的问题,但我想在自己的答案中添加更多细节。
主要问题是xdebug加载不当。其他答案中提到的服务器映射问题对我来说不是问题。
如果您加载phpinfo()
页面并找到xdebug部分,您会看到:
XDEBUG未加载为ZEND EXTENSION
然后你必须在尝试其他任何事情之前解决这个问题!但是,如果您有多个php.ini
文件,有时这可能需要一些工作来跟踪。
同样在您的phpinfo()
页面中,搜索&#34; php.ini&#34;,(它应该在顶部附近)并查看您的&#34;配置文件(php.ini)路径& #34;和你的#34;加载配置文件&#34;。那些是您的xdebug可能正在加载的地方。
在我的情况下,我在/usr/local/lib/php.ini的主配置文件中正确加载它作为Zend扩展,如下所示:
zend_extension = "/usr/local/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so"
但是在我的/home/someuser/public_html/php.ini中的Loaded配置文件中,我错误地加载了这样:
extension=xdebug.so
修好之后,我再次使用PhpStorm进行远程调试。
作为旁注,我在PhpStorm中看到的第一个错误与OP提到的完全相同,这就是它的样子:
Cannot accept external Xdebug connection
Cannot evaluate expression 'isset($_SERVER['PHP_IDE_CONFIG'])'
(起初我认为,因为扩展没有正确加载,PhpStorm无法在服务器上执行PHP代码。但是现在我认为如果你配置了一个解释器,PhpStorm只执行php代码,而不是调试需要。对于调试,PhpStorm只需要xdebug连接和正确的路径映射。)
后来,我发现&#34;命令不可用&#34;我的服务器上的xdebug日志中的错误,这使我得到了解决方案。
顺便说一句,这就是我在xdebug的本地php.ini
中所拥有的:
;extension=xdebug.so <- this is the bad line commented!
zend_extension = "/usr/local/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so"
xdebug.remote_enable=true
xdebug.remote_port="9000"
xdebug.profiler_enable=1
xdebug.profiler_output_dir="/tmp/xdebug-someuser/"
xdebug.profile_enable_trigger=1
xdebug.trace_enable_trigger=1
xdebug.idekey="PHPSTORM"
xdebug.remote_log="var/log/xdebug/xlog"
答案 1 :(得分:8)
我最近尝试使用PHPStorm
和nginx
下的php-fpm
进行调试时出现同样的问题,在我的情况下,这与xdebug
{{1}无关}}或nginx
,php-fpm config
中的路径映射缺失了。
最初phpstorm
会在无法将服务器上的文件映射到本地源文件时通知您,但是如果它有映射到第一个文件(通常为PHPStorm
或某些文件),但它无法映射稍后使用的文件(在我的情况下,这是使用composer的项目的vendor目录中的自动加载器),然后index.php
将无法进一步调试,调试将停止。
为了在PHPStorm
中纠正此问题,请转到PHPStorm
并确保项目的根目录正确映射到服务器上的对应目录。
settings/Languages & Frameworks/PHP/Servers
应该能够映射项目中的所有文件,并且应该继续调试。
我希望这会有所帮助。
答案 2 :(得分:1)
对于遇到此问题的其他人,还有另一种可能缺少的配置选项。
确保您已正确配置服务器,以便在本地和远程文件之间使用正确的路径映射。
例如,如果您的站点根目录在/home/foo/www/mysite
本地挂载但安装在/www/mysite
的服务器上,那么您需要在PHPStorm中编辑服务器配置以使用路径映射(只需输入{{ 1}}在/www/mysite
)旁边的框中。
答案 3 :(得分:1)
我也有这个问题并尝试了我能找到的每一个技巧,但没有任何效果。对我来说,调试大部分时间都在工作,但有时它只是停止处理消息: “无法接受外部Xdebug连接:无法计算表达式'isset($ _ SERVER ['PHP_IDE_CONFIG'])'”
所以我最终意识到我的代码中有一个编译错误(错误的方法名称 - PhpStorm并不总是报告这些事情,至少在我的设置中)。一旦我纠正错误调试再次开始工作。也许这可以帮助某些人挣扎。
虽然我仍然遇到没有被击中断点的问题,但我可以投入“xdebug_break();”代码中的行和调试变得更可靠。使用xdebug_break而不是断点的缺点是(除了它不仅仅是添加断点这一事实)由于某种原因(仅显示全局变量)而没有在PhpStorm调试器中显示的局部变量。这使得调试不太方便,但至少我可以使它工作。
显然你不能拥有一切:) 来自Java世界,良好的调试只是我能够理所当然的事情,但我现在已经意识到我已经被宠坏了:)
答案 4 :(得分:1)
将IntelliJ IDEA / PhpStorm can lead中名为« test.php »的文件调试为«无法评估表达式'isset($_SERVER['PHP_IDE_CONFIG'])
'»故障。
使用另一个文件名。
答案 5 :(得分:1)
如果您错过了在docker-compose.yml
中为工作区配置设置环境变量,也会出现同样的错误:
workspace:
build:
environment:
- PHP_IDE_CONFIG=${PHP_IDE_CONFIG}
答案 6 :(得分:0)
另一件事是确保您禁用任何防火墙以及哪些防火墙 可能阻止远程连接。