Jump to content

Manual:$wgCookiePrefix

From mediawiki.org
Cookies: $wgCookiePrefix
Custom cookie prefix.
Introduced in version:1.13.0 (r37893)
Removed in version:Still in use
Allowed values:(string) or false
Default value:false

Details

[edit]

Prefix for cookies and similar browser data (including localStorage). Set it to use a custom one. Setting it to false sets the default of using the database name. Code should ensure browser saved data is prefixed with this value (this is currently done automatically only when WebResponse->setcookie is used without a custom prefix).

The default value is determined in Setup.php :

if ( $wgCookiePrefix === false ) {
        if ( $wgSharedDB && $wgSharedPrefix && in_array( 'user', $wgSharedTables ) ) {
                $wgCookiePrefix = $wgSharedDB . '_' . $wgSharedPrefix;
        } elseif ( $wgSharedDB && in_array( 'user', $wgSharedTables ) ) {
                $wgCookiePrefix = $wgSharedDB;
        } elseif ( $wgDBprefix ) {
                $wgCookiePrefix = $wgDBname . '_' . $wgDBprefix;
        } else {
                $wgCookiePrefix = $wgDBname;
        }
}

See also

[edit]
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy