Home  >  Article  >  Backend Development  >  What to do if the php user has insufficient permissions

What to do if the php user has insufficient permissions

王林
王林Original
2019-09-26 11:49:183764browse

What to do if the php user has insufficient permissions

Question:You don't have permission to access /index.html on this server.

Reason: index.html is a file created by the root user, and the apache permissions are insufficient.

Solution: Change file permissions; chmod 755 index.html

If this problem occurs under WIN 2003, please solve it as follows:

Open the apache configuration file httpd.conf and find this paragraph:

<Directory />
     Options FollowSymLinks
     AllowOverride None
     Order deny,allow
     deny from all
     Satisfy all
</Directory>

Then try to change the deny in deny from all to allow, save and restart apache, and then test Web page, access to the test website is completely normal.

The second method is to open the extended configuration in Apache's configuration file httpd-vhosts.conf

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

Remove the # in front of it, The extended configuration was introduced, but the corresponding permission "Allow from all" was not configured in the extended configuration file, so this error was prompted.

Recommended tutorial: PHP video tutorial

The above is the detailed content of What to do if the php user has insufficient permissions. 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