| Author |
Topic Search Topic Options
|
brianmisty
Newbie
Joined: 11 April 2007
Status: Offline
Points: 22
|
Post Options
Thanks(0)
Quote Reply
Topic: Message Deleted Posted: 19 July 2007 at 4:15pm |
I just posted an issue I was having regarding the Quick login field throwing an error and the message just dissappeard about a minute later.
My post was that I am getting an error with Beta 1 and 2 with the Quick login that I do not get with the main login page...
| Error: Un-Successful Login |
Your login was un-successful due to a session tracking error.
Please ensure that cookies are enabled on your web browser and you are not hiding or masking your IP address. |
IE7 and Firefox 2, with cookies enabled.
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 4:34pm |
|
Do you have a link to this to see this issue?
|
|
|
 |
brianmisty
Newbie
Joined: 11 April 2007
Status: Offline
Points: 22
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 4:55pm |
http://www.nfaonline.org/forum/
username: 12217
password: test
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 5:05pm |
|
The problem looks like for some reason cookies are not working for your site.
If you are using domain masking, dynamic DNS, et this can prevent your site from working correctly with cookies.
|
|
|
 |
brianmisty
Newbie
Joined: 11 April 2007
Status: Offline
Points: 22
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 5:10pm |
We've no had an issue with cookies before. Also, we are able to login using the main login page, just not the quick login. Seems like something else is going on here to me.
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 5:15pm |
|
Try opening the file includes/setup_options_inc.asp and chnage line 46 from:-
strCookiePath = Left(Request.ServerVariables("URL"), InstrRev(Request.ServerVariables("URL"), "/"))
To:
strCookiePath = Left(Request.ServerVariables("SCRIPT_NAME"), InstrRev(Request.ServerVariables("SCRIPT_NAME"), "/"))
Looks like at present the way your web host has the server setup the first way is returning an incorrect URL for the cookie path with nfaonline_org/forum/ instead of /forum/
|
|
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 5:22pm |
|
Actually try the following it should work better:-
strCookiePath = Left(Request.ServerVariables("HTTP_URL"), InstrRev(Request.ServerVariables("HTTP_URL"), "/"))
If you could let me know which one works for you it would be much appreciated and should be able to add it to the final release to prevent others having the same issue
|
|
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 July 2007 at 7:42pm |
|
Did you have any luck with any of the items above on your site so that it correctly sets the cookie?
|
|
|
 |