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: