搜索

首页  >  问答  >  正文

PHP:Xdebug 访问被拒绝,但退出时代码为 0

我已经在 Mac 上使用 XAMPP 设置了 PHP 项目,并在那里安装了 Xdebug,但在我的 PhpStorm 上我得到:

我在网上找不到任何东西。

我的 php.ini

[xdebug]
;zend_extension=xdebug.so
zend_extension=/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20190902/xdebug.so
xdebug.remote_enable=1
xdebug.remote_connect_back=0
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9002
xdebug.remote_log="/mnt/log/xdebug.log"
xdebug.remote_autostart=1
xdebug.idekey=phpstorm
xdebug.remote_mode = req

P粉648469285P粉648469285238 天前349

全部回复(1)我来回复

  • P粉824889650

    P粉8248896502024-03-30 15:47:57

    我可能会迟到,但请确保 XDebug 具有对该文件夹的写入权限,更不用说如果您使用的是 Docker。

    如果是本地的,那么只是出于调查目的尝试:

    chmod 777 /mnt/log/xdebug.log

    但是,我宁愿选择指定一个文件夹来记录文件。

    如果它在 Docker 中运行,则“chmod”实际安装的文件夹。

    回复
    0
  • 取消回复