Hi,
I actually had a similar issue for my debian packages that I distribute. I had to add a small .htaccess to my debian directory to allow browsing
--8<-- Options +indexes <IfModule mod_rewrite.c> RewriteEngine on </IfModule> --8<--
You may only want to turn off the rewrite engine.
Gordon.
On Mon, 2005-08-29 at 21:35 -0500, Charlie Lowe wrote:
Katin,
It was the rewrite directives:
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
Once they were commented out, phpsurveyor seemed to work fine. 'Course I need them for my Drupal site :)
Note: once I was logged in, I could change the directives back and the phpsurveyor admin section continued to work. Seems strange.
Charlie