Several extensions use Parser::disableCache() :
- https://www.mediawiki.org/wiki/Extension:MyVariables
- https://www.mediawiki.org/wiki/Extension:UrlGetParameters
It prevents the page from displaying!
Call to undefined method Parser::disableCache()
Problem solved by replacing the call to disableCache() with:
//$parser->disableCache(); $parser->getOutput()->updateCacheExpiry(0);