phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
login failed with firefox?

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB Forum
::  
Author Message
macnack
PR0
PR0


Joined: 20 Jun 2006
Posts: 97

login failed with firefox?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
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

login failed with firefox?Posted: Sat Jul 15, 2006 5:31 pm    Post subject: Re: login failed with firefox?

As you can see, the related topic links are relevant Wink

http://boards.phpbb-seo.com/mxbb-portal/discussions-vt48.html

I am not sure it's the same issue, but give a try following the link who knows Wink

++

_________________
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
Visit poster's website
macnack
PR0
PR0


Joined: 20 Jun 2006
Posts: 97

login failed with firefox?Posted: Sat Jul 15, 2006 6:27 pm    Post subject: Re: login failed with firefox?

If I edit the portal pageheader.php with PHPBB_URL logout will redirect me to http://www.example.de/http://www.forum.domain.de/login.php?logout=true

_________________
macnack
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

login failed with firefox?Posted: Sat Jul 15, 2006 6:31 pm    Post subject: Re: login failed with firefox?

And ? Very Happy

_________________
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
Visit poster's website
macnack
PR0
PR0


Joined: 20 Jun 2006
Posts: 97

login failed with firefox?Posted: Sat Jul 15, 2006 6:46 pm    Post subject: Re: login failed with firefox?

dcz wrote:
And ? Very Happy

And it will give me a 404 error Sad

Wasn´t it better it redirect me to http://www.forum.domain.de/login.php?logout=true
instead of
http://www.example.de/http://www.forum.domain.de/login.php?logout=true

_________________
macnack
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

login failed with firefox?Posted: Sat Jul 15, 2006 6:56 pm    Post subject: Re: login failed with firefox?

Which site are you talking about, try to be precise, I am not sure to understand here.

++

_________________
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
Visit poster's website
macnack
PR0
PR0


Joined: 20 Jun 2006
Posts: 97

login failed with firefox?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 Wink

++

_________________
macnack
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

login failed with firefox?Posted: Sat Jul 15, 2006 7:22 pm    Post subject: Re: login failed with firefox?

Well actually I was giving this code to peter77 to see if this could help, because, it not an issue I ever experienced.

Then, for sure, with phpBB being in a different domain, then, it's less obvious.

Was it working before ?

And before what ?

++

_________________
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
Visit poster's website
macnack
PR0
PR0


Joined: 20 Jun 2006
Posts: 97

login failed with firefox?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
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15242

login failed with firefox?Posted: Sat Jul 15, 2006 10:13 pm    Post subject: Re: login failed with firefox?

never trust but what you can reproduce Wink

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
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB Forum
Page 1 of 1

Navigation Similar Topics

Jump to: