問(wèn)題描述:
我們提供的服務(wù)有:成都做網(wǎng)站、網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、順昌ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的順昌網(wǎng)站制作公司
在本地使用PHP腳本操作文件可以成功,但是放到服務(wù)器上就不行。
查看apache日志:
#cd /var/log/httpd #tac error_log
顯示:
cannot create directory '_TEST1': Permission denied
解決方法:
1、查看apache配置的用戶(hù)和用戶(hù)組
#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、修改你要操作的文件夾用戶(hù)和權(quán)限,將用戶(hù)改為和apache配置一樣,將權(quán)限修改為755
#chown -R apache:apache your_folder #chmod -R 755 your_folder
3、關(guān)閉SELINUX
#vi /etc/selinux/config #SELINUX=enforcing #注釋掉 #SELINUXTYPE=targeted #注釋掉 SELINUX=disabled #增加 :wq! #保存退出 #setenforce 0 #使配置立即生效
以上就是php操作文件提示沒(méi)有權(quán)限怎么辦的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!