Session ID abstellen

Please post general support questions for the phpBB3 core system on phpBB.com!
Bitte allgemeine Supportanfragen zu phpBB3 auf phpBB.de stellen!
Forum rules
Please post general support questions for the phpBB3 core system on phpBB.com!
Bitte allgemeine Supportanfragen zu phpBB3 auf phpBB.de stellen!
Locked
User avatar

Topic author
ALLSTAR-STYLEZ
Active Member
Posts: 16
Joined: 14. June 2009 20:35
phpBB.de User: ALLSTAR-STYLEZ
phpBB.com User: ALLSTAR-STYLEZ

Session ID abstellen

Post by ALLSTAR-STYLEZ »

Hallo, ich leite das Forum www.gfx-united.org und seitdem ich eine richtige Domian habe, ist am ende disse SID, jetzt zu meiner Frage kann man das abstellen wenn ja wo?? Würde mich auf eine Lösung freuen die geht :)
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Session ID abstellen

Post by Kevin »

Hast du die Cookie Domain nach dem Umzug schon auf die neue Adresse angepasst?

Verschoben nach "General phpBB3 Support"
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!
User avatar

PeterS
Former Team Member
Posts: 246
Joined: 15. January 2008 08:41
phpBB.de User: PeterS
phpBB.com User: PeterS

Re: Session ID abstellen

Post by PeterS »

Hallo,

um die SID wegzubekommen müsstest du einen SEO Mod einbauen.

Es gibt 2 die ich kenne http://www.phpbb-seo.de von Tobi oder http://www.phpbb-seo.com von DCZ

Peter
User avatar

scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Re: Session ID abstellen

Post by scwfan06 »

Moin,
@Peter:
Nicht unbedingt. Das geht auch so.

(siehe: hier)

@ALLSTAR-STYLEZ:
Öffne: /includes/functions.php
Suche:

Code: Select all

    // Assign sid if session id is not specified
    if ($session_id === false)
    {
        $session_id = $_SID;
    }  
Danach einfügen:

Code: Select all

    // Begin SEO phpBB
    global $user;
    if ($user->data['user_id'] == ANONYMOUS OR $user->data['is_bot'] )
    {
        $session_id = false;
    }
    // End SEO phpBB     
Last edited by scwfan06 on 15. June 2009 18:12, edited 1 time in total.
User avatar

Topic author
ALLSTAR-STYLEZ
Active Member
Posts: 16
Joined: 14. June 2009 20:35
phpBB.de User: ALLSTAR-STYLEZ
phpBB.com User: ALLSTAR-STYLEZ

Re: Session ID abstellen

Post by ALLSTAR-STYLEZ »

scwfan06 wrote:Moin,
@Peter:
Nicht unbedingt. Das geht auch so.

(siehe: hier)

@ALLSTAR-STYLEZ:
Öffne: /includes/functions.php
Suche:

Code: Select all

    // Assign sid if session id is not specified
    if ($session_id === false)
    {
        $session_id = $_SID;
    }  
Ersetze mit:

Code: Select all

    // Begin SEO phpBB
    global $user;
    if ($user->data['user_id'] == ANONYMOUS OR $user->data['is_bot'] )
    {
        $session_id = false;
    }
    // End SEO phpBB     

Hallo wenn ich das so mache kann ich und kein andere mehr sich einloggen warum?
User avatar

scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Re: Session ID abstellen

Post by scwfan06 »

OMG
Du hast recht!!!
Sry du musst den zweiten Code natürlich danach einfügen statt ihn zu ersetzen

hab den beitrag korrigiert
User avatar

PeterS
Former Team Member
Posts: 246
Joined: 15. January 2008 08:41
phpBB.de User: PeterS
phpBB.com User: PeterS

Re: Session ID abstellen

Post by PeterS »

sorry da musst du Tobi fragen, aber hast du auch den Satz am Ende gesehen, wenn es denn funktioniert nur für Gäste, für angemeldete Benutzer bleibt die SID erhalten ;)

Peter
User avatar

Topic author
ALLSTAR-STYLEZ
Active Member
Posts: 16
Joined: 14. June 2009 20:35
phpBB.de User: ALLSTAR-STYLEZ
phpBB.com User: ALLSTAR-STYLEZ

Re: Session ID abstellen

Post by ALLSTAR-STYLEZ »

Also wenn ich das so einbaue ist das nur für Gäste? Hmm ist doof wenn wir uns links schicken wollen und am ende so Oschilink ist ne danke da muss ne Lösung her. ^^
User avatar

scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Re: Session ID abstellen

Post by scwfan06 »

Das ist allerdings nicht machbar, denn die SID wird benötigt, damit man eingeloggt bleibt
User avatar

Topic author
ALLSTAR-STYLEZ
Active Member
Posts: 16
Joined: 14. June 2009 20:35
phpBB.de User: ALLSTAR-STYLEZ
phpBB.com User: ALLSTAR-STYLEZ

Re: Session ID abstellen

Post by ALLSTAR-STYLEZ »

Ich dachte das ist ein Cookie ersatz und da viele Cookies nutzen braucht man kein SID oder irre ich mich da?
User avatar

scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Re: Session ID abstellen

Post by scwfan06 »

Ne, die SID ist ja der Cookie ;)
User avatar

Topic author
ALLSTAR-STYLEZ
Active Member
Posts: 16
Joined: 14. June 2009 20:35
phpBB.de User: ALLSTAR-STYLEZ
phpBB.com User: ALLSTAR-STYLEZ

Re: Session ID abstellen

Post by ALLSTAR-STYLEZ »

habe das so gemacht, eine frage jett merke ich das man sich nicht reggen kann, kann es daran liegen?
also das ich diesenseo mod eingebaut habe?
Locked

Return to “General phpBB3 Support”