Friday 1 February 2019

Laravel permission issue


168
 
Finally Overcame the problem
  • It was not the .htaccess file that was the problem nor the index.php. The problem was on accessing the files and requiring permissions.
For solving the problem i ran the following commands through terminal.
sudo chmod 755 -R laravel_blog
and then type below to allow laravel to write file to storage folder
chmod -R o+w laravel_blog/storage

No comments:

Post a Comment