Can you post txt versions of both post.asp and register.asp ?
Whatever has been done to register.asp it is redirecting to itself. This is the error I get in Firefox - "Redirect Loop - Firefox has detected that the server is redirecting the request for this address in a way that will never complete."<
OK ... seem to be getting somewhere now - have fixed your last two posts. Now, can register successfully (including Gatekeeper); however, when attempting to post, an error advising that the antispam question has not been answered appears - although there was no question in the form to answer.<
It feels good when you stop banging your head on the wall.
Replace the Gatekeeper block of code in post_info.asp with this block of code
'Gatekeeper Mod
if strLinkSpamGatekeeper = "1" and strDBNTUserName = "" then
select case len(Request.Form("GateKeeperAnswer"))
case "0"
Go_Result "You have not entered an answer for the Antispam question. Please use your back button and try again.", 0
case else
if (lcase(Request.Form("GateKeeperAnswer")) <> lcase(strGatekeeperAnswer1)) and (lcase(Request.Form("GateKeeperAnswer")) <> lcase(strGatekeeperAnswer2)) then
Go_Result "You have entered a wrong answer for the Antispam question. Please use your back button and try again.", 0
end if
end select
end if
'Gatekeeper Mod
Podge ... I have made that change to post_info.asp and other than a script error in register.asp (that doesn't seem to effect anything) all seems to be working as it should.
Thanks for your help!<
It feels good when you stop banging your head on the wall.
Gatekeeper isn't showing when logged out and _result appears on the top left. I presume its part of the Go_Result function. Can you post a link to a txt version of your post.asp ?<
Okay, I have tried to get this working. It seems that everything is working except that the form fields are not showing up in the post.asp file. I had the loop issue with the register.asp but got that fixed from that last post of code for it. The link above doesn't work for another example of the post.asp. I am running version 3.4.06. Ideas?