Ver Mensaje Individual
Antiguo 08-feb-2008, 15:22   #8 (permalink)
GatorV
$this->role('moderador');
GatorV es realmente agradableGatorV es realmente agradableGatorV es realmente agradableGatorV es realmente agradableGatorV es realmente agradableGatorV es realmente agradable
 
Avatar de GatorV
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ags/
Mensajes: 14.152
Re: Probando Framework de Zend

A ver prueba esto en tu bootstrap file:
Código PHP:
<?php
error_reporting
(E_ALL|E_STRICT);
ini_set('display_errors''on');
ini_set('include_path'ini_get('include_path').';../library');

var_dump$_GET );

/*
*Zend Loader
*/
require "Zend/Loader.php";
Zend_Loader::loadClass('Zend_Controller_Front');
$front Zend_Controller_Front::getInstance();
$front->throwExceptions(false);
$front->setControllerDirectory('../application/controllers');

$front->dispatch();

?>
y verifica si están llegando todos los datos desde $_GET.

Saludos.
__________________
Blog Web
GatorV está desconectado   Responder Citando