我正在尝试在我的 wiki 页面上设置 Parsoid 扩展和可视化编辑器。它不在我的本地主机上。使用可视化编辑器的用户必须登录,但无需登录即可阅读 wiki 的内容。
地址是http://contractor.bg/wikimedia/index.php?title=Main_Page
我下载了 Parsoid 扩展(扩展文件中没有settings.js
文件,所以我根据示例创建它)。
我的设置是:
在LocalSettings.php
文件中:
require_once "$IP/extensions/VisualEditor/VisualEditor.php";
$wgDefaultUserOptions['visualeditor-enable'] = 1;
$wgHiddenPrefs[] = 'visualeditor-enable';
wfLoadExtension( 'Parsoid' );
$wgVisualEditorParsoidURL = 'http://contractor.bg:2083';
$wgVisualEditorParsoidPrefix = 'wikimedia';
//$wgSessionsInObjectCache = true;
//$wgVisualEditorParsoidForwardCookies = true;
//$wgVisualEditorParsoidTimeout = 120;
我试图取消注释最后几行,但它仍然不起作用。
在 settings.js 文件中:
parsoidConfig.setMwApi( 'wikimedia', { uri: 'http://contractor.bg/wikimedia/api.php' } ); // I also tried setting an interwiki value, I am not quite sure what is the difference)
parsoidConfig.serverPort = 2083;
parsoidConfig.serverInterface = 'contractor.bg';
parsoidConfig.strictSSL = false;
parsoidConfig.allowCORS = 'contractor.bg/wikimedia'; // I also tried only contractor.bg)
在我尝试使用可视化编辑器编辑页面时,我收到一个错误:
Error loading data from server: 401: parsoidserver-http: HTTP 401. Would you like to retry?