Ver Mensaje Individual
  #7 (permalink)  
Antiguo 08/03/2012, 12:46
fcojose2001
 
Fecha de Ingreso: marzo-2009
Ubicación: Salamanca, España
Mensajes: 141
Antigüedad: 15 años, 1 mes
Puntos: 4
Respuesta: Configurando Zend Framework

Esto está empezando a ser desesperante xD. He comentado los demas virtualHost, añadido el localhost como virtualhost y el base dir. Ahora tiene el siguiente aspecto:

Código:
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost *:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
#<VirtualHost *:80>
#    ServerAdmin [email protected]
#    DocumentRoot "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/docs/dummy-host.FranPC.home"
#    ServerName dummy-host.FranPC.home
#    ServerAlias www.dummy-host.FranPC.home
#    ErrorLog "logs/dummy-host.FranPC.home-error.log"
#    CustomLog "logs/dummy-host.FranPC.home-access.log" common
#</VirtualHost>

#<VirtualHost *:80>
#    ServerAdmin [email protected]
#    DocumentRoot "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/docs/dummy-host2.FranPC.home"
#    ServerName dummy-host2.FranPC.home
#    ErrorLog "logs/dummy-host2.FranPC.home-error.log"
#    CustomLog "logs/dummy-host2.FranPC.home-access.log" common
#</VirtualHost>

<VirtualHost *:80>
   DocumentRoot "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/htdocs/testzend/public"
   ServerName testzend.local

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development

   <Directory "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/htdocs/testzend/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>

</VirtualHost>

# Localhost
<VirtualHost *:80>
   DocumentRoot "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/htdocs"
   ServerName localhost
</VirtualHost>

# Base dir
<Directory "C:/Users/Fran/Documents/Entorno de Programacion/Servers/Apache2.2/htdocs/">
	Order Deny,Allow
	Allow from all
</Directory>
He descomentado el siguiente modulo en el httpd config

Código:
LoadModule rewrite_module modules/mod_rewrite.so
Ahora localhost si funciona, pero testzend.local me manda al mismo sitio que si pongo localhost, a la raiz de proyectos del servidor

ah! en System32/drivers/etc/host tengo esto:

Código:
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#	127.0.0.1       localhost
#	::1             localhost


127.0.0.1 localhost
127.0.0.1 testzend.local
El dia q funcione me tomo una cerveza, jaja
__________________
Puedes seguirme en Twitter: @fcojose2001