22 Apr 12, 06:54PM
(22 Apr 12, 06:33PM)jamz Wrote:See, there's the issue.(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.It's unlikely to be this, since wgScriptPath is used all over LocalSettings.php, and most things are working.[SELECT ALL] Code:$wgScriptPath = "";
...
$wgScriptPath = '/';
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
[SELECT ALL] Code:
$wgLoadScript = "/load{$wgScriptExtension}"
[SELECT ALL] Code:
$wgLoadScript = "{$wgScriptPath}load{$wgScriptExtension}"
(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.