Vilib
Vilib

Reputation: 93

Laravel 4 - can't access images in public folder

I have a strange behaviour from Laravel. I just copied the website to a new hoster. Everything is working quite fine but one thing: I can't access the images in my public folder. If I try to open an image on my own with "domain.com/img/Ausfahrten/42.png i get the following error: error image loading

The folder structure on my server looks like this: enter image description here

What method can't laravel find and how can I resolve this? I've already checked file permissions on the server, everything's fine there.

Upvotes: 0

Views: 356

Answers (1)

Kevin Jimenez
Kevin Jimenez

Reputation: 436

Laravel throw that error when it cannot find the file. Try to access to another directory without Uppercase letter in its path name.

Upvotes: 0

Related Questions