Thursday, January 20, 2011

wiki Installation

Error message:
Warning: Parameter 2 to Parser::parse() expected to be a reference, value given
in /home/site/gzcore/wiki/includes/StubObject.php on line 58
Fatal error: Call to a member function getCacheTime() on a non-object in
/home/site/gzcore/wiki/includes/Article.php on line 3387

solution
includes/Setup.php : 244

- $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], array(
$wgParserConf ) );
+ $wgParser = new $wgParserConf['class'] ($wgParserConf);

No comments:

Post a Comment