Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 CAPTCHA Anti-Spam MOD
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

MarkJH
Senior Member

United Kingdom
1722 Posts

Posted - 06 January 2007 :  16:33:53  Show Profile  Visit MarkJH's Homepage
I'm having some major problems installing this MOD.

After adding all of the code (from the readme.txt, the readme.html is *very* buggy) I tried to register myself as a new member. After putting all of the data in except the CAPTCHA code, it told me "You entered the wrong Anti SPAM confirmation code !" which is correct. Now, going back and trying the same thing again, it registered me.

I also noticed that when I put data in and left out some of the fields so it gave me:

There Was A Problem With Your Details

You must choose a User Name
You must choose a password
You entered the wrong Anti SPAM confirmation code !
You must give an e-mail address
You must enter a valid e-mail address
E-mail address already in use, please choose another
E-mail address already in use, please choose another

Go Back To Enter Data


Refreshing this error page gave me:

There Was A Problem With Your Details

You must choose a User Name
You must choose a password
You must give an e-mail address
You must enter a valid e-mail address
E-mail address already in use, please choose another
E-mail address already in use, please choose another

Go Back To Enter Data


Notice the absence of the "You entered the wrong Anti SPAM confirmation code !" line.

Also, post.asp/post_info.asp completely disregards the entire CAPTCHA part. If you are not logged in and try to reply to a topic, leaving out either your username or password and CAPTCHA, it doesn't say anything about the wrong Anti SPAM code. If you enter your username and password and leave out the CAPTCHA, the reply is posted.

Here are the relevant txt versions of my files:

post.asp
post_info.asp
inc_profile.asp
register.asp

I hope that Podge or somebody can help with this. It's a great idea for a MOD but this has not been a great installation experience.

I'm using Snitz Forums v3.4.03

Bandlink.net - http://www.bandlink.net/
Bandlink Music Forums - http://www.bandlink.net/forum/

MarkJH
Senior Member

United Kingdom
1722 Posts

Posted - 11 January 2007 :  19:37:52  Show Profile  Visit MarkJH's Homepage
Wherefore art thou Podge?

No matter. I've gone with the older rgrund MOD which seems to have done the trick.

Though, this is probably still something to look into.

Bandlink.net - http://www.bandlink.net/
Bandlink Music Forums - http://www.bandlink.net/forum/
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 07 February 2007 :  15:09:15  Show Profile  Visit Croatia's Homepage
i have one problem with that MODe.
captchta photo with commbination of leters on register.asp is not shown! I copy image adress and open in new window, still nothing.

link : http://www.kohorta.net/cgi-bin/forum/register.asp?mode=Register

(tryed in firefox and IE)

Edited by - Croatia on 07 February 2007 15:15:24
Go to Top of Page

Podge
Support Moderator

Ireland
3776 Posts

Posted - 07 February 2007 :  16:27:10  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
Sorry, Mark. I didn't see your topic.

Croatia, in inc_profile after

		'Captcha Mod
		if strRegisterCaptcha = 1 then
			captcha = generateCode()
			Session("Snitz.captcha") = captcha 'Store the code in a Session Object
			Response.Write 	"                    <tr>" & vbNewLine & _
					"                      <td bgColor=""" & strPopUpTableColor & """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><font color=""" & strHiLiteFontColor & """>*</font> Anti-Spam Code: </font></b></td>" & vbNewLine & _
					"                      <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""#""><acronym title=""Please enter the four letter code in the box below. Click to reload the image.""><img src = ""captcha.asp?c=" & SHA256(captcha) & """ border=""0"" onClick=""window.location.reload()""></acronym></a><br /><input name=""captcha"" type=""text"" size=""25"" maxLength=""25"" value=""""></font></td>" & vbNewLine & _
					"                    </tr>" & vbNewLine
		end if
		'Captcha Mod


add this line

Response.write Session("Snitz.captcha")


Have you uploaded all the files ? Rechecked the edit you've made?

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 07 February 2007 :  18:39:09  Show Profile  Visit Croatia's Homepage
still nothing.

yes I uploaded all necessary files and rechecked edits.

edit: now i noticed on register.asp captcha code is wrote in normal Times New Roman font above "Basics" ...

Edited by - Croatia on 07 February 2007 18:43:57
Go to Top of Page

Podge
Support Moderator

Ireland
3776 Posts

Posted - 07 February 2007 :  18:56:18  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
It was meant to do this. I wanted to be sure that the code was being generated. You can take out that line now if you like.

Ask your host if you have the following on your server

VBScript 5.6
MDAC 2.6

These are both required.

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 07 February 2007 :  21:45:51  Show Profile  Visit AnonJr's Homepage
Can't recall if there is a way to programatically check for the MDAC version (I seem to think there is though), but you could add something along the lines of this to admin_info.asp after it runs through the server variables: (note, I'm using the SB2 CSS so you may need to edit to show in the proper font/etc.)

'Write out the VBScript Version
Response.Write("<tr class=""putc"">" & vbNewLine & _
				"<td valign=""top"" class=""l""><b>Scripting Engine</b></td>" & _
				"<td class=""putc l"" style=""font-family:courier"">" & _
				ScriptEngine & " v" & ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion & " build " & ScriptEngineBuildVersion & _
				"</td>" & vbNewLine & "</tr>" & vbNewLine)


Might be worth adding to future versions to quickly assess stuff like this...
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 13 February 2007 :  08:37:29  Show Profile  Visit Croatia's Homepage
quote:
Originally posted by Podge


Ask your host if you have the following on your server

VBScript 5.6
MDAC 2.6

These are both required.



yes:
VBScript 5.6 and MDAC 2.82.1830
Go to Top of Page

Croatia
New Member

53 Posts

Posted - 16 February 2007 :  05:51:32  Show Profile  Visit Croatia's Homepage
Go to Top of Page

Podge
Support Moderator

Ireland
3776 Posts

Posted - 16 February 2007 :  06:28:49  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
I have no idea, sorry. The mod uses Asp Canvas to create the images. Can you see if Asp Canvas works on your server ?

http://chris.brimson-read.com.au/?page_id=5
http://chris.brimson-read.com.au/?page_id=15

If you cannot get it to work you could always use the Gatekeeper mod.

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.48 seconds. Powered By: Snitz Forums 2000 Version 3.4.07