But found another problem with image folders.
I was looking in my site stats and was wondering about 403-14 errors, already 1118 hits
For my images i use a folder named images/ but no background image.
If you have selected a folder for your images the Html output is the following
<body background="images/" bgColor="white" text="midnightblue" link="darkblue" aLink="red" vLink="blue">
When directory listing is denied on the server it generates this error.
Not a problem, you can view the page, but isn´t nice.
In inc_header.asp around line 240
I've done this:
if strPageBGImageURL = "" then
strPageBGImageURL = ""
else
if Instr(strPageBGImageURL,"/") > 0 or Instr(strPageBGImageURL,"\") > 0 then
strTmpPageBGImageURL = " background=""" & strPageBGImageURL & """"
else
strTmpPageBGImageURL = " background=""" & strImageUrl & strPageBGImageURL & """"
end if
end if
and for the body tag around line 300:
"<body" & strTmpPageBGImageURL & " bgColor="""
seems to work for me now with clean body tag