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 / Classic ASP versions(v3.4.XX)
 Login problem in Version 3.4.05
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

joshuax
Starting Member

2 Posts

Posted - 22 December 2004 :  22:58:40  Show Profile
Hi,

After setting up the forums, I tried accessing my forum at http://fantasyro.cjb.net , tried login, it was successful but after that, it just direct me to the login page again.. tried registering another user but same problem as well.

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 23 December 2004 :  00:05:59  Show Profile
It's because you are using that redirect service (cjb.net) and your forum is actually loading in a frame.

see this post:

http://forum.snitz.com/forum/topic.asp?TOPIC_ID=54133&SearchTerms=frame

it is similar to the problem you are having.
Go to Top of Page

joshuax
Starting Member

2 Posts

Posted - 23 December 2004 :  00:53:39  Show Profile
Thanks Richard!
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 23 December 2004 :  01:23:52  Show Profile
you're welcome
Go to Top of Page

jflowers
Starting Member

3 Posts

Posted - 05 January 2005 :  05:45:02  Show Profile
I am having the same problem, but only with IE on an XP machine. Netscape on the same machine is ok And IE on a different machine running Win 2000 is ok.

Actual URL is http://www.jftp.co.uk/ecdlforum/ which can be accessed by http://www.corn-exchange.co.uk/

is this a windows issue?

Any cure? I would like to keep the browser displaying corn-exchange if possible.

[Edited to replace miss use of the word phisical]

Thanks

Jon

Edited by - jflowers on 05 January 2005 07:47:17
Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 05 January 2005 :  07:03:32  Show Profile  Visit Gremlin's Homepage
quote:
Phisical path is http://www.jftp.co.uk/ecdlforum/
Thats not a physical path, thats a URL a physical path would be something like c:\myfolder\mywebsite

Kiwihosting.Net - The Forum Hosting Specialists
Go to Top of Page

jflowers
Starting Member

3 Posts

Posted - 05 January 2005 :  07:44:21  Show Profile
Ok, sorry, thats the actual url, the return to login problem occurs when using either of those url's. Do you know the problem?

Thanks

Jon
Go to Top of Page

g60.se
Starting Member

5 Posts

Posted - 06 January 2005 :  14:52:44  Show Profile  Visit g60.se's Homepage
Have had the same problem with some of my members. They (luckely) came up with that by ant reason their firewall installed on XP and usin IE redirected them right back to square one. The firewall they were using was ZoneAlarm. When they turned that off it worked just fine again :)

Appared specially when new visitors tryed to reigister, they just got redirected to the same page with the "agenotice and choise 13 obove" over and over again
Go to Top of Page

jflowers
Starting Member

3 Posts

Posted - 07 January 2005 :  03:59:56  Show Profile
I thought that might be the problem, however I do not have zone alarm installed and have switched off the firewall that comes with XP, so I am at a loss. I was thinking maybe its to do with an IE security setting, but have put these all to minimum and still have the problem. I went through 48 pages on this forum yesterday and saw people with similar problems, but all the work arounds/mods/suggestions came up blank.

Jon
Go to Top of Page

groggo
Starting Member

Belarus
35 Posts

Posted - 09 January 2005 :  03:55:20  Show Profile
hmm had a similar problem but when i unchecked save password the loging worked fine

a few of my members are very green when it comes to the internet .So i have had a few emails about the problem LOL

quote:
why did you not post this at Snitz?


The main reasons why this was not posted at Snitz and why I might not post the bugs I find
directly at Snitz anymore are the ways "ruirib and HuwR" take pleasure to criticize just about
anything I post and seem to resent the fact that I want to improve and correct Snitz which, I agree,
serve as the original base for my own Forum.

These are some of the actions I find unacceptable:
ruirib and HuwR take fun to Delete some of my topics, of my replies, locked or move my topic.

A topic posted last week from me to Davio in "Help: MOD Implementation" Forum as been deleted.

Two replies in my topic as been deleted about a bug on snitz topic page:
http://forum.snitz.com/forum/topic.asp?whichpage=5.96&TOPIC_ID=44136#372029

A Fix to texanman as been deleted (first reply to texanman subject):
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=66162

One of my Multi-Language Topic on Snitz has disappeared last night
Multi-Language and Multi-Language Skin3D
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=40765

etc...

3 times I changed my password and the day after the same game start.

Since I send to HuwR a donation of $200 on December 22, 2006
this guy HuwR has never stop to pick on every thing I post on the Snitz Forum.
Go to Top of Page

hedu
Starting Member

1 Posts

Posted - 20 January 2005 :  04:40:17  Show Profile  Visit hedu's Homepage
Some of my users and I had the same problem (not being redirected to the start page, although we have been logged in successfully), after my provider moved the site to a Windows 2003 server.
And the problem occured only with the IE (under Windows XP?), no problem for Mozilla, Netscape and others.

I've come to know about a redirect problem (in ASP) since four or five years, so I knew one could find the answer in Microsofts support database.

Read about this phenomenon in this MS article: http://support.microsoft.com/default.aspx?scid=kb;en-us;193489

I solved it now for my forum according to that article, and that's what I did (minimal changes).

Please bear in mind, that this worked for my forum; I do not know about your installations, I cannot guarantuee this to work for your installation too.

Basically you have to work on two files, inc_func_common.asp and inc_header.asp . Remember to create copies of the files before you start editing!


Edit the file inc_func_common.asp:

Add this to the file, e.g. starting in line 42 (right after the line with "<%"):

'##############################################
'## Redirect bugfix ##
'## MS support article: KB193489 ##
'##############################################

Function XRedirect(sURL)
Response.Buffer = True
Response.Clear
Response.Status = "301 Moved"
Response.AddHeader "Location", sURL
Response.End
End Function


Now edit the second file, inc_header.asp:

Replace "Response.Redirect" by "XRedirect" (i.e. change from "Response.Redirect" to "XDirect")
(you find them in the lines 180 and 182 in the original - unmodified - file)



That's it. Now it worked also for the IE!

One more word. Filing through the answers here given by some people in some threads I am somehow astonished about these answers.
Advices like "users should disable firewalls" and whatever else just to be able to use a discussion forum cannot be the right answers. Do you really want to educate all the users of the world?

Anyway, I hope my code changes do the trick for you too.

Bye
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.5 seconds. Powered By: Snitz Forums 2000 Version 3.4.07