1 Answer
It is the problem caused by SELinux, So to make it work you need to disable the SELinux or you need to set the proper SELinux Context for the directory which is not writable. For example you can refer below context which is need to set for the directory to be written by httpd user
chcon -Rt httpd_sys_rw_content_t /directory_path/
Your Answer
x