問題描述:
在本機使用PHP腳本操作檔可以成功,但放到伺服器上就不行。
查看apache日誌:
#cd /var/log/httpd #tac error_log
顯示:
cannot create directory '_TEST1': Permission denied
解決方法:
1、查看apache配置的使用者和使用者群組
#vi /etc/httpd/conf/httpd.conf
# # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # User apache Group apache
可以看到User和Group 都是apache。
2、修改你要操作的資料夾使用者和權限,將使用者改為和apache配置一樣,將權限修改為755
#chown -R apache:apache your_folder #chmod -R 755 your_folder
3、關閉SELINUX
#vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 #setenforce 0 #使配置立即生效
更多相關教學請關注php中文網。
以上是php操作檔案提示沒有權限怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!