Home  >  Article  >  Backend Development  >  What is the reason why linux php fopen fails?

What is the reason why linux php fopen fails?

藏色散人
藏色散人Original
2021-06-17 09:14:353713browse

linux php fopen failed because the permissions were set. The solution is to execute the command "setenforce 0" to temporarily close "selinux".

What is the reason why linux php fopen fails?

The operating environment of this article: centOS6.8 system, PHP7.1 version, DELL G3 computer

linux php fopen failed because What?

The problem of fopen fwrite failing to read and write php files under centos

When debugging the WeChat interface, I found that writing php files kept failing, and writing to access_token.php kept failing. I checked. The permissions are all set. I initially suspected that selinux was blocking it.

so executed the command setenforce 0 to temporarily close selinux and sure enough, the write was successful

Finally passed the command

sudo setsebool -P httpd_unified on

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of What is the reason why linux php fopen fails?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn