diff options
-rw-r--r-- | INSTALL | 3 | ||||
-rw-r--r-- | img_auth.php | 3 | ||||
-rw-r--r-- | languages/i18n/en.json | 2 |
3 files changed, 3 insertions, 5 deletions
@@ -17,9 +17,6 @@ Required software: MediaWiki is developed and tested mainly on Unix/Linux platforms, but should work on Windows as well. -If your PHP is configured as a CGI plug-in rather than an Apache module you may -experience problems, as this configuration is not well tested. - Support for rendering mathematical formulas requires installing the Math extension, see https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:Math diff --git a/img_auth.php b/img_auth.php index 205280908b70..ca69d31d53e8 100644 --- a/img_auth.php +++ b/img_auth.php @@ -17,7 +17,8 @@ * just that it was. If you want to change this, you can set $wgImgAuthDetails to 'true' * in localsettings.php and it will give the user the reason why access was denied. * - * Your server needs to support PATH_INFO; CGI-based configurations usually don't. + * Your server needs to support REQUEST_URI or PATH_INFO; CGI-based + * configurations sometimes don't. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/languages/i18n/en.json b/languages/i18n/en.json index 4e9681a50b27..221019524c45 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -1783,7 +1783,7 @@ "uploadstash-zero-length": "File is zero length.", "invalid-chunk-offset": "Invalid chunk offset", "img-auth-accessdenied": "Access denied", - "img-auth-nopathinfo": "Missing PATH_INFO.\nYour server is not set up to pass this information.\nIt may be CGI-based and cannot support img_auth.\nSee https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", + "img-auth-nopathinfo": "Missing path information.\nYour server must be set up to pass the REQUEST_URI and/or PATH_INFO variables.\nIf it is, try enabling $wgUsePathInfo.\nSee https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Image_Authorization.", "img-auth-notindir": "Requested path is not in the configured upload directory.", "img-auth-badtitle": "Unable to construct a valid title from \"$1\".", "img-auth-nologinnWL": "You are not logged in and \"$1\" is not in the whitelist.", |