View Single Post
Old 07-25-2009, 05:31 PM   #8 (permalink)
sketchMedia
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

Quote:
Originally Posted by ETbyrne View Post
Installing Apache manually is a lot different from XAMPP you only have one httpd.conf file. I'm not sure why XAMPP has multiple httpd.conf files.
Yea, XAMPP is a bit of a mess from what I remember of it. That's why I compiled my own LAMP server

A stab in the dark here.

Do you have:
Code:
AccessFileName .htaccess
in your .conf file? if not add it. This tells apache to look for .htaccess files

Find, in your vhost (should be in the <Directory> section):
Code:
AllowOverride None
And change it to (well for relevant directories ofc):
Code:
AllowOverride All
That directive basically tells apache what to do with .htaccess files when it finds them and what directives it will read.

Then give it a boot up the backside:
Code:
/etc/init.d/apache2 restart
or
Code:
/etc/init.d/httpd restart
depending on your distro ofc.

I'll keep thinking about solutions, its quite hard for me atm coz my setup seems to be slightly different.
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
sketchMedia is offline  
Reply With Quote
The Following User Says Thank You to sketchMedia For This Useful Post:
ETbyrne (07-25-2009)