Manual:$wgSessionInsecureSecrets/pl
Ta funkcja została całkowicie usunięta z jądra MediaWiki w wersji 1.43.0. |
Bezpieczeństwo: $wgSessionInsecureSecrets | |
---|---|
Allows MediaWiki to work at the cost of storing sensitive session data insecurely. |
|
Wprowadzono w wersji: | 1.27.0 (Gerrit change 285438; git #0b8b539a) |
Usunięto w wersji: | 1.43.0 (Gerrit change 1027531; git #e4127e58) |
Dozwolone wartości: | (boolean) |
Domyślna wartość: | false |
Inne ustawienia: Alfabetycznie | Według funkcji |
Szczegóły
$wgSessionInsecureSecrets
is NOT recommended! Note that it is the best solution to install the OpenSSL extension.MediaWiki will not work out of the box if the PHP openssl extension is not available on the server. If for some reason you cannot install one of these extensions, you can set $wgSessionInsecureSecrets
to "true" to make MediaWiki work again. This comes at the cost of storing sensitive session data insecurely.
If one of the two extensions is installed, $wgSessionInsecureSecrets
is not set, but none of the cipher algorithms, which MediaWiki supports, is available in that extension, you will get this error message:
Warning: openssl_encrypt(): Unknown cipher algorithm in /wiki/includes/session/Session.php on line 424
This can be fixed like so: In order for OpenSSL to be able to work correctly, you will need one of these cipher algorithm: aes-256-ctr or aes-256-cbc. If you are using mcrypt, it needs to support the rijndael-128 algorithm and either ctr or cbc mode.