当我在wiki中编辑页面时,WikiEditor工具栏不会显示。
我使用的MediaWiki版本是版本1.23.2,我使用的是最新版本的WikiEditor。
这是我在LocalSettings.php
require_once "$IP/extensions/WikiEditor/WikiEditor.php";
# Enables use of WikiEditor by default but still allow users to disable it in preferences
$wgDefaultUserOptions['usebetatoolbar'] = 1;
$wgDefaultUserOptions['usebetatoolbar-cgd'] = 1;
# Displays the Preview and Changes tabs
$wgDefaultUserOptions['wikieditor-preview'] = 1;
# Displays the Publish and Cancel buttons on the top right side
$wgDefaultUserOptions['wikieditor-publish'] = 1;
我只是使用默认的矢量主题,我还没有改变任何东西。
答案 0 :(得分:0)
如果没有关于浏览器控制台或其他日志中显示内容的信息,则无法确定(请参阅debugging)。
但是,评论中提到DreamHost:它可能是由Web服务器引起的问题。一个经常导致问题的设置是允许的最大URL长度;尝试在LocalSettings.php
中设置$wgResourceLoaderMaxQueryLength = 512
或更低。