Новости Joomla

Перевод и публикация интервью с Joomla евангелистом на греческом портале Joomla

Перевод и публикация интервью на греческом портале Joomla 🇬🇷

Утро, просматриваешь входящие письма и изучаешь новости и внезапно обнаруживаешь, что инициатива, которую ты начал, подхватывается другими людьми. 🎉

Недавно я взял интервью у Билла (Василиса) Коциаса - руководителя студии, читающего лекции в университете и популяризатора Joomla в Греции. Это интервью из журнала NorrNext, в оригинале на английском, теперь доступно на греческом языке и опубликовано на портале joomla.gr. 🎉

До чего же приятно… 😇😊 Работа замечена и с ней посчитали необходимым ознакомить аудиторию страны, в которой Билл читает лекции. И это солнечная Греция - страна, страна, с которой Россию многое связывает. 🇬🇷🇷🇺🕊

Смотрю на греческий алфавит и тут же рисуются картины белоснежных зданий в окружении винограда и амфор, красивых женщин в сандалиях и мужественных воинов, охраняющих покой полисов, в которых ученые мужи работают над трудами, позже вошедшими в века. Красиво! 😇Но вернемся к интервью.

Из него вы узнаете, что в Греции доля Joomla среди CMS занимает порядка 30-40%. По моему мнению это - самый высокий показатель во всем мире. Также чтение лекций о Joomla в университетах позволит привести новых пользователей и к тому же молодое поколение. Ну и огромное кол-во сертификтатов Билла на стене (смотрим фото в статье) свидетельствует о том, что Joomla может применяться как профессиональный инструмент.

🌐 Оригинальное интервью (на английском)
🇬🇷 Интервью на греческом портале (joomla.gr)

Что насчет перевода на русский? Увы, времени всего 24 часа в сутках. Я продолжаю готовить новые интервью. Возможно, после завершения выпуска журнала, рассмотрю перевод некоторых интервью на русский. Но я об этом не говорил. 😊 В блоге @eugenius_blog публикую анонсы интересных событий из мира Joomla, интервью, уроки и полезные советы, а также делюсь мыслями:, связанными с разработкой и веб-дизайном.

Обработка HTTP ответа в Joomla 6+. Изменения по сравнению с Joomla 3 - Joomla 5

👩‍💻 Обработка HTTP ответа в Joomla 6+. Изменения по сравнению с Joomla 3 - Joomla 5.В Joomla для выполнения внешних запросов из PHP к сторонним API используется класс Joomla\Http\Http напрямую или же Joomla\Http\HttpFactory, который возвращает для работы преднастроенный по умолчанию класс Http. О работе с HTTP-запросами подробно рассказывалось в статье 2021 года Создание внешних запросов с использованием HttpFactory (Joomla). Некоторые изменения касаются работы с ответами на запросы. Например, наш запрос:
use Joomla\Http\HttpFactory;$http = (new HttpFactory)->getHttp($options, ['curl', 'stream']);$response = $http->get('https://any-url.ru/api/any/endpoint');
Раньше можно было получить код ответа или тело ответа как свойство $response - $response->code или $response->body. Однако, Joomla, начиная с Joomla 4 во многом переходит на стандарты PSR. В частности для работы с HTTP-ответами - на PSR-7. Также хорошая статья на Хабре о PSR-7: PSR-7 в примерах.
Прямое обращение к свойствам code, headers, body объявлено устаревшим в Joomla 6.0.0 и обещают удалить в Joomla 7.0.0.
Вместо этого нужно работать с HTTP-ответом по стандартам PSR-7. Код ответа.Было $response->code. Стало $response->getStatusCode().Заголовки ответа.Было $response->headers. Стало $response->getHeaders().Тело ответа.Было $response->body. Стало (string)$response->getContents().В тело ответа теперь приходит не строка, а поток - объект класса Laminas\Diactoros\Stream. Поэтому его нужно привести к строке (если это json, к примеру): (string)$response->getContents(). Чаще всего в коде Joomla встречается именно такой вариант. Однако, есть и вариант с перемещением указателя чтения на начало потока:
// Получили ответ в виде потока$stream = $response->getBody();// "перемотали" на начало$stream->rewind();// Получили строковый ответ$json = $stream->getContents();
В итоге результат одинаковый.@joomlafeed#joomla #разработка #php

0 Пользователей и 1 Гость просматривают эту тему.
  • 17 Ответов
  • 2002 Просмотров
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Добрый день,

Не могу перейти с версии PHP 5.6 на версию PHP 7 выходит ошибка 502, думаю многие с этим сталкиваются, но по моим логам поиск не дал результатов

Возможно вы сможете подсказать, что делать...
Код
cvety4you.ru [Mon May 22 16:27:34 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/kupit-cvety/kupit-landyshi/25-landyshej.html
cvety4you.ru [Mon May 22 16:27:36 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 16:27:38 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 16:27:40 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 16:27:42 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 16:27:45 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0, referer: https://cvety4you.ru/kupit-cvety/kupit-landyshi/25-landyshej.html
cvety4you.ru [Mon May 22 16:27:46 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:46 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:47 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:47 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:47 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:48 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:48 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:48 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:49 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:49 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:49 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:50 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:50 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:50 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:50 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:51 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:51 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:52 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:52 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:52 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:52 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:53 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:53 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:53 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:53 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:54 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:54 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:54 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:55 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 16:27:55 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/plugins/jshoppingcheckout/hidereg/hidereg.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0

 
*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #1 : 22.05.2017, 16:41:41 »
вам нужно обратится к разработчику /plugins/jshoppingcheckout/hidereg/hidereg.php . этот плагин не поддерживает php7
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

wishlight

  • Гуру
  • 5072
  • 319 / 1
  • От 300 руб быстрый хостинг. Сервера.
Re: Переход Joomla на php7 ошибка 502
« Ответ #2 : 22.05.2017, 16:42:39 »
IonCube может попробовать включить? Ну если php 7.0. Если 7.1 то пока работать не будет.

Если у вас обычный хостинг, обратитесь в техподдержку. Если сервер, то установите нужную версию IonCube.so
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Re: Переход Joomla на php7 ошибка 502
« Ответ #3 : 22.05.2017, 17:06:31 »
Вроде бы правильная версия IonCube нет?

*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #4 : 22.05.2017, 17:13:17 »
версия плагина накрыта старым ионом, который не для php7. вам нужно обратится к разработчику плагина.
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Re: Переход Joomla на php7 ошибка 502
« Ответ #5 : 22.05.2017, 17:37:33 »
А отключение данного плагина может помочь в данной ситуации или его придется удалять?
*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #6 : 22.05.2017, 17:50:15 »
отключение поможет
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Re: Переход Joomla на php7 ошибка 502
« Ответ #7 : 22.05.2017, 17:57:44 »
Заработал с отключением плагинов
JoomShopping - Smart Filter и Hidereg за них когда-то платились деньги, а разработчик перестал отвечать на вопросы на форуме https://joomshopping.pro/hidden-registration.html

Код
cvety4you.ru [Mon May 22 17:44:03 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:44:06 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:44:09 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:44:09 2017] [error] [client 91.204.252.232] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:12 2017] [error] [client 185.89.101.143] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:12 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:44:12 2017] [error] [client 185.101.68.21] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:14 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:15 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:16 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:17 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:17 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:18 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:44:19 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:45:04 2017] [error] [client 141.8.132.66] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:45:24 2017] [error] [client 141.8.132.66] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:45:40 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/administrator/index.php?option=com_plugins&view=plugins
cvety4you.ru [Mon May 22 17:45:40 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/administrator/index.php?option=com_plugins&view=plugins
cvety4you.ru [Mon May 22 17:45:45 2017] [error] [client 66.249.76.151] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/modules/mod_jsfilter/helper/helper.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
cvety4you.ru [Mon May 22 17:45:46 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/administrator/index.php?option=com_plugins&view=plugins
cvety4you.ru [Mon May 22 17:45:46 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/administrator/index.php?option=com_plugins&view=plugins
cvety4you.ru [Mon May 22 17:45:46 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/administrator/index.php?option=com_plugins&view=plugins
cvety4you.ru [Mon May 22 17:45:46 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/administrator/index.php?option=com_plugins&view=plugins
cvety4you.ru [Mon May 22 17:45:50 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25
cvety4you.ru [Mon May 22 17:45:50 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18
cvety4you.ru [Mon May 22 17:45:50 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:45:53 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25
cvety4you.ru [Mon May 22 17:45:53 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18
cvety4you.ru [Mon May 22 17:45:54 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:46:01 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:46:01 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 17:46:01 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/kupit-cvety/kupit-landyshi.html
cvety4you.ru [Mon May 22 17:46:01 2017] [error] [client 46.4.89.220] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25
cvety4you.ru [Mon May 22 17:46:01 2017] [error] [client 46.4.89.220] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18


*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #8 : 22.05.2017, 18:07:09 »
вы не первый, кто столкнулся с проблемами с расширениями этого разработчика. последнее время очень много таких же отзывов от людей про него. не могу сказать, почему так произошло с ним. откровенно говоря сам немного удивлен такой ситуацией. но не зная всего, судить не буду. будем надеяться, что в ближайшее время ситуация прояснится.
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Re: Переход Joomla на php7 ошибка 502
« Ответ #9 : 22.05.2017, 18:08:19 »
Попробовал осуществить заказ без плагинов не работает, выдает 500 ошибку
*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #10 : 22.05.2017, 18:09:57 »
видимо что-то есть еще, либо не все плагины от этих расширений отключили. логи ошибки нужно смотреть.
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Re: Переход Joomla на php7 ошибка 502
« Ответ #11 : 22.05.2017, 18:13:44 »
Логи:
С jw-sig и jcomments понятно они и не нужны я их уберу, но вот
g/payments/ym_cashbox/ym_cashbox.php с этим что делать не знаю
Код
cvety4you.ru [Mon May 22 18:03:31 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:33 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:35 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:37 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:40 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:40 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:40 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:43 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:43 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:43 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:46 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:46 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:46 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:50 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:50 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/
cvety4you.ru [Mon May 22 18:03:50 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/kupit-cvety/siren/buket-maj.html
cvety4you.ru [Mon May 22 18:03:54 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/kupit-cvety/siren/buket-maj.html
cvety4you.ru [Mon May 22 18:03:54 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/kupit-cvety/siren/buket-maj.html
cvety4you.ru [Mon May 22 18:03:54 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:57 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:57 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/korzina/view.html
cvety4you.ru [Mon May 22 18:03:57 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/zakaz/step2.html
cvety4you.ru [Mon May 22 18:03:59 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25, referer: https://cvety4you.ru/zakaz/step2.html
cvety4you.ru [Mon May 22 18:03:59 2017] [error] [client 80.82.95.115] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18, referer: https://cvety4you.ru/zakaz/step2.html
cvety4you.ru [Mon May 22 18:04:00 2017] [error] [client 80.82.95.115] File does not exist: /home/c/cvety4yoru/public_html/components/com_jshopping/css/cvety4you.css, referer: https://cvety4you.ru/zakaz/step4.html
cvety4you.ru [Mon May 22 18:04:02 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/components/com_jshopping/payments/ym_cashbox/ym_cashbox.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0, referer: https://cvety4you.ru/zakaz/step4.html
cvety4you.ru [Mon May 22 18:04:04 2017] [error] [client 46.4.89.220] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJComments has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jcomments/jcomments.php on line 25
cvety4you.ru [Mon May 22 18:04:04 2017] [error] [client 46.4.89.220] PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; plgContentJw_sig has a deprecated constructor in /home/c/cvety4yoru/public_html/plugins/content/jw_sig/jw_sig.php on line 18
cvety4you.ru [Mon May 22 18:04:08 2017] [error] [client 80.82.95.115] PHP Fatal error:  The file /home/c/cvety4yoru/public_html/components/com_jshopping/payments/ym_cashbox/ym_cashbox.php was encoded by the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.4 and cannot run under PHP 7.0.\n Please ask the provider of the script to provide a version encoded with the [url=http://www.ioncube.com/]IonCube[/url] Encoder for PHP 5.6. in Unknown on line 0
*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #12 : 22.05.2017, 18:44:56 »
тот же самый вопрос. такой же ioncube, который не работает c php7. мое мнение - вам надо вернуться на php5.6 и ждать обновлений этих плагинов.
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

Gorbunoff

  • Осваиваюсь на форуме
  • 46
  • 0 / 0
Re: Переход Joomla на php7 ошибка 502
« Ответ #13 : 22.05.2017, 19:10:05 »
Спасибо, хотя, честно говоря, обновления на них еще ни разу не выходили)
*

Taatshi

  • Гуру
  • 5258
  • 481 / 2
  • Верстаем и кодим. Обращайтесь ;)
Re: Переход Joomla на php7 ошибка 502
« Ответ #14 : 22.05.2017, 19:58:00 »
Значит, сначала найти и прикрутить альтернативу, а потом уже апгрейдиться.
ВЕРСТКА, САЙТЫ ПОД КЛЮЧ, УДАЛЕНИЕ ВИРУСОВ, МИГРАЦИЯ НА JOOMLA 3, ОБНОВЛЕНИЕ  |  ОТЗЫВЫ 
Связь: telegram - Taatshi, почта - Taatshi на яндексе, Skype - Taatshi
*

wishlight

  • Гуру
  • 5072
  • 319 / 1
  • От 300 руб быстрый хостинг. Сервера.
Re: Переход Joomla на php7 ошибка 502
« Ответ #15 : 23.05.2017, 08:17:33 »
ioncube, который не работает c php7

IonCube для 7.0 уже больше 3 месяцев использую.
*

dmitry_stas

  • Легенда
  • 13151
  • 1234 / 8
Re: Переход Joomla на php7 ошибка 502
« Ответ #16 : 23.05.2017, 08:52:36 »
охотно верю. осталось выяснить, почему автор указанных расширений использует
Encoder for PHP 5.4
и проблема решена :)
Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций
*

wishlight

  • Гуру
  • 5072
  • 319 / 1
  • От 300 руб быстрый хостинг. Сервера.
Re: Переход Joomla на php7 ошибка 502
« Ответ #17 : 23.05.2017, 14:13:37 »
Мм.. пожалуй да. Вот этот чекоут надо и попросить автора переписать под 7. Или действительно заменить. Не вгляделся.. Третий день строю рейтинги хостинга )
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

Joomla 3 не пускает в админку (просто перезагружается страница) (гуглил, нашёл решение, не помогло)

Автор lifelover2b

Ответов: 11
Просмотров: 4889
Последний ответ 05.06.2025, 04:48:29
от andrey222
По поводу сессий Joomla 3

Автор azm1n

Ответов: 0
Просмотров: 1278
Последний ответ 25.05.2025, 09:26:17
от azm1n
Стоит ли ставить плагин rel="canonical" на Joomla 3

Автор azm1n

Ответов: 2
Просмотров: 1641
Последний ответ 09.05.2025, 12:39:18
от azm1n
Вывести поля профиля Joomla

Автор romagromov

Ответов: 11
Просмотров: 2845
Последний ответ 28.04.2025, 10:25:44
от sivers
Не работает менеджер материалов, ошибка 500 SSL certificate problem

Автор Екатерина М

Ответов: 5
Просмотров: 1960
Последний ответ 06.04.2025, 09:27:20
от wishlight