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: General / Previous versions
 User Agreement "looping" 3.4.03
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

NiteOwl
Junior Member

Canada
403 Posts

Posted - 20 January 2005 :  10:00:16  Show Profile  Visit NiteOwl's Homepage
Periodically my forum gets put into a "cyclic screen refresh" almost, if not always. This happens for the new user when they are applying or reading the Register information, this causes a problem in that they never see the full screen and thus can not accept or reject the agreement.

Any suggestion or guidance with this would be appreciated.

-=NiteOwl=-

Edited by - NiteOwl on 21 January 2005 01:42:58

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 20 January 2005 :  10:09:36  Show Profile  Visit PeeWee.Inc's Homepage
Was that even in English?

Tried searching with both searcb.asp and search2.asp ?

De Priofundus Calmo Ad Te Damine
Go to Top of Page

MarkJH
Senior Member

United Kingdom
1722 Posts

Posted - 20 January 2005 :  11:47:03  Show Profile  Visit MarkJH's Homepage
quote:
the fukll screen
Lol!

http://forum.snitz.com/forum/topic.asp?ARCHIVE=true&TOPIC_ID=39149&SearchTerms=policy,loop

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

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 20 January 2005 :  11:56:22  Show Profile
From what I could figure out from his post, it sounds like NiteOwl might be having a different problem to the Norton Referrer issue; sounds to me like policy.asp is automatically reloading at random intervals without any interaction from the visitor. Have you made any changes to that file, Niteowl?


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

NiteOwl
Junior Member

Canada
403 Posts

Posted - 21 January 2005 :  01:45:29  Show Profile  Visit NiteOwl's Homepage
I can not believe I typed that, sorry!! it was late... :)

the site is here: www.bcfmwu-forum.com
Anyway, yes, I have added a custom policy.asp these are the changes:
========
2004-06-05
Added the MOD to customize the policy and agreement form for access to the forum.

Admin_home.asp one line added to give a new menu item for admin
Admin_policy.asp new file
dbs_policy.asp new file
dbs_policy.asp new file
policy.asp replacemnet file of original
==========
the policy is reading this:

<%
'#################################################################################
'## Snitz Forums 2000 v3.4.04
'#################################################################################
'## Copyright (C) 2000-04 Michael Anderson, Pierre Gorissen,
'## Huw Reddick and Richard Kinser
'##
'## This program is free software; you can redistribute it and/or
'## modify it under the terms of the GNU General Public License
'## as published by the Free Software Foundation; either version 2
'## of the License, or (at your option) any later version.
'##
'## All copyright notices regarding Snitz Forums 2000
'## must remain intact in the scripts and in the outputted HTML
'## The "powered by" text/logo with a link back to
'## http://forum.snitz.com in the footer of the pages MUST
'## remain visible when the pages are viewed on the internet or intranet.
'##
'## This program is distributed in the hope that it will be useful,
'## but WITHOUT ANY WARRANTY; without even the implied warranty of
'## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
'## GNU General Public License for more details.
'##
'## You should have received a copy of the GNU General Public License
'## along with this program; if not, write to the Free Software
'## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
'##
'## Support can be obtained from our support forums at:
'## http://forum.snitz.com
'##
'## Correspondence and Marketing Questions can be sent to:
'## manderson@snitz.com
'##
'#################################################################################
'## MOD: Custom Policy v1.0 for Snitz Forums v3.4
'## Author: Michael Reisinger (OneWayMule)
'## File: policy.asp
'##
'## Get the latest version of this MOD at
'## http://www.onewaymule.org/onewayscripts/
'#################################################################################
%>
<!--#INCLUDE FILE="config.asp"-->
<!--#INCLUDE FILE="inc_sha256.asp"-->
<!--#INCLUDE FILE="inc_header.asp" -->
<%
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
" " & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine & _
" " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " Registration Rules and Policies Agreement</font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine

