changed line #69 of admin_home.asp from this: if instr(strConnString, Server.MapPath("snitz_forums_2000.mdb"))> 0 then
to this: if instr(lcase(strConnString), lcase(Server.MapPath("snitz_forums_2000.mdb"))) > 0 then
could also change it to this, would accomplish the same thing:
if instr(1, strConnString, Server.MapPath("snitz_forums_2000.mdb"), 1) > 0 then