php safe_mode_exec_dir 帮助
我希望找到有关此 PHP 设置的更多信息,我假设我需要更改 php.ini 中的值,但我将根文件夹设置为 /file/path/
或 >http://www.domain.com/file/path
?
任何建议都会很棒
I am hoping to find some more information about this PHP setting, I assume I need to change its value in the php.ini but I set the root the folder as /file/path/
or as http://www.domain.com/file/path
?
Any advice would be great
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
safe_mode_exec_dir
需要设置为文件系统路径。它还可以包含多个由分号分隔的路径。但请注意,安全模式已已弃用,并将在 PHP 6 中删除:
如果您需要在 PHP 环境中增加安全性,可以使用更好的方法,例如 强化 PHP 项目 Suhosin 补丁。
safe_mode_exec_dir
needs to be set to a filesystem path. It can also contain multiple paths separated by semicolon.However, note that safe mode is deprecated and will be removed in PHP 6:
if you need added security in your PHP environment, there are better approaches like the Hardened PHP project's Suhosin patch.