首頁  >  文章  >  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