Xdebug停止工作,我在哪里寻找错误?更新

2022-08-30 13:11:57

我安装了Xdebug,一切都很好,直到突然它停止工作。phpinfo() 给出了一个很好的 XDebug 输出,其中包含所有变量。

php -m | grep deb

还给出了两次XDebug(用于Zend和PHP),所以再次看起来很好。我的 php.ini 有以下几行:

zend_extension=/usr/lib/php5/20090626/xdebug.so
;extension=xdebug.so
xdebug.remote_host=localhost
xdebug.remote_enable=on
xdebug.remote_port=9001
xdebug.remote_handler=dbgp
xdebug.remote_connect_back=1

然而,当运行这个代码时,应该检查XDebug(来自Netbeans文档),它只是卡住了。因此,没有IDE正在与XDebug一起使用。

<?php
$address = '127.0.0.1';
$port = 9001;
$sock = socket_create(AF_INET, SOCK_STREAM, 0);
socket_bind($sock, $address, $port) or die('Unable to bind');
socket_listen($sock);
$client = socket_accept($sock);
echo "connection established: $client";
socket_close($client);
socket_close($sock);

另外,根据XDebug的安装,我完成了两次步骤。我的配置有什么问题?谢谢。


答案 1

最后,只剩下两个解决方案 - 重新安装Ubuntu操作系统或安装一个新的VM,特别是对于xdebug,我将选择第二个。有趣的是,一切都按照“RTM”(f=freaking)工作。我无法弄清楚的一件事是如何读取XDebug的日志,以便了解真正的问题所在。

更新

经过一番挣扎,我从我拥有的每个php.ini中删除了与xdebug相关的每一行。并将这些行移动到 /etc/php5/conf.d/xdebug.ini。重新启动Apache,然后是PHPStorm,它的工作原理。P.S.在中间,我试图用pecl,github和标准的Ubuntu版本安装xdebug。我认为我编译的那个目前正在工作。和。。日志也会更新。

;xdebug configuration
zend_extension = /usr/lib/php5/20090626/xdebug.so
xdebug.remote_host = 127.0.0.1
xdebug.remote_enable = 1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=1
xdebug.remote_autostart=1
xdebug.idekey=PHPSTORM
xdebug.remote_log="/tmp/xdebug.log"

答案 2

在您的服务器上,请尝试以下命令:

$ netstat -anp | grep CLOSE_WAIT

任何:9000条目都会给你XDebug带来麻烦;考虑。kill -9 <pid>


推荐