| :: |
| Author |
Message |
macnack PR0

Joined: 20 Jun 2006 Posts: 97
|
Posted: Sat Jul 15, 2006 5:04 pm Post subject: login failed with firefox? |
|
|
Hello at all
Some user of my site have login problems with firefox.
They can login with IE.
I test it but I´ve no problems to login/logout or register with firefox.
what´s going on there? |
_________________ macnack |
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
macnack PR0

Joined: 20 Jun 2006 Posts: 97
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
macnack PR0

Joined: 20 Jun 2006 Posts: 97
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
macnack PR0

Joined: 20 Jun 2006 Posts: 97
|
Posted: Sat Jul 15, 2006 7:14 pm Post subject: Re: login failed with firefox? |
|
|
I talk abouth http://www.detektoreninfo.de with forum in subdomain and this post from you | dcz wrote: | open :
| Code: |
includes/page_header.php |
The mxBB one
Find :
| Code: | //
// Generate logged in/logged out status
//
if ( $userdata['session_logged_in'] )
{
$u_login_logout = 'login.'.$phpEx.'?logout=true&sid=' . $userdata['session_id'];
$l_login_logout = $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]';
}
else
{
$u_login_logout = 'login.'.$phpEx;
$l_login_logout = $lang['Login'];
} |
This is wher everything is done.
So I think the better fix right now would be to use the phpBB login.php instead, so that the link will be usable in both cases (log in and out) even if your user log-in from the portal will be thus redirected to the forum after they logged in.
So change it to :
| Code: |
//
// Generate logged in/logged out status
//
if ( $userdata['session_logged_in'] )
{
$u_login_logout = PHPBB_URL . 'login.'.$phpEx.'?logout=true&sid=' . $userdata['session_id'];
$l_login_logout = $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]';
}
else
{
$u_login_logout = PHPBB_URL . 'login.'.$phpEx;
$l_login_logout = $lang['Login'];
} |
Note, you might prefer no to use the first PHPBB_URL if the log out feature is working as is, then it will also work without the PHPBB_URL path
++ |
|
_________________ macnack |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
macnack PR0

Joined: 20 Jun 2006 Posts: 97
|
Posted: Sat Jul 15, 2006 8:52 pm Post subject: Re: login failed with firefox? |
|
|
I have no problems with login with IE or Firefox on both logins (domain and subdomain).
But some of the users told me they can´t login with firefox since my site was hacked.
After hacking attack I update phpbb , include mod_rewrite and change subdomain. |
_________________ macnack |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
Posted: Sat Jul 15, 2006 10:13 pm Post subject: Re: login failed with firefox? |
|
|
never trust but what you can reproduce
It could be so many reason not linked to any coding you cannot imagine, outdated (a lot) browser, browser security settings, cookie problems on unmaintained computers, sessions running out etc ...
I'd only car about user reporting such problems like every time they log in or at least the vast majority of times, and I'd ask them to update their browser just in case.
Because it's as well possible one does it alone, you know.
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
|
|