From 2c6efb83d88e069ff672aad676cf196f78ec63ad Mon Sep 17 00:00:00 2001 From: conradschulz Date: Mon, 14 Mar 2022 14:16:25 +0100 Subject: [PATCH] fix save error in visualeditor --- example.LocalSettings.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/example.LocalSettings.php b/example.LocalSettings.php index f646b1a..dc76a88 100644 --- a/example.LocalSettings.php +++ b/example.LocalSettings.php @@ -36,7 +36,14 @@ $wgServer = "https://wiki.rd13server.de"; #$wgServer = "http://192.168.178.5:8090"; # May cause Visual editor error Curl 7 in this case change setting -$wgForceHTTPS = false; +$wgForceHTTPS = true; + +# Suppress Errors because of this issu: https://phabricator.wikimedia.org/T264735 +# After update to MW >=1.38 erneut löschen und Prüfen ob das Problem behoben wurde. +# Dies unterdruckt nur das Problem: CURLPIPE_HTTP1 is no longer supported +# This is related to: +# Warning: curl_multi_setopt(): CURLPIPE_HTTP1 is no longer supported in /var/www/html/includes/libs/http/MultiHttpClient.php on line 455
+error_reporting(0); # Fix to solve net::ERR_HTTP2_PROTOCOL_ERROR 200 in Browsers other than Firefox in Desktops $wgDisableOutputCompression = true;