Hi, the problem is in the file helpers / mvs.php line 80, the new code is causing the error:
// MVC
if (!class_exists('CkJController'))
{
//Sometimes Legacy classes can already been initializated
if (!class_exists('JController', false))
jimport('joomla.application.component.controller');
if (!class_exists('JModel', false))
jimport('joomla.application.component.model');
if (!class_exists('JViewLegacy', false))
jimport('legacy.view.legacy');
class CkJController extends JController{}
class CkJModel extends JModel{}
class CkJView extends JView{}
}
Replace it with the above code and this worked
// MVC
if (!class_exists('CkJController'))
{
jimport('joomla.application.component.controller');
jimport('joomla.application.component.model');
jimport('joomla.application.component.view');
class CkJController extends JController{}
class CkJModel extends JModel{}
class CkJView extends JView{}
}