您好,登錄后才能下訂單哦!
問題描述:
在本地使用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操作文件提示沒有權限怎么辦的詳細內容,更多請關注億速云其它相關文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。