Yii I do not work the internal pages

0

I have a problem with internal tabs that can not be found but the routing is correct. I do not know why this error is due to the fact that only the Home view works, I would appreciate any support.

this is a fragment in the modules file

  'admin' => array(
        'class' => 'core.modules.admin.AdminModule',
        // Este parametro lo reciben todos los módulos
        // y es para ocultar el menu lateral en el cms
        // 'showMenuFromAdmin'=>false,
    ),
    'payu'=>array(
        'class'=>'application.modules.payu.PayuModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
    'Home'=>array(
        'class'=>'application.modules.Home.HomeModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
     'secciones'=>array(
        'class'=>'application.modules.secciones.SeccionesModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
    'Noticias'=>array(
        'class'=>'application.modules.Noticias.NoticiasModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
    'Galeria'=>array(
        'class'=>'application.modules.Galeria.GaleriaModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
     'eventos'=>array(
        'class'=>'application.modules.eventos.EventosModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
    'involucrate'=>array(
        'class'=>'application.modules.involucrate.InvolucrateModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
    'conocenos'=>array(
        'class'=>'application.modules.conocenos.ConocenosModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
     'documentos'=>array(
        'class'=>'application.modules.documentos.DocumentosModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),
    'contactenos'=>array(
        'class'=>'application.modules.contactenos.ContactenosModule',
        // 'showMenuFromAdmin'=>false, // If you want hide your module on CMS left menu
     ),

Thanks for your suggestions

    
asked by Edison Sarmiento 09.05.2018 в 21:09
source

0 answers