PHP出現操作檔案沒有權限的解決方法:先查看apache配置的使用者和使用者群組;然後修改要操作的資料夾使用者和權限,權限修改為755;最後關閉SELINUX即可。
PHP出現操作檔案沒有權限的解決方案:
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需要關閉
关闭SELINUX:
#vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 #setenforce 0 #使配置立即生效
#相關學習推薦:PHP程式設計從入門到精通
以上是PHP出現操作檔案沒有權限怎麼辦?的詳細內容。更多資訊請關注PHP中文網其他相關文章!