7200, //'debugHeader' => true, 'defaultOptions' => array( 'cacheWithCookieVariables' => true, 'makeIdWithCookieVariables' => false ) ), array( 'cacheDir' => PC_RUTA_APP.'cache'.DIRECTORY_SEPARATOR.'paginas' ) )->start(); /**/ include( "Placom.php" ); // Incluimos clases necesarias require_once 'Zend/Controller/Front.php'; require_once 'Placom/Controlador/Respuesta.php'; require_once 'Placom/Controlador/Peticion.php'; require_once 'Placom/Controlador/Plugin/Adodb.php'; require_once 'Placom/Controlador/Plugin/Precargas.php'; require_once 'Placom/Controlador/Plugin/Modulo.php'; require_once 'Placom/Controlador/Enrutador/Admin.php'; try { Placom::inicializar(); // Inicializamos clase base Placom Zend_Controller_Front::getInstance() // Inicializamos controlador ->setBaseUrl( PC_RUTA_BASE ) ->setRouter( new Placom_Controlador_Enrutador_Admin() ) ->setRequest( new Placom_Controlador_Peticion() ) ->setResponse( new Placom_Controlador_Respuesta() ) ->registerPlugin( new Placom_Controlador_Plugin_Adodb() ) ->registerPlugin( new Placom_Controlador_Plugin_Precargas() ) ->registerPlugin( new Placom_Controlador_Plugin_Modulo() ) ->throwExceptions( true ) ->dispatch(); } catch( Exception $ex ) { if ($debug==true) echo "
".
            $ex->getMessage ()."\n".
            $ex->getTraceAsString()."
"; Placom_Excepcion::generarSalidaError( $ex ); }