Ошибка загрузки данных с сервера: apierror-visualeditor-docserver-http-error: (ошибка скручивания: 7) - PullRequest
0 голосов
/ 24 июня 2019

Всякий раз, когда я нажимаю «Изменить» на моем сайте википедии, эта ошибка всегда отображается, и я не могу перейти к визуальному редактору, я подозреваю, что мой путь неверен в некоторых URL.Вот моя конфигурация parsoid в LocalSettings.php

$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
...