Last modified: 2006-07-15 21:16:25 UTC
"config/index.php" includes "includes/Setup.php" which calls wfProfileIn(). However, this function has not been included before the call, thus causing PHP to die before it can install anything. Suggested workaround (not tested for side-effects): Index: config/index.php =================================================================== --- config/index.php (revision 15609) +++ config/index.php (working copy) @@ -586,7 +586,7 @@ $wgDBtype = $conf->DBtype; $wgDBadminuser = "root"; $wgDBadminpassword = $conf->RootPW; - + ## Mysql specific: $wgDBprefix = $conf->DBprefix; @@ -597,6 +597,7 @@ $wgCommandLineMode = true; $wgUseDatabaseMessages = false; /* FIXME: For database failure */ + require_once( "includes/ProfilerStub.php" ); require_once( "includes/Setup.php" ); chdir( "config" );