SELinux security permission modification in HTTP + PHP

Source: Internet
Author: User

SELinux security permission modification in HTTP + PHP

When using the fopen write function in PHP, you may encounter the following issues:

PHP Warning: fopen (file): failed to open stream: Permission denied in (filepath) on line (num) error, especially when in php. if virtualhost is created in conf and other directories are specified, it may appear (I use Fedora 20), with my virtualhost configuration list:

<VirtualHost 127.0.0.1: 80>
ServerAdmin xqbumu @ jx
DocumentRoot/opt/Workspace/PHP/jx
ServerName jx
ErrorLog logs/jx-error_log
CustomLog logs/jx-access_log common
<Directory "/opt/Workspace/PHP/jx/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
# Order allow, deny
# Allow from all
# Options None
Require all granted
</Directory>
</VirtualHost>

You can solve this problem by configuring Selinux.

The shell command is as follows:

Semanage fcontext-a-t httpd_sys_rw_content_t '/opt/Workspace/PHP/jx/application/controllers/temp (/.*)? '

Restorecon-v '/opt/Workspace/PHP/jx/application/controllers/temp /*'

This will solve the Read and Write problems in the/opt/Workspace/PHP/jx/application/controllers/temp/directory.

This article permanently updates the link address:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.