Last modified: 2013-02-07 03:25:11 UTC
Hi, when I click on the WYSIWYG button on /w/VisualEditor:Sandbox (existsting page), I only get an error: {"error":{"code":"parsoidserver","info":"Error contacting the Parsoid server"}} My config is as following: require_once("$IP/extensions/VisualEditor/VisualEditor.php"); define( 'NS_VISUALEDITOR', 2500 ); define( 'NS_VISUALEDITOR_TALK', 2501 ); $wgExtraNamespaces[NS_VISUALEDITOR] = 'VisualEditor'; $wgExtraNamespaces[NS_VISUALEDITOR_TALK] = 'VisualEditor_talk'; $wgVisualEditorNamespaces = array( NS_MAIN ); $wgVisualEditorNamespaces = array(); $wgVisualEditorNamespaces[] = NS_VISUALEDITOR; $wgDefaultUserOptions['visualeditor-enable'] = 1; $wgHiddenPrefs[] = 'visualeditor-enable'; $wgVisualEditorParsoidURL = 'http://parsoid.wmflabs.org/'; I installed the current git masters from mediawiki and visualeditor as of today (24 Jan 2013).
http://lists.wikimedia.org/pipermail/wikitext-l/2013-January/000750.html Solved by setting $wgGroupPermissions['*']['read'] from FALSE to TRUE. I hope there will be the possibility to have it FALSE in the future :)
*** This bug has been marked as a duplicate of bug 44483 ***