As I recently setup a server with Debian Squeeze and some groupware stuff, there was but one little problem, creating a new task in horde lead to a solid 404 on "horde/nag/t/save". Abusing Google in order to find a solution often lead to people suggesting one should enable mod_rewrite, but it was already enabled.
Another approach was changing AllowOverride directive on the vhost from none to all. But guess what, that was also correct.
So I had to investigate a little bit myself and found out that the
So in a nutshell, make sure /usr/share/horde/.htaccess looks somewhat like this:
Another approach was changing AllowOverride directive on the vhost from none to all. But guess what, that was also correct.
So I had to investigate a little bit myself and found out that the
/usr/share/horde/.htaccessfile was missing a RewriteBase.
So in a nutshell, make sure /usr/share/horde/.htaccess looks somewhat like this:
# IMPORTANT: DO NOT EDIT THIS FILE! # It will be overwritten with any future upgrade. allow from all <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /horde RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ rampage.php [QSA,L] </IfModule>
Keine Kommentare:
Kommentar veröffentlichen