Support the ongoing development of Laravel.io →
Installation
Last updated 2 years ago.
0

I had to give permission to the app/storage folder and it worked. I did not see this documented on the website or may be I missed it.

Last updated 2 years ago.
0

I normally encounter this, it's a permissions error. Set permissions of all files and folders in app/storage. So, go to your project root from Terminal, and enter the following:

First run:

find app/storage -type d -exec chmod 777 {} \;

Then run:

find app/storage -type f -exec chmod 777 {} \;

It's not .htaccess. I hope this helps :)

Last updated 2 years ago.
0

ritushrestha said:

I had to give permission to the app/storage folder and it worked. I did not see this documented on the website or may be I missed it.

"Permissions": http://laravel.com/docs/installation#configuration

Last updated 2 years ago.
0

Mcrypt installed? I've had issues with certain things not installed. Most likely permission though.

Last updated 2 years ago.
0

Yes it was a permission issue and is now fixed. I missed this in the documentation. Thank you guys for your help.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.