Liebe Joomla-Gemeinde,
ich habe folgendes Problem:
Im Frontend habe ich einen Einstiegspunkt
Dazu den passenden Controller:PHP-Code:defined( '_JEXEC' ) or die( 'Restricted access' );
// Require the base controller
require_once( JPATH_COMPONENT.DS.'controller.php' );
// Require specific controller if requested
if($controller = JRequest::getWord('controller')) {
$path = JPATH_COMPONENT.DS.'controllers'.DS.$controller.'.php';
if (file_exists($path)) {
require_once $path;
} else {
$controller = '';
}
}
// Create the controller
$classname = 'MeinController'.$controller;
$controller = new $classname( );
// Perform the Request task
$controller->execute(JRequest::getVar( 'task' ));
// Redirect if set by the controller
$controller->redirect();
Und diverse Views. Weise ich einem Menüpunkt jetzt meinen View "seeAll" ohne SEO zu, passt alles super. Aktiviere ich SEO geht das nicht mehr.PHP-Code:
jimport('joomla.application.component.controller');
class MeinController extends JController
{
/**
* Method to display the view
*
* @access public
*/
function display()
{
parent::display();
}
}
Kann mir jemand bei diesem Problem helfen?
Vielen Dank!


LinkBack URL
About LinkBacks
Zitieren
Lesezeichen