How to Enable Advance Editor Toolbar in Mediawiki?
by Dinesh[ Edit ] 2014-07-03 10:44:37
Do you want to enable advance editor toolbar in Mediawiki? just follow the given steps to enable it. By default Mediawiki toolbar is in a non advance mode.
1. Create a new file "localsetting.php" add copy the following code to that file.
#Enable advanced editor
require_once("$IP/extensions/WikiEditor/WikiEditor.php");
$wgDefaultUserOptions['usebetatoolbar'] = 1;
$wgDefaultUserOptions['usebetatoolbar-cgd'] = 1;
$wgDefaultUserOptions['wikieditor-preview'] = 1;
2. Move or copy "localsetting.php" file to your server.
3. Run the Mediawiki and advance editor toolbar will be available for edit the page..