>  기사  >  php教程  >  php的safe

php的safe

WBOY
WBOY원래의
2016-06-06 19:48:541404검색

http://hipop.co.cc/archives/23来自鞠润龙的个人主页 好吧,本博客的开篇作,就从wp的安装说起吧。 本博客安装完成之后,有一个大问题:无法上传文件 报如下错误: [code] Warning: copy() [function.copy]: SAFE MODE Restriction in effect. The script w

http://hipop.co.cc/archives/23 来自 鞠润龙的个人主页

好吧,本博客的开篇作,就从wp的安装说起吧。

本博客安装完成之后,有一个大问题:无法上传文件

报如下错误:

[code]<br>Warning: copy() [function.copy]: SAFE MODE Restriction in effect. The script whose uid is 697074 is not allowed to access /wp-content/uploads owned by uid 2001 in /wp-admin/includes/file.php on line 348<br><br>Warning: copy(/wp-content/uploads/spring.jpg) [function.copy]: failed to open stream: No such file or directory in/wp-admin/includes/file.php on line 348<br><br>Warning: Cannot modify header information - headers already sent by (output started at /wp-admin/includes/file.php:348) in /wp-includes/pluggable.php on line 866<br>[/code]

打眼一看,知道是权限问题和php安全模式在作祟。解决问题之前先认识问题,所以先让我们回忆回忆啥是“safe_mode”:

php的官方说明里如下解释:

The PHP safe mode is an attempt to solve the shared-server security problem. It is architecturally incorrect to try to solve this problem at the PHP level, but since the alternatives at the web server and OS levels aren't very realistic, many people, especially ISP's, use safe mode for now.

PHP的安全模式是为了试图解决共享服务器的安全问题,它(结构性错误地?)在php层上尝试解决这些问题,但因为在硬件或操作系统层上想解决这些问题不太好办,所以许多人,尤其是ISP,他们仍然在使用安全模式。

你看看,PHP自己都承认safe_mode ”incorrect“!更是在5.4.0以后的php版本中删除了这个模式 (在5.3.0会报告过时)

(ISP到底在担心什么,真的没有很好的解决方案吗,我们是否需要safe_mode?....未完待续)

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.