When i access view in my laravel application, why is it always showed this error every 1 minute: file_put_contents(/home/vagrant/Code/myproject/storage/framework/cache/data/db/59/…
Tag: chmod
Apache does not have write permission on html folder
I installed apache, MySQL, PHP in CentOS 7. All work well, except apache cannot write file in html folder. I found this problem when I used file_put_contents. I tried Change owner of /var/www to apache:apache, not work Added Order allow,deny Allow from all to <Directory “/var/www/html”> in httpd.conf, restart httpd service, not work chmod -R 0777 /var/www/html, not work What