By milwell on
can't access the site it just shows the save dialog instead of the front page or the install page. Is it a problem with apache 2.2/php5.2?
i have setup virtual to d:/...., the default document root is in c:\progr...\apache..\htdocs
if i set the virtual host to point to c:\progr...\apache..\htdocs\drupal-5.2 it will show the front page.
my virtual conf is
#
# 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.
<Directory "D:/milwell/projects">
AllowOverride all
Allow from all
Order Allow,Deny
Options Indexes FollowSymLinks
</Directory>
<Directory "D:/milwell/projects/drupal/web">
AllowOverride all
Allow from all
Order Allow,Deny
Options Indexes FollowSymLinks
</Directory>
#
# 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>
DocumentRoot "c:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot d:/milwell/projects/drupal/web
ServerName fashionistapics.localhost
</VirtualHost>
<VirtualHost *:80>
# DocumentRoot d:/milwell/projects/drupal/web
DocumentRoot "c:/Program Files/Apache Software Foundation/Apache2.2/htdocs/drupal-5.2"
ServerName localhost.milwell
</VirtualHost>
Comments
solved! :)
it so happens i have a .htaccess file in the upper directory which interferes with the drupal directory.
removed the file, and now it works.