Я пытаюсь обновить компонент от joomla2.5 до 3 Joomla, но я получаю эту ошибку:Фатальная ошибка: Вызов неопределенной метод JController :: GetInstance() в 3
Fatal error: Call to undefined method JController::getInstance() in /home/evolve13/public_html/components/components/com_donation/donation.php on line 9
Вот код donation.php:
<?php
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
// import joomla controller library
jimport('joomla.application.component.controller');
// Get an instance of the controller prefixed by Donation
JController::getInstance('Donation');
// Perform the Request task
$controller->execute(JRequest::getCmd('task'));
// Redirect if set by the controller
$controller->redirect();
Пожалуйста, попробуйте задать свой вопрос более в [Joomla StackExchange] (http://joomla.stackexchange.com);) – Lodder
возможно дубликат [Вызов неопределенной метода JController :: GetInstance()] (http://stackoverflow.com/questions/17901808/call-to-undefined-method-jcontrollergetinstance) –