diff options
author | Kevin Israel <pleasestand@live.com> | 2018-07-26 01:36:19 -0400 |
---|---|---|
committer | Kevin Israel <pleasestand@live.com> | 2018-07-26 01:59:44 -0400 |
commit | 86c6b814351314e8e3eb87c09f3f044c9a1b2925 (patch) | |
tree | 9d25b1be21c10022a97b1e2a95737581d9137351 /languages/i18n/en.json | |
parent | 9f32a4dc89ec5788987e1378b05f156b7d666db3 (diff) | |
download | mediawikicore-86c6b814351314e8e3eb87c09f3f044c9a1b2925.tar.gz mediawikicore-86c6b814351314e8e3eb87c09f3f044c9a1b2925.zip |
INSTALL: Don't warn against using PHP "as a CGI plugin"
This note is very old; it was added in r2832 (635388356be70130) and
r3285 (7ab7a50cf928861f). Modern versions of MediaWiki support CGI and
FastCGI installations nearly as well as mod_php installations. In fact,
Wikimedia currently uses HHVM's "fastcgi" server type, and intends to
use php-fpm with PHP 7 (see migration plan in T176370).
For a basic MediaWiki installation using the web installer, the only
difference I know of is the default URLs: /w/index.php?title=$1 for CGI,
as opposed to /w/index.php/$1 for mod_php. This issue is easy to fix by
changing $wgArticlePath, if the web server sets REQUEST_URI. Admins who
want to use short URLs (e.g. /wiki/$1) have to do this anyway.
Also, in img_auth.php and the "img-auth-nopathinfo" message, don't imply
that CGI and FastCGI server configurations generally can't provide path
information or support MediaWiki features that need it.
Change-Id: I89212e9d51f950a58f911083b9e109b69cd4e060
Diffstat (limited to 'languages/i18n/en.json')
-rw-r--r-- | languages/i18n/en.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages/i18n/en.json b/languages/i18n/en.json index d350e3fdd0e3..3d58927dd896 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.", |