Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/06/2011, 11:57
phpdevelopment
 
Fecha de Ingreso: mayo-2011
Mensajes: 256
Antigüedad: 13 años
Puntos: 5
No carga los css

La estructura de mi aplicaciones :

Código HTML:
Ver original
  1. app
  2.   module
  3.     admin
  4.        -html
  5.           style
  6.               main.css
  7.         -layout
  8.             -scipts
  9.                 layout.phtml
  10.       -controller
  11.            IndexController
  12.       -view
  13.         script
  14.           -inde.phtml

Código HTML:
<link rel="stylesheet" type="text/css" href="/../../html/styles/main.css" /> 
Y este es el error.Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)

y no se porque porque si voy a
www.test.com/admin/

La pagina no lanza errores

en el layout ahi

Código PHP:
<?= $this->headMeta()->appendHttpEquiv('Content-Type','text/html; charset=UTF-8')
                    ->
appendHttpEquiv('Cache-Control','no-cache')?>
 <?= $this->layout()->content?>
y en la vista un simple echo hola....

Porque no me esta cargando los css...

Última edición por phpdevelopment; 21/06/2011 a las 11:58 Razón: mejora