Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/02/2012, 10:12
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Respuesta: Problemas al publicar en hosting (cpanel)

Pues lo que puedo ver incorrecto es tú .htaccess, el "oficial" de Zend debe de ser así:
Código:
SetEnv APPLICATION_ENV development

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Esas reglas que pones extras pueden ser el problema.

Saludos.