Здравствуйте.
Прошу Вас подсказать решение проблемы.
На локальный сервер (OpenServer) установлен шаблон для Joomla 3.7.5. Работает все нормально.
При попытке обновления Joomla до версии 3.8, выдается ошибка:
Unknown SSL protocol error in connection to s3-us-west-2.amazonaws.com:443
Прикрепляю логи:
1. Лог Apache отладка
2. Лог PHP отладка
3. Ссылка из лога PHP отладка на строку кода
Вот лог Apache отладка
[Fri Sep 29 16:16:40.058384 2017] [ssl:warn] [pid 9056:tid 444] AH01909: mytestsite.ru:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:40.059385 2017] [ssl:warn] [pid 9056:tid 444] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:40.512665 2017] [ssl:warn] [pid 9056:tid 444] AH01909: mytestsite.ru:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:40.513666 2017] [ssl:warn] [pid 9056:tid 444] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:40.547706 2017] [mpm_winnt:notice] [pid 9056:tid 444] AH00455: Apache/2.4.27 (Win64) OpenSSL/1.0.2l configured -- resuming normal operations
[Fri Sep 29 16:16:40.547706 2017] [mpm_winnt:notice] [pid 9056:tid 444] AH00456: Apache Lounge VC11 Server built: Jul 10 2017 14:15:02
[Fri Sep 29 16:16:40.547706 2017] [core:notice] [pid 9056:tid 444] AH00094: Command line: 'C:\\ospanel\\modules\\http\\Apache-2.4-x64\\bin\\httpd.exe -d C:/OSPanel/modules/http/Apache-2.4-x64 -f c:\\ospanel\\modules\\http\\Apache-2.4-x64\\conf\\httpd.conf'
[Fri Sep 29 16:16:40.557731 2017] [mpm_winnt:notice] [pid 9056:tid 444] AH00418: Parent: Created child process 9252
[Fri Sep 29 16:16:41.104608 2017] [ssl:warn] [pid 9252:tid 500] AH01909: mytestsite.ru:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:41.105608 2017] [ssl:warn] [pid 9252:tid 500] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:41.328267 2017] [ssl:warn] [pid 9252:tid 500] AH01909: mytestsite.ru:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:41.329269 2017] [ssl:warn] [pid 9252:tid 500] AH01909: default:443:0 server certificate does NOT include an ID which matches the server name
[Fri Sep 29 16:16:41.363541 2017] [mpm_winnt:notice] [pid 9252:tid 500] AH00354: Child: Starting 32 worker threads.
Вот лог PHP отладка
[29-Sep-2017 09:18:42 Europe/Moscow] PHP Warning: get_headers(): SSL: пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ.
in C:\OSPanel\domains\mytestsite.ru\administrator\components\com_joomlaupdate\models\default.php on line 254
[29-Sep-2017 09:18:42 Europe/Moscow] PHP Warning: get_headers(
https://downloads.joomla.org/cms/joomla3/3-8-0/Joomla_3.8.0-StableВот код со строкой 254
/**
* Downloads the update package to the site.
*
* @return bool|string False on failure, basename of the file in any other case.
*
* @since 2.5.4
*/
public function download()
{
$updateInfo = $this->getUpdateInformation();
$packageURL = $updateInfo['object']->downloadurl->_data;
254 $headers = get_headers($packageURL, 1);
// Follow the Location headers until the actual download URL is known
while (isset($headers['Location']))
{
$packageURL = $headers['Location'];
$headers = get_headers($packageURL, 1);
}