Return of the Wiki
#11
(22 Apr 12, 06:33PM)jamz Wrote:
(22 Apr 12, 04:16PM)tempest Wrote: It's most likely just some configuration setting. wgLoadScript maybe...
This one isn't in the LocalSettings.php file :/
Quote:...or wgScriptPath.
$wgScriptPath       = "";
...
$wgScriptPath        = '/';
It's unlikely to be this, since wgScriptPath is used all over LocalSettings.php, and most things are working.
See, there's the issue.
http://www.mediawiki.org/wiki/Manual:%24wgLoadScript Wrote:Defaults to "{$wgScriptPath}/load{$wgScriptExtension}".
So you currently get "//load.php?blah" in those URLs. In a default install of MediaWiki, this works fine, since $wgScriptPath is "/wiki" by default, so that would give you "/wiki/load.php?blah", which is fine. The obvious solution here is to add either
$wgLoadScript = "/load{$wgScriptExtension}"
or
$wgLoadScript = "{$wgScriptPath}load{$wgScriptExtension}"
to LocalSettings.php.

(22 Apr 12, 03:43PM)jamz Wrote: Makes sense, but then why would it be there at all?
Probably some old stuff used way back before the big crash.
Thanks given by:


Messages In This Thread
Return of the Wiki - by jamz - 18 Apr 12, 02:03PM
RE: Return of the Wiki - by paulmuaddibKA - 18 Apr 12, 03:24PM
RE: Return of the Wiki - by Ronald_Reagan - 21 Apr 12, 08:11PM
RE: Return of the Wiki - by Oracle - 21 Apr 12, 09:03PM
RE: Return of the Wiki - by VenteX - 21 Apr 12, 11:46PM
RE: Return of the Wiki - by jamz - 22 Apr 12, 08:33AM
RE: Return of the Wiki - by tempest - 22 Apr 12, 02:24PM
RE: Return of the Wiki - by jamz - 22 Apr 12, 03:43PM
RE: Return of the Wiki - by tempest - 22 Apr 12, 04:16PM
RE: Return of the Wiki - by jamz - 22 Apr 12, 06:33PM
RE: Return of the Wiki - by tempest - 22 Apr 12, 06:54PM
RE: Return of the Wiki - by jamz - 22 Apr 12, 08:35PM
RE: Return of the Wiki - by tempest - 22 Apr 12, 08:54PM
RE: Return of the Wiki - by tempest - 23 Apr 12, 05:37PM
RE: Return of the Wiki - by Ronald_Reagan - 22 Apr 12, 11:21PM
RE: Return of the Wiki - by tempest - 23 Apr 12, 12:01AM
RE: Return of the Wiki - by Ronald_Reagan - 23 Apr 12, 12:04AM
RE: Return of the Wiki - by tempest - 23 Apr 12, 12:19AM
RE: Return of the Wiki - by Ronald_Reagan - 23 Apr 12, 12:23AM
RE: Return of the Wiki - by JohnnyFivestar - 23 Apr 12, 08:44AM
RE: Return of the Wiki - by jamz - 23 Apr 12, 02:57PM
RE: Return of the Wiki - by jamz - 23 Apr 12, 10:10PM