This article is for joomla components / modules developers.
Usually you have this error when trying to run/configure your joomla 2.5 component on joomla 3.x plateform.
This error is due to non 100% compatibility of 2.5 components with joomla 3.x
For some simple components proceed as follows :
This link may be useful
Usually you have this error when trying to run/configure your joomla 2.5 component on joomla 3.x plateform.
This error is due to non 100% compatibility of 2.5 components with joomla 3.x
For some simple components proceed as follows :
- In every file that references DS variable
put at the begin :
if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR); - rename admin.your_component.php file in admin section to your_component.php
- Change each JController or JView classes reference to JControllerLegacy or JViewLegacy
- Don't forget to do that to the 2 sections site and admin
This link may be useful