Actions

Translations

ComfortUpdate/29/ja: Difference between revisions

From LimeSurvey Manual

(Created page with "==ComfortUpdateサーバーが応答しない - ComfortUpdateサーバーに接続できない== 2022年12月以降、更新後のサーバーへの接続の既定値はSSLの...")
 
No edit summary
 
Line 1: Line 1:
==ComfortUpdateサーバーが応答しない - ComfortUpdateサーバーに接続できない==
==サーバーの応答なし - ComfortUpdateサーバーが応答しない==
2022年12月以降、更新後のサーバーへの接続の既定値はSSLのみを使用するよう変更されました。
2022年12月以降、更新後のサーバーへの接続の既定値はSSLのみを使用するよう変更されました。
これにより、サーバー上のOpenSSL PHPライブラリーを適切に設定・有効化し、サーバーが外部(comfortupdate.limesurvey.org)とHTTP SSL接続ができるようにする必要があります。
これにより、サーバー上のOpenSSL PHPライブラリーを適切に設定・有効化し、サーバーが外部(comfortupdate.limesurvey.org)とHTTP SSL接続ができるようにする必要があります。

Latest revision as of 10:54, 2 December 2023

Message definition (ComfortUpdate)
==No server answer - The ComfortUpdate server is not responding ==
Starting December 2022 the connection default to our updated server was changed to only use SSL.
This requires that the OpenSSL PHP library on your server is properly configured and activated and that your server is allowed to connect by HTTP SSL connection to the outside (to our server comfortupdate.limesurvey.org).
If one of these requirements is not met, you will get this message.
A '''temporary''' workaround (which we don't recommend) is to disable this requirement in the /application/config/updater_version.php
by setting
<syntaxhighlight lang="php" enclose="pre">
$config['comfort_update_server_ssl'] = 0; 
</syntaxhighlight>

サーバーの応答なし - ComfortUpdateサーバーが応答しない

2022年12月以降、更新後のサーバーへの接続の既定値はSSLのみを使用するよう変更されました。 これにより、サーバー上のOpenSSL PHPライブラリーを適切に設定・有効化し、サーバーが外部(comfortupdate.limesurvey.org)とHTTP SSL接続ができるようにする必要があります。 これらの要件のいずれかが満たされない場合、このようなメッセージが表示されます。 暫定的な回避方法(非推奨)は、 /application/config/updater_version.phpでこの要件を以下のように無効にすることです。

$config['comfort_update_server_ssl'] = 0;