The install script for MediaWiki 1.9.3 points to
/wikiconfig/index.php
instead of just
/config/index.php
The tr.gz file on Sourceforce has a file system layout with the older /config and not /wikiconfig directories.
This causes it to fail unless you manually type in http://<site>/config/index.php
Jeff
It's in svn too. $path was introduced on 15623, by greg. http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/templates/No...
What is your $_SERVER['SCRIPT_NAME'] ?
See if this change on /includes/templates/NoLocalSettings.php (line 12) fixes it. -$path = preg_replace('/index.php/', '', $_SERVER['SCRIPT_NAME']); +$path = preg_replace('/index.php/', '/', $_SERVER['SCRIPT_NAME']);
wikitech-l@lists.wikimedia.org