I think this is because you have incorrectly adjusted your includes/header.asp file. I think what you should try doing, is create a separate includes folder outside the forum directory, then create your header file there, and put your includes/header.asp back to something like this:
<!--#include virtual="includes/header_inc.asp"--> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <script language="javascript" src="includes/default_javascript_v9.js" type="text/javascript"></script> </head> <body> <table class="basicTable" cellspacing="0" cellpadding="3" align="center"> <tr> <td><% 'If there is a forum image then dsiplay it If NOT strTitleImage = "" Then Response.Write("<a href=""" & strWebsiteURL & """><img src=""" & strTitleImage & """ border=""0"" alt=""" & strWebsiteName & " " & strTxtHomepage & """ title=""" & strWebsiteName & " " & strTxtHomepage & """ /></a>")
%></td> </tr> </table> |
The bit in red references the external includes file, which providing that works correctly, will or should give you something like what you need. You can
see something similar here which references the header file externally outside the forum directory
MrTWS