无法关闭 PHP safe_mode?
我无法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您首先需要做的是编辑主 php.ini,它会覆盖域中的所有 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
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.
检查您的 httpd.conf 和 vhost 文件...
该标志会覆盖 php.ini 文件中的设置。将其更改为...
...并重新启动apache。
编辑:
另请检查 /etc/httpd/conf.d/zz_psa_httpd.conf 中的该指令。
Check your httpd.conf and vhost files for...
This flag overrides the setting in your php.ini file. Change it to...
...and restart apache.
EDIT:
Also check the /etc/httpd/conf.d/zz_psa_httpd.conf for that directive.