A)In mod_setup.asp line 1:
<!--#include file="../config.asp"-->
<!--#include file="../inc_functions.asp"-->
Change to:
<!--#include file="config.asp"-->
<!--#include file="inc_functions.asp"-->
or mod_setup won't run.
B)Delete events icon ineffective.
C)According to README.TXT:
" If you want to display the events calendar on your forum default page,
add this to default.asp, to line 121.
<!--#include file="events_inc.asp"-->"
README.TXT goes on:
"Here's what mine's look like:
<table border="0" width="100%" cellspacing="1" cellpadding="4">
<!--#include file="events_inc.asp"-->
<tr>
<td align="center" bgcolor="<% =strHeadCellColor %>" nowrap valign="top"><b> </td>
<td align="center" bgcolor="<% =strHeadCellColor %>" nowrap valign="top"><b><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">Forum</font></b></td>
<td align="center" bgcolor="<% =strHeadCellColor %>" nowrap valign="top"><b><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">Topics</font></b></td>
<td align="center" bgcolor="<% =strHeadCellColor %>" nowrap valign="top"><b><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">Posts</font></b></td>
<td align="center" bgcolor="<% =strHeadCellColor %>" nowrap valign="top"><b><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>" color="<% =strHeadFontColor %>">Last Post</font></b></td>"
Line 121 in my default.asp is this:
ShowLastHere = (cint(chkUser(strDBNTUserName, Request.Cookies(strUniqueID & "User")("Pword"))) > 0)
if strShowStatistics <> "1" then
Response.Write " <table width=""100%"" border=""0"">" & Line 121 ->vbNewline & _
" <tr>" & vbNewline & _
" <td>" & vbNewline
if ShowLasthere then
Response.Write " <font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>You Last Visited - " & ChkDate(Session(strCookieURL & "last_here_date")) & " " & ChkTime(Session(strCookieURL & "last_here_date")) & "</font>" & vbNewline
else
Response.Write " " & vbNewline
end if
The closest to his example in my default.asp is:
Lines 139 to 154
" <table border=0 width=""100%"" cellspacing=1 cellpadding=4>" & vbNewline & _
" <tr>" & vbNewline & _
" <td align=center bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>"
if Cat_ID <> "" then
Response.Write " <a href=""default.asp""><img src=""icon_folder.gif"" height=15 width=15 border=0 hspace=0 alt=""Show All Categories""></a>"
else
Response.Write " "
end if
Response.Write " </b></font></td>" & vbNewline & _
" <td align=center bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Forum</font></b></td>" & vbNewline & _
" <td align=center bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Topics</font></b></td>" & vbNewline & _
" <td align=center bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Posts</font></b></td>" & vbNewline & _
" <td align=center bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Last Post</font></b></td>" & vbNewline
if (strShowModerators = "1") or (mlev = 4 or mlev = 3) then
Response.Write " <td align=center bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Moderator(s)</font></b></td>" & vbNewline
end if
LC