Click to See Complete Forum and Search --> : links question
Rick Maitland
10-31-2003, 10:08 AM
Im trying to put a pic. on an html file called "template.html" which is in a folder called "cgi-bin" but the pic. is in a folder called "images". Both of these files are in a folder called "public_html". So would the path to that pic. be
"public_html/images/top_logo.jpg" or what am I missing here because this path does not work.
Thanks
Aronya1
10-31-2003, 01:29 PM
I think all you need to do is remove "public_html" from your path.
Rick Maitland
10-31-2003, 01:37 PM
No that doesnt work I tryed that already. Thanks though...Lets keep trying...Im up for any suggestions.
Aronya1
10-31-2003, 06:15 PM
OK, my next suggestion is to get that web page out of the CGI-BIN folder. There may be restrictions on files in that folder. You still want to keep the public_html reference out of your path, though.
PeOfEo
11-01-2003, 01:17 AM
or you can just specify url instead of that path from what it sounds like.
XMLMania.com
11-01-2003, 08:27 AM
<img src="../images/top_logo.jpg" />
That should work!
Rick Maitland
11-01-2003, 08:36 AM
That worked guys thanks. I had to use the full URL for it to work in the CGI folder.
PeOfEo
11-01-2003, 10:33 AM
ur welcome :) good luck