Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/02/2010, 23:24
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: BaseUrl en zend framework

Lo que puedes hacer es establecerlo en el Bootstrap:
Código PHP:
Ver original
  1. protected function _initBaseUrl() {
  2.        $this->bootstrap('view');
  3.        $view = $this->getResource('view');
  4.        $view->baseUrl()->setBaseUrl('http://pagina');
  5. }

Saludos.