Thomas Dalton wrote:
$wgScript = "$wgScriptPath/index.php"; $wgRedirectScript = "$wgScriptPath/redirect.php";
## If using PHP as a CGI module, use the ugly URLs $wgScriptPath = "/wikific";
You're using $wgScriptPath before defining it. That can't help matters...
I think that is why it is using "wiki" per some default defined elsewhere. Not what you want.
The $wgScript line must come *after* the $wgScriptPath line in LocalSettings.php.
Make it so.
I keep $wgScriptPath line right above $wgScript line to keep this obvious, eg:
$wgScriptPath = "...."; $wgScript = "....";
And be sure nothing else that references $wgScriptPath is above it.