By default, SELinux will block the ability for Apache/webapps to write to files in Fedora. This is a security feature to limit what folders Apache can write to. You can notice this issue if you get errors in your Apache logs such as:
PHP Warning: move_uploaded_file(): Unable to move ‘/tmp/…’ to ‘…….’
Command to set permissions:
chcon -R -t httpd_sys_rw_content_t [Name of Folder]
You can check the SELinux permissions via the following command:
ls -halZ
Thanks For Advises
That is Work.
That is true.