Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why am i getting a 403 forbidden when using a img tag?

When trying to use

<img src="../Ginger.jpeg" />

I am getting a 403 error.

Here is the page which is requesting:

http://laponderosakennels.com/beagles/memories/ginger/index.html

What is going on here am I just tired?

like image 816
CodingIsAwesome Avatar asked Sep 25 '11 06:09

CodingIsAwesome


1 Answers

if you look at http://laponderosakennels.com/beagles/memories/Ginger.jpeg it throws a 403 error.. there is a permission issue for the same.

The problem is probably cos you are referring to the wrong file.. i took the liberty of looking at your folder structure and you are referring to ginger.jpeg which has a permission issue and there is a file ginger.jpg that works fine.

Also make sure you refer to the file correctly.. i.e ginger.jpg

like image 50
Baz1nga Avatar answered Oct 15 '22 11:10

Baz1nga