Drupal and Debian install issues

Whether you are using Linux on the desktop or as a server, it's still good that you're using Linux. Linux related questions go here.

Moderator: General Moderators

Post Reply
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Drupal and Debian install issues

Post by alex.barylski »

I have attempted to install Drupal under my debian install (most every other CMS worked fine).

I get a 500 error when I access the Drupal install:

Code: Select all

[Thu Sep 17 12:34:27 2009] [alert] [client 192.168.1.103] /var/www/sites/testsite.com/.htaccess: Option Indexes not allowed here
The IP I think is wrong, as it should be *.*.*.104 (the IP was 103 but was changed a while back after a power failure).

I have one site enabled via a2ensite it's the following:

Code: Select all

<VirtualHost *>
    ServerName http://www.testsite.com
    DocumentRoot /var/www/sites/testsite.com/
</VirtualHost>
http://www.testsite.com is mapped to 192.168.1.104 in my Windows hosts file.

I have tried making sure all the AllowOverride to All restarted the servers and still no dice...urgh... :banghead:

Anyone?
User avatar
arjan.top
Forum Contributor
Posts: 305
Joined: Sun Oct 14, 2007 4:36 am
Location: Hoče, Slovenia

Re: Drupal and Debian install issues

Post by arjan.top »

try adding:

Code: Select all

Options Indexes
to VirtualHost
Post Reply