Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/03/2012, 23:03
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: Configurando Zend Framework

Tienes que habilitar los VirtualHosts, en tu httpd.conf asegurate que no tenga el # esta línea:

Código:
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
Después dentro de tu httpd-vhosts.conf asegurate que actives el Virtual Host:
Código:
NameVirtualHost *:80

# Base dir
<Directory "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/htdocs/">
	Order Deny,Allow
	Allow from all
</Directory>
Con eso al reiniciar tu Apache debe de tener activados los VirtualHost.

Saludos.