if strProhibitNewMembers <> "1" then
Response.Write " <table border=""0"" width=""100%"" cellspacing=""0"" cellpadding=""0"" align=""center"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strTableBorderColor & """>" & vbNewLine & _
" <table border=""0"" width=""100%"" cellspacing=""1"" cellpadding=""4"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strCategoryCellColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strCategoryFontColor & """><b>Privacy Statement for " & strForumTitle & "</b></font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strForumCellColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine
strsql = "SELECT CP_MODE, CP_CONTENT FROM " & strTablePrefix & "CUSTOM_POLICY WHERE CP_ID=1"
Set rsp = my_conn.execute(strsql)
strPolicyMode = rsp("CP_MODE")
strPolicyContent = rsp("CP_CONTENT")
strPolicyContent = formatStr(strPolicyContent)
strPolicyContent = Replace(strPolicyContent,"[adminemail]","<a href=""mailto:" & strSender & """>" & strSender & "</a>")
strPolicyContent = Replace(strPolicyContent,"[forumurl]","<a href=""" & strForumUrl & """>" & strForumUrl & "</a>")
rsp.close
set rsp = nothing
if strPolicyMode = 1 Then
Response.Write "<p>" & strPolicyContent & "</p>"
else
Response.Write " <p>If you agree to the terms and conditions stated below, " & _
"press the "Agree" button. Otherwise, press "Cancel".</p>" & vbNewLine & _
" <p>In order to use these forums, users are required to " & _
"provide a username, password and e-mail address. Neither the Administrators of " & _
"these forums, or the Moderators participating, are responsible for the privacy " & _
"practices of any user. Remember that all information that is disclosed in these " & _
"areas becomes public information and you should exercise caution when deciding " & _
"to share any of your personal information. Any user who finds material posted by " & _
"another user objectionable is encouraged to contact us via e-mail. We are " & _
"authorized by you to remove or modify any data submitted by you to these forums " & _
"for any reason we feel constitutes a violation of our policies, whether stated, " & _
"implied or not.</p>" & vbNewLine & _
" <p>This site may contain links to other web sites and " & _
"files. We have no control over the content and can not ensure it will not be offensive " & _
"or objectionable. We will, however, remove links to material that we feel is inappropriate as we become aware of them.</p>" & vbNewLine & _
" <p>These forums give users two options for changing and " & _
"modifying information that they provide in their profile: " & _
"<ol>" & _
" <li>Users can login with their username and password to " & _
" change any information in their profile." & _
" <li>In case of lost password, users can send an e-mail to " & _
" <span class=""spnMessageText""><a href=""mailto:" & strSender & """>" & strSender & "</a></span>.</li>" & _
"</ol>" & _
"</p>" & vbNewLine & _
" <p>Cookies must be turned on in your browser to participate " & _
"as a user in these forums. Cookies are used here to hold your username and " & _
"password and viewing options, allowing you to login.</p>" & vbNewLine & _
" <p>By pressing the "Agree" button, you agree that you, the " & _
"user, are 13 years of age or over. You are fully responsible for any information " & _
"or file supplied by this user. You also agree that you will not post any " & _
"copyrighted material that is not owned by yourself or the owners of these " & _
"forums. In your use of these forums, you agree that you will not post any " & _
"information which is vulgar, harassing, hateful, threatening, invading of others " & _
"privacy, sexually oriented, or violates any laws.</p>" & vbNewLine & _
" <p>If you do agree with the rules and policies stated in " & _
"this agreement, and meet the criteria stated herein, proceed to press the " & _
""Agree" button below, otherwise press "Cancel".</p>" & vbNewLine
end if
Response.Write " <hr size=""1"">" & vbNewLine & _
" <table align=""center"" border=""0"">" & vbNewLine & _
" <tbody>" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td>" & vbNewLine & _
" <form action=""register.asp?mode=Register"" id=""form1"" method=""post"" name=""form1"">" & vbNewLine & _
" <input name=""Refer"" type=""hidden"" value=""" & Request.ServerVariables("HTTP_REFERER") & """>" & vbNewLine & _
" <input name=""Submit"" type=""Submit"" value=""Agree"">" & vbNewLine & _
" </form>" & vbNewLine & _
" </td>" & vbNewLine & _
" <td>" & vbNewLine & _
" <form action=""JavaScript:history.go(-1)"" id=""form2"" method=""post"" name=""form2"">" & vbNewLine & _
" <input name=""Submit"" type=""Submit"" value=""Cancel"">" & vbNewLine & _
" </form>" & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </tbody>" & vbNewLine & _
" </table>" & vbNewLine
If strPolicyMode <> 1 Then
Response.Write " <hr size=""1"">" & vbNewLine & _
" <p>If you have any questions about this privacy statement " & _
"or the use of these forums, you can contact the forum administrator at: " & _
"<span class=""spnMessageText""><a href=""mailto:" & strSender & """>" & strSender & "</a></span></p>" & vbNewLine
End If
Response.Write " </font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" <br />" & vbNewLine
else
Response.Write " <br /><p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strHeaderFontSize & """ color=""" & strHiLiteFontColor & """>Sorry, we are not accepting any new Members at this time.</font></p>" & vbNewLine & _
" <meta http-equiv=""Refresh"" content=""5; URL=default.asp"">" & vbNewLine & _
" <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""default.asp"">Back To Forum</font></a></p><br />" & vbNewLine
end if
WriteFooter
Response.End
%>


-=NiteOwl=-

Edited by - NiteOwl on 21 January 2005 01:47:48
Go to Top of Page

NiteOwl
Junior Member

Canada
403 Posts

Posted - 21 January 2005 :  02:13:40  Show Profile  Visit NiteOwl's Homepage
Actually I have found this link http://forum.snitz.com/forum/topic.asp?TOPIC_ID=50297 and it appears that this may have fixed my problem, however I can't test as I am OK and its just users who have the issue, if anyone feels like hitting this link and seeing if the register loops them just let me know if it does, otherwise I thank you for looking at this post.

-=NiteOwl=-

Edited by - NiteOwl on 21 January 2005 02:14:22
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 21 January 2005 :  03:03:45  Show Profile  Visit PeeWee.Inc's Homepage
Well, i just signed up without any trouble. Havent checked to see if the email was sent yet but, in a bit of a rush so that can wait. It does, however, seem to work now.


Well done, Nite.

De Priofundus Calmo Ad Te Damine
Go to Top of Page

bucketboy
Starting Member

6 Posts

Posted - 04 March 2005 :  16:50:42  Show Profile
Since we are on this subject could someone check my link too?I've recently moved my forum to a new server/url and since doing so a mate of mine has the loop problem. Obvously I can't test it myself!

Thank you.

http://www.followtheboat.com/forum/forum_home.asp
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 04 March 2005 :  16:54:09  Show Profile  Send ruirib a Yahoo! Message
For Snitz 3.4.05, you can use the Referer mod available here: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=50559


Snitz 3.4 Readme | Like the support? Support Snitz too
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.25 seconds. Powered By: Snitz Forums 2000 Version 3.4.07