Links asking for Password

jetsrush

New member
Joined
Apr 22, 2004
Messages
1
When I bring up my page none of my pictures are viewable and hyperlinks will not work until I put in my directadmin password. As soon as I put in the password everything works and the pictures are viewable. All of the linked web pages and pictures are in the public_html directory and nothing is password protected. Any reason why it is asking for a password >?

Thanks
 
Hello,

If you use the full url for each image in the html, and the url uses the alternate form of the domain (www.domain.com vs domain.com) your browser will think it's a different website and not pass the password for each image. Just use a local path for the images in your html:

from:
<img src="http://www.domain.com/full/path.jpg">

to
<img src="/full/path.jpg">

John
 
Back
Top