Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
2 registered (Gizmo, SteveS), 38 Guests and 14 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 06/07/07
Posts: 4
Top Posters (30 Days)
Ruben 50
DennyP 24
Gizmo 23
Dunny 15
SteveS 13
AllenAyres 12
dbremer 10
SD 10
drkknght00 9
doug 8
Latest Photos
OK Corral Shoot Out
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Page 1 of 2 1 2 >
Topic Options
#240054 - 10/20/10 05:33 PM "Remember Me" problem in Internet Explorer?
Christi Offline
stranger
Registered: 09/22/10
Posts: 15
Has anybody had trouble getting Internet Explorer to "remember" users? Firefox works just fine, but for some reason even when I try to log in on this forum at UBBCentral, it doesn't want to keep me logged in. It just takes me back to the forum list as a non-logged in user.

Not checking the "remember me" box logs in just fine too.
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#240056 - 10/20/10 05:45 PM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
Is it IE 8 you are using? If so then yes, and not just on forums, but a variety of sites give the same problem. I *think* we may have found a way to work around it, and by "we" I mean a developer site I belong to and we'll be working to see if it's a valid fix.

If you can actually duplicate this, then I might PM you to test a fix if we make one available since I haven't been able to duplicate it myself.
Top
#240057 - 10/20/10 06:10 PM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
Christi Offline
stranger
Registered: 09/22/10
Posts: 15
Yep, just got a new computer with IE8 and that's when the problem started. I'd be happy to help test a fix when you get one going! Thanks.
Top
#240402 - 11/30/10 08:35 PM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
VaGunTrader Offline
journeyman
Registered: 09/02/10
Posts: 86
most of my members of my site cant get logged in when using IE. They have to use firefox.
Top
#240404 - 11/30/10 10:22 PM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
SteveS Online   content

addict
Registered: 03/22/07
Posts: 416
Loc: Massachusetts
FWIW, I use IE8, and have no problem being "remembered." I'm running under XP pro, though.
_________________________
Steve
crownvic.net
UBB.classic from 2000-2003
UBB.threads from 2003-present!
Top
#240407 - 12/01/10 10:25 AM Re: "Remember Me" problem in Internet Explorer? [Re: VaGunTrader]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
Still looking for a site that I can duplicate this on so I can actually debug it. Will try vaguntrader.
Top
#240799 - 12/26/10 09:14 AM Re: "Remember Me" problem in Internet Explorer? [Re: Rick]
VaGunTrader Offline
journeyman
Registered: 09/02/10
Posts: 86
Originally Posted By: Rick
Still looking for a site that I can duplicate this on so I can actually debug it. Will try vaguntrader.



any luck Rick?
Top
#240802 - 12/26/10 10:44 AM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
Mike L Offline
journeyman
Registered: 06/05/06
Posts: 88
Many folks on my forums have run into this same problem.

Here's an example

Another

So far the only fix is to turn IE8's protected mode off.

Rick, if you need an account on my forums for testing, just let me know.
Top
#240825 - 12/28/10 08:29 AM Re: "Remember Me" problem in Internet Explorer? [Re: VaGunTrader]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
vaguntrader, I did put in the change on your site. Let me know if IE8 users are still having the login issues.


Edited by Rick (12/28/10 08:30 AM)
Top
#240826 - 12/28/10 09:37 AM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
AllenAyres Offline

Registered: 12/29/03
Posts: 1995
Loc: Texas
oh, is there a fix for it? public/semi-public? smile
_________________________
- Allen
- ThreadsDev | PraiseCafe
Top
#240835 - 12/28/10 08:14 PM Re: "Remember Me" problem in Internet Explorer? [Re: Rick]
VaGunTrader Offline
journeyman
Registered: 09/02/10
Posts: 86
Originally Posted By: Rick
vaguntrader, I did put in the change on your site. Let me know if IE8 users are still having the login issues.


well, i just logged in using IE grin
Top
#240837 - 12/29/10 03:16 AM Re: "Remember Me" problem in Internet Explorer? [Re: AllenAyres]
Rick Offline
Post-a-holic
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
I'm testing it now. The current theory is that IE8 is forcing the domain to be passed along with the cookie. What I'm testing on a few sites is modifying libs/html.inc.php

Around line 771 you'll see this:

Code:

setcookie("$name","$value",$time,$cookiepath);



You can try changing that to the following (using your actual domain name)

Code:

setcookie("$name","$value",$time,$cookiepath,".yourdomain.com");

Top
#240945 - 01/06/11 12:54 PM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
Christi Offline
stranger
Registered: 09/22/10
Posts: 15
Any luck with the above change? I'm too much of a newbie to try it without someone telling me it works.

But we are still having the problem with IE8 and people keep calling me and asking me what I intend to do about it. (I know, end of the world!)

Thanks.
Top
#242062 - 03/04/11 10:43 AM Re: "Remember Me" problem in Internet Explorer? [Re: Rick]
AllenAyres Offline

Registered: 12/29/03
Posts: 1995
Loc: Texas
Originally Posted By: Rick
I'm testing it now. The current theory is that IE8 is forcing the domain to be passed along with the cookie. What I'm testing on a few sites is modifying libs/html.inc.php

Around line 771 you'll see this:

Code:

setcookie("$name","$value",$time,$cookiepath);



You can try changing that to the following (using your actual domain name)

Code:

setcookie("$name","$value",$time,$cookiepath,".yourdomain.com");



Thank you - now I can't log out to try and see if it works smile

Clearing cookies with the mycookies tool doesn't quite do it.


Edited by AllenAyres (03/04/11 10:44 AM)
_________________________
- Allen
- ThreadsDev | PraiseCafe
Top
#242063 - 03/04/11 10:49 AM Re: "Remember Me" problem in Internet Explorer? [Re: Christi]
AllenAyres Offline

Registered: 12/29/03
Posts: 1995
Loc: Texas
I used it on another forum where I wasn't already logged in yet. It took 2 attempts at logging in before it 'stuck'.
_________________________
- Allen
- ThreadsDev | PraiseCafe
Top
Page 1 of 2 1 2 >



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Temporary Password email not being received
by
05/24/12 10:02 PM
Ability to "like" individual posts (not Facebook "likes)
by doug
05/23/12 09:03 AM
Island Permissions
by ThreadsUser
05/22/12 03:03 PM
streaming video
by prkrgrp
05/20/12 07:02 PM
New Posts Corrupted? Can someone help?
by PianoWorld
05/19/12 09:41 AM
Forum Stats
10492 Members
36 Forums
33842 Topics
181709 Posts

Max Online: 978 @ 06/24/07 11:19 PM
Random Image