Archive for the 'Apache' Category

Nice Apache .htaccess tutorial

Jul 18, 2006 in Tips, Apache

Need a hand on tweaking apache .htaccess file? This recent post at vortexmind.net has all the info you need in one nice post.

Subversion 1.3.2 on Apache2 “the requested operation has failed”

Jul 04, 2006 in Tips, Subversion, Apache

Finally manage to make it run! Phew! There seems to be a bug in subversion which makes it impossible to load subversion modules even after you copied them to the Apache2’s module folder. I was following the instruction from this page: . It is a little dated but it has simple step-by-step instruction. Just follow the instruction given by that link with the below amendments.

*need to load mod\_dav\_fs.so as well*

LoadModule dav\_fs\_module modules/mod\_dav\_fs.so

*you have to explictly stat the location of this two modules rather than copying them to Apache2 module folder*

LoadModule dav\_svn\_module ../../Subversion/bin/mod\_dav\_svn.so

LoadModule authz\_svn\_module ../../Subversion/bin/mod\_authz\_svn.so

I got this information from