Xdebug 仅写入 /tmp

Xdebug 仅写入 /tmp

我在 Centos 6.2 上安装了 Xdebug。它cachgrind可以正常将文件写入 /tmp,但我希望它写入 /tmp/xdebug。

我已将其添加到我的 php.ini 中:

xdebug.profiler_output_dir = /tmp/xdebug

apache:apache并将文件夹的所有者更改chmode为 777。

但是,它没有写入任何文件。当我将其配置为:

xdebug.profiler_output_dir = /tmp

它确实会写入文件。如何修复?谢谢。

答案1

如果我没记错的话,CentOS 上用于 xdebug 输出的文件夹需要由“nobody”帐户拥有,而不是 apache。

相关内容