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
 Registration problem - please help ASAP!
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  17:18:49  Show Profile  Visit mykel_suthertun's Homepage
Guests are getting an error when they try to register on my forum. When they click the Agree button they get "Page cannot be displayed."

The band has just sent out e-mails announcing the opening of the page so I need to fix this as soon as possible! Can someone check it out for me? Thanks,

Also, is there a way that my browser could tell me where my error is? I might be able to fix it myself if I knew where to look.

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com

Edited by - ruirib on 04 February 2003 18:05:54

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:21:38  Show Profile
This is the error:
Microsoft VBScript compilation error '800a03f6'

Expected 'End'

/forum/register.asp, line 610

else
^

Turn off friendly error messages to see it for yourself.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  17:26:20  Show Profile  Visit mykel_suthertun's Homepage
Thanks, I see where it is but I still don't know what's wrong. I've made a text version:
http://www.drivethe.com/register.txt

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:32:15  Show Profile
this is just a guess .. but on line 569 you have this:

			if strAUAnon = "1" then
			  strSql = strSql & ", '" & ChkString(Request.Form("AUHide"),"") & "'"
			else
			strSql = strSql & ", 1"
			strSql = strSql & ")"

change it to this:

			if strAUAnon = "1" then
			  strSql = strSql & ", '" & ChkString(Request.Form("AUHide"),"") & "'"
			else
			strSql = strSql & ", 1"
			end if
			strSql = strSql & ")"

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  17:36:32  Show Profile  Visit mykel_suthertun's Homepage
Nikkol,
YOU ROCK!!
Heh, thank you.

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:37:01  Show Profile
you are very welcome

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  17:38:07  Show Profile  Visit mykel_suthertun's Homepage
Uh-oh, wait...
stuff.
Now I can get to the next page where you fill in the details, but after I submit that I get another error.

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:39:00  Show Profile
what's the error?

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  17:43:58  Show Profile  Visit mykel_suthertun's Homepage
I'm not sure. I use Internet Explorer 6.x and I can't figure out how to show the error messages.
I'm just getting "Page cannot be displayed."

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:45:07  Show Profile
i use ie6 and i can see your error messages .. you sure you have friendly messages turned off?

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:46:23  Show Profile
Microsoft JET Database Engine error '80040e14'

Number of query values and destination fields are not the same.

/forum/register.asp, line 576

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:49:14  Show Profile
If I were you, I'd check the install instructions for active users because that is where your problem lies. Make sure you made all the correct modifications for register.asp. Also, you should post for help in the MOD Implementation forum since it is due to that.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  17:49:33  Show Profile  Visit mykel_suthertun's Homepage
Heh, nope. I turned them off now. Just couldn't see where that option was.
Do you know how to fix that error? It's a little out of my league (for now)...

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 04 February 2003 :  17:52:10  Show Profile
Nope, I don't know since I don't use Active Users and wouldn't want to just guess and what you might be missing in the file. Like I said, you should post the problem in the MOD Implementation forum.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

Rasco
Advanced Member

Germany
3192 Posts

Posted - 04 February 2003 :  17:52:56  Show Profile  Send Rasco an ICQ Message
The code above should look like that:

if strAUAnon = "1" then
			  strSql = strSql & ", '" & ChkString(Request.Form("AUHide"),"") & "'"
			else 
			  strSql = strSql & ", '1'" 
			end if
                        
                        strSql = strSql & ", 1"
                        strSql = strSql & ")"

German Snitz Forum
Go to Top of Page

mykel_suthertun
Junior Member

USA
227 Posts

Posted - 04 February 2003 :  18:03:22  Show Profile  Visit mykel_suthertun's Homepage
WOO! Thank you both! I've registered with a new user and so far everything seems to be working. Both of you (and everyone else in the Snitz community) are freaking awesome . Once again, I'll definately make a donation when I can afford my own lunch.

Mike Southerton
Webmaster | Don'tSayDie.com | DriveThe.com
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.26 seconds. Powered By: Snitz Forums 2000 Version 3.4.07