MWException类型的致命异常

时间:2013-07-24 02:37:55

标签: mediawiki mediawiki-extensions

我最近在Debian 7 System上的localhost中安装了MediaWiki。但是在安装之后,我得到了异常Fatal exception of type MWException。我查看了所有报告的错误,但它们不适用于我。

PHP 5.4.4 phpmyaddmin ....

2 个答案:

答案 0 :(得分:25)

如评论中所述,编辑您的LocalSettings.php文件并在最后添加此行:

$wgShowExceptionDetails = true;

尝试重新加载导致该错误的页面。你可能会看到所谓的回溯...这是我的例子:

#0 /Users/user/www/extensions/LocalisationUpdate/LocalisationUpdate.class.php(553): LocalisationUpdate::filename('it')
#1 /Users/user/www/extensions/LocalisationUpdate/LocalisationUpdate.class.php(36): LocalisationUpdate::readFile('it')
#2 [internal function]: LocalisationUpdate::onRecache(Object(LocalisationCache), 'it', Array)
#3 /Users/user/www/includes/Hooks.php(255): call_user_func_array('LocalisationUpd...', Array)
#4 /Users/user/www/includes/GlobalFunctions.php(3883): Hooks::run('LocalisationCac...', Array)
#5 /Users/user/www/includes/cache/LocalisationCache.php(796): wfRunHooks('LocalisationCac...', Array)
#6 /Users/user/www/includes/cache/LocalisationCache.php(426): LocalisationCache->recache('it')
#7 /Users/user/www/includes/cache/LocalisationCache.php(310): LocalisationCache->initLanguage('it')
#8 /Users/user/www/includes/cache/LocalisationCache.php(245): LocalisationCache->loadItem('it', 'fallback')
#9 /Users/user/www/languages/Language.php(3978): LocalisationCache->getItem('it', 'fallback')
#10 /Users/user/www/languages/Language.php(230): Language::getFallbacksFor('it')
#11 /Users/user/www/languages/Language.php(189): Language::newFromCode('it')
#12 /Users/user/www/includes/Setup.php(497): Language::factory('it')
#13 /Users/user/www/includes/WebStart.php(161): require_once('/Users/user/3d...')
#14 /Users/user/www/index.php(55): require('/Users/user/3d...')
#15 {main}

第一行是停止执行的行,导致异常。如果您能够识别问题(在我的情况下,它是LocalisationUpdate扩展名),它可以很容易修复。同样,在我的情况下,再次打开LocalSettings.php并注释掉或删除该行就足够了:

require_once( "$IP/extensions/LocalisationUpdate/LocalisationUpdate.php" );

答案 1 :(得分:2)

缓存可能存在问题,请尝试使用

$wgMainCacheType = CACHE_NONE;