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

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Require Member Profile 1.0
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 7

JJenson
Advanced Member

USA
2121 Posts

Posted - 04 March 2007 :  20:19:07  Show Profile  Visit JJenson's Homepage  Reply with Quote
No problem glad you got it working <
Go to Top of Page

texanman
Junior Member

United States
410 Posts

Posted - 04 March 2007 :  20:35:49  Show Profile  Reply with Quote
Jeff:
The dbs works file i.e. the fields were successfully created in the DB. One thing I forgot to ask is does this mod works with snitz 3.4.05. That is what I am using. I was able to make all the changes in the 4 files.
Thanks<
Go to Top of Page

JJenson
Advanced Member

USA
2121 Posts

Posted - 04 March 2007 :  21:12:21  Show Profile  Visit JJenson's Homepage  Reply with Quote
I believe so but I have never tried it on any previous versions but I don't see why it would not work.<
Go to Top of Page

texanman
Junior Member

United States
410 Posts

Posted - 05 March 2007 :  00:27:42  Show Profile  Reply with Quote
Jeff I got an error msg when trying to register. After I click "I agree to the terms" the registration popup doesn't show. The message is as follows:

(Microsoft VBScript error '800a0401'
Expected end of statement
/inc_profile.asp, line 115
Response.Write " <td bgColor=""" & strPopUpTableColor """ align=""right"")
<
Go to Top of Page

TastyNutz
Junior Member

USA
251 Posts

Posted - 05 March 2007 :  02:09:15  Show Profile  Visit TastyNutz's Homepage  Reply with Quote
quote:
Originally posted by JJenson

Yeah no problem I have not seen a mod yet that changed this file this is why I did it this way. BUt if you find one that had let me know I will make the change in the read me to tell you how to do it.



Jeff, I guess you missed my earlier post where I pointed out that my Profile Song Mod does change admin_member_config.asp. I doubt many people are using that mod. But I'd still suggest you include the changes in your instructions. Even without a posted mod, you can never be sure what files people have or haven't changed. So, I think when creating a mod that it's just a wise practice to document all changes to existing files. It could really save some headaches.<


PowerQuad Disability Support Forum
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 05 March 2007 :  06:42:56  Show Profile  Visit AnonJr's Homepage  Reply with Quote
quote:
Originally posted by texanman

Jeff I got an error msg when trying to register. After I click "I agree to the terms" the registration popup doesn't show. The message is as follows:

(Microsoft VBScript error '800a0401'
Expected end of statement
/inc_profile.asp, line 115
Response.Write " <td bgColor=""" & strPopUpTableColor """ align=""right"")




What's on a few lines before and after it? And have you double-checked your code changes?<
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 05 March 2007 :  06:51:57  Show Profile  Reply with Quote
The ) at the end of that line should be a "

<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 05 March 2007 :  08:38:07  Show Profile  Visit AnonJr's Homepage  Reply with Quote
And this is what I get for trying to help before the first cup of coffee... <
Go to Top of Page

texanman
Junior Member

United States
410 Posts

Posted - 05 March 2007 :  08:45:17  Show Profile  Reply with Quote
Here:

if strAIM = "1" then
Response.Write " <tr>" & vbNewLine
if strReqAIM = "1" then
Response.Write " <td bgColor=""" & strPopUpTableColor """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace """ size="" strDefaultFontSize """><font color=""" & strHiLiteFontColor """>*</font> AIM: </font></b></td>" & vbNewLine
else
Response.Write " <td bgColor=""" & strPopUpTableColor """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace """ size="" strDefaultFontSize """>AIM: </font></b></td>" & vbNewLine
end if
Response.Write " <td bgColor=""" & strPopUpTableColor """><font face=""" & strDefaultFontFace """ size="" strDefaultFontSize """><input name=""AIM"" size=""25"" maxLength=""50"" value="""
if strMode ><> "Register" then Response.Write(ChkString(rs("M_AIM"), "display"))
Response.Write """></font></td>" & vbNewLine & _
" </tr>" & vbNewLine
end if


Shaggy: There is no ).<
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 05 March 2007 :  08:53:50  Show Profile  Reply with Quote
if strAIM = "1" then
         Response.Write "                    <tr>" & vbNewLine
      if strReqAIM = "1" then
Response.Write "                      <td bgColor=""" & strPopUpTableColor & """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><font color=""" & strHiLiteFontColor & """>*</font> AIM: </font></b></td>" & vbNewLine
      else
               Response.Write "                      <td bgColor=""" & strPopUpTableColor & """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>AIM: </font></b></td>" & vbNewLine
      end if
         Response.Write "                      <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><input name=""AIM"" size=""25"" maxLength=""50"" value="""
         if strMode ><> "Register" then Response.Write(ChkString(rs("M_AIM"), "display"))
         Response.Write """></font></td>" & vbNewLine & _
               "                    </tr>" & vbNewLine
end if
<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

texanman
Junior Member

United States
410 Posts

Posted - 05 March 2007 :  09:09:13  Show Profile  Reply with Quote
Thanks a lot Shaggy.
There are many blocks like these and they all need to be changed.
I see the original file has these "&'s" but not Jeff's changed code.
Thanks<
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 05 March 2007 :  09:24:44  Show Profile  Reply with Quote
You're welcome.

<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

JJenson
Advanced Member

USA
2121 Posts

Posted - 05 March 2007 :  10:17:56  Show Profile  Visit JJenson's Homepage  Reply with Quote
WEird thing is in all my actualy code on the sites I have it up and running the code is correct. For some reason in my readme it has left out only a couple of those "&'s" Not really sure why it has done this but maybe I will go ahead and try and redo the README file. Also I will put in the changes on the admin_member_config.asp. Sorry Tastynutz I did miss your post on this. I will start working on a new README for this with better instructions. First shot at the readme thing I need a little practice still

Thanks for all the info texaman will start working on this. <
Go to Top of Page

texanman
Junior Member

United States
410 Posts

Posted - 05 March 2007 :  14:02:21  Show Profile  Reply with Quote
Thanks Jeff:
It will help a lot to redo the Readme file because the "&'s" are missing from all the changes made to inc_profile.asp.
<
Go to Top of Page

JJenson
Advanced Member

USA
2121 Posts

Posted - 05 March 2007 :  14:27:36  Show Profile  Visit JJenson's Homepage  Reply with Quote
Yeah I noticed not sure how that happend expecially there but will go ahead and make those fixes. Thanks texanman<
Go to Top of Page
Page: of 7 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.14 seconds. Powered By: Snitz Forums 2000 Version 3.4.07