Ergebnis 1 bis 10 von 96

Thema: Vms-suee 3.0

Baum-Darstellung

Vorheriger Beitrag Vorheriger Beitrag   Nächster Beitrag Nächster Beitrag
  1. #11
    Erfahrener Benutzer
    Registriert seit
    22.06.2009
    Beiträge
    510

    AW: Vms-suee 2.0

    Zitat Zitat von marcaust Beitrag anzeigen
    Setzt das Script auch die neuen SameSite Cookies?
    nein noch nicht.

    es sollte allerdings relativ einfach zu nutzen sein:

    PHP example for SameSite=None; Secure

    As of PHP 7.3.0 the setcookie() method supports the SameSite attribute in its options and will accept None as a valid value.
    PHP-Code:
    // Set a same-site cookie for first-party contexts
    setcookie('cookie1''value1', ['samesite' => 'Lax']);
    // Set a cross-site cookie for third-party contexts
    setcookie('cookie2''value2', ['samesite' => 'None''secure' => true]); 
    For earlier versions of PHP, you can also set the header() directly:
    PHP-Code:
    // Set a same-site cookie for first-party contexts
    header('Set-Cookie: cookie1=value1; SameSite=Lax'false);
    // Set a cross-site cookie for third-party contexts
    header('Set-Cookie: cookie2=value2; SameSite=None; Secure'false); 
    Quelle: https://github.com/GoogleChromeLabs/.../master/php.md
    Geändert von isaack (24.08.2020 um 12:11 Uhr)

Ähnliche Themen

  1. VMS-SUEE <> VMS 2.5 Frage
    Von ceopari im Forum [HD] Programmieren
    Antworten: 8
    Letzter Beitrag: 28.09.2015, 02:36

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •