Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Value has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 42 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Message has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 171 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Server has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 342 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Request has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 546 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Client has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 590 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Error has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 740 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Date has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 782 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_Base64 has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 845 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_IntrospectionServer has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 866 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_ClientMulticall has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 1029 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_ClientSSL has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 1065 Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; IXR_ClassServer has a deprecated constructor in /home/сайт.ру/system/controllers/ping/IXR_Library.php on line 1289
IXR_Library.php
В этом ваши ошибки кроются.
1 — скрыть ошибки с глаз долой. Способов несколько — погуглите-попробуйте какой вам подойдет
2 — поправить IXR_Library.php переписав самостоятельно устаревшие функции/методы
3 — перейти на php 5.2 (?) возможно есть еще ошибки только вы их еще не нашли
4 — отказаться от компонента ping
Открываем в блокнотике файл system/controllers/ping/IXR_Library.php
находим строки на которые ругается Deprecated.
Там будет объявление класса, а чуть ниже функция-конструктор с тем же именем.
Пример с 42 строки:
class IXR_Value { var $data; var $type; function IXR_Value($data, $type = false)
__construct
Чтобы получилось типо так
function __construct($data, $type = false)