3

每当我在我的 mediawiki 网站上单击“编辑”时,总是会显示该错误,并且我无法继续使用可视化编辑器,我怀疑我的路径在某些 URL 中是错误的。这是我在 LocalSettings.php 中的 parsoid 配置

$wgVirtualRestConfig['modules']['parsoid'] = array(
        // URL to the Parsoid instance
        // Use port 8142 if you use the Debian package
        'url' => 'http://localhost:8000',
        // Parsoid "domain", see below (optional)
        'domain' => 'localhost',
        // Parsoid "prefix", see below (optional)
        'prefix' => 'localhost'
);

这是我的 config.yaml

  mwApis:
    - # This is the only required parameter,
      # the URL of you MediaWiki API endpoint.
      uri: 'http://192.168.195.166/mediawiki/w/api.php'
      # The "domain" is used for communication with Visual Editor
      # and RESTBase.  It defaults to the hostname portion of
      # the `uri` property below, but you can manually set it
      # to an arbitrary string.
      domain: 'localhost'  # optional
4

1 回答 1

-1

您只需要从路径中删除“w”,并始终保持 parsoid api 的端口打开(node bin / serve.js)

mwApis: - # 这是唯一需要的参数,# MediaWiki API 端点的 URL。uri: ' http://192.168.195.166/mediawiki/api.php ' # “域”用于与 Visual Editor # 和 RESTBase 进行通信。它默认为 #uri下面属性的主机名部分,但您可以手动将其设置为 # 任意字符串。domain: 'localhost' # 可选

于 2020-04-27T21:01:31.880 回答