I just installed Snitz and am customizing it for my web site. Since I'm using a replicated MS-access databases, the ID fields in the tables are random Long Integer. This causes an overflow error since some of the VB variables in the ASP code are defined as CInt(). I replaced them with CLng() and it works fine. I'll report if I find more of these...
in post.asp: "if clng(strRqCatID) = rsCat("CAT_ID") then" and "if clng(strRqForumId) = rsForum("FORUM_ID") then"
in pop_delete.asp: all occurences of "cint(delAr(i))" should be changed to clng(delAr(i))