Вот такая еще ошибка
Fatal error: Cannot redeclare class JViewLegacy in /home/sonik/gabarit39.ru/libraries/cms/view/legacy.php on line 21
После обновления на ZOO 3.0.10 перестает работать сайт
Автор
mam09
, Mar 13 2013 15:15
Сообщений в теме: 12
#11
Отправлено 14 March 2013 - 17:01
#12
Отправлено 14 March 2013 - 21:15
Решение нашла на форуме JoomlArt:
The problem is with the JA T3v3 System Plugin and Zoo. JA uses their own JViewLegacy to move the html directory from the template to the plugin
and then zoo imports the Joomla version.
To fix it for now you can hack:
/administrator/components/com_zoo/framework/classes/view.php
Replace line 8 & 9:
Code: jimport('cms.view.legacy'); jimport('legacy.view.legacy'); with
Code: if (!class_exists('JViewLegacy', false)){ jimport('cms.view.legacy');
jimport('legacy.view.legacy');
}При обновлении Zoo стирается эта строка, я уже эту ошибку решала, забыла просто...
The problem is with the JA T3v3 System Plugin and Zoo. JA uses their own JViewLegacy to move the html directory from the template to the plugin
and then zoo imports the Joomla version.
To fix it for now you can hack:
/administrator/components/com_zoo/framework/classes/view.php
Replace line 8 & 9:
Code: jimport('cms.view.legacy'); jimport('legacy.view.legacy'); with
Code: if (!class_exists('JViewLegacy', false)){ jimport('cms.view.legacy');
jimport('legacy.view.legacy');
}При обновлении Zoo стирается эта строка, я уже эту ошибку решала, забыла просто...
#13
Отправлено 14 March 2013 - 23:31
Значит, тему закрываю.
[color=#aa0000]Не забывайте нажимать кнопку "Вопрос Решён" под сообщением, которое решило Вашу проблему.[/color]