Hello, I have reinstalled MediaWiki recently since I wanted to update from 1.25.3 to 1.26.0. I had VisualEditor installed and working properly on my previous install of MediaWiki, but after updating (read: Full re-install of MediaWiki) it does not seem to work anymore.
When I click on Edit the VisualEditor loading bar appears but at around 25% it stops and gives me the following error:
"Error loading data from server: (curl error: 7) Couldn't connect to server: parsoidserver-http-error: (curl error: 7) Couldn't connect to server. Would you like to retry?"
I updated both the VisualEditor extension and did a full reinstall of Parsoid (to my knowledge) after VisualEditor stopped working but I still get the same error.
In my LocalSettings.php I have the following:
require_once "$IP/extensions/VisualEditor/VisualEditor.php";
// Enable by default for everybody
$wgDefaultUserOptions['visualeditor-enable'] = 1;
// Don't allow users to disable it
$wgHiddenPrefs[] = 'visualeditor-enable';
// OPTIONAL: Enable VisualEditor's experimental code features
$wgDefaultUserOptions['visualeditor-enable-experimental'] = 1;
In my /etc/mediawiki/parsoid/settings.js I have the following:
parsoidConfig.setMwApi({ prefix: 'localhost', uri: 'http://mydomain.com/w/api.php', domain: 'mydomain.com'});
My log located at /var/log/parsoid/parsoid.log does not update when this error is created.
I run Ubuntu 14.04 and have Node.js installed.