Ray
Ray

Reputation: 3060

laravel 4.1 upgrade now have blank screens

I've just tried upgrading a site to 4.1 from 4.0 I think I managed to follow the instructions and upgraded the scripts etc. Successfully upgraded view composer

However my pages no longer work - they are not loading anything and simply have blank html. There are no error messages so not at all clear on what;s gong on here.

Has anyone else had this behaviour? Do I need to start stripping out packages?

Any help appreciated

Upvotes: 0

Views: 640

Answers (1)

Erick Aguayo
Erick Aguayo

Reputation: 32

You skipped this step(you already fixed, i hope this aswer helps anybody):

Permissions

After installing Laravel, you may need to grant the web server write permissions to the app/storage directories. See the Installation documentation for more details on configuration.

Then, once you've created your project, put this:

sudo chmod -R 755 app/storage or sudo chmod -R 777 app/storage

Upvotes: 2

Related Questions