owncloud Error Cannot write into config directory
Error : Cannot write into “config” directory!
Error : Cannot write into “apps” directory!
Error : Cannot write into “data” directory!
Screenshot sample
Solution :
Just disable selinux by
# setenforce 0
Or
Hit the below command
[root@lokesh ~]# chcon -R -t httpd_sys_rw_content_t /var/www/html/owncloud/config
[root@lokesh ~]# chcon -R -t httpd_sys_rw_content_t /var/www/html/owncloud/apps
[root@lokesh ~]# chcon -R -t httpd_sys_rw_content_t /var/www/html/owncloud/data
Leave a Comment