无法关闭 PHP safe_mode?

发布于 2024-11-15 12:36:34 字数 355 浏览 3 评论 0原文

我无法在 Drupal 7 中上传图像,因为我已将其移动到新服务器:php 安全模式已打开。所以在 php.ini 中我设置了 safe_mode = Off(通过 ssh,我有 CentOS)。

phpinfo() 显示 master 的 safe_mode 已关闭,但在本地。我确实有一个 Plesk 面板,因此我在那里进行了检查:为该域启用了 safe_mode。我禁用了它。

我的问题:根据phpinfo()safe_mode仍然在本地打开。您还知道哪些其他方法可以关闭安全模式?有什么问题吗?

提前致谢。

I can't upload images in Drupal 7 since I have moved it to a new server: php safe mode was on. So in php.ini I set safe_mode = Off (through ssh, I have CentOS).

phpinfo() shows that safe_mode is off for master, but on local. I do have a Plesk panel, so I checked there: safe_mode was enabled for the domain. I disabled it.

My problem: safe_mode is still turned on locally according to phpinfo(). What other ways do you know to turn off safe_mode? What can be wrong?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的心境我的脸 2024-11-22 12:36:34

您首先需要做的是编辑主 php.ini,它会覆盖域中的所有 php.ini。

转到

/etc/php.ini

安全模式并将其设置为关闭。

然后重新启动您的网络服务器。您现在可以使用某些域自己的 php.ini 设置 safe_mode。

希望这有帮助。

What you need to do first is to edit the main php.ini that overrides all php.ini in domains.

Go to

/etc/php.ini

and set safe_mode off.

Then restart your web server. You may now set safe_mode on to certain domains using their own php.ini.

Hope this helps.

小伙你站住 2024-11-22 12:36:34

检查您的 httpd.conf 和 vhost 文件...

php_admin_flag safe_mode on

该标志会覆盖 php.ini 文件中的设置。将其更改为...

php_admin_flag safe_mode off

...并重新启动apache。

编辑:
另请检查 /etc/httpd/conf.d/zz_psa_httpd.conf 中的该指令。

Check your httpd.conf and vhost files for...

php_admin_flag safe_mode on

This flag overrides the setting in your php.ini file. Change it to...

php_admin_flag safe_mode off

...and restart apache.

EDIT:
Also check the /etc/httpd/conf.d/zz_psa_httpd.conf for that directive.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文