Open GoogleCodeExporter opened 9 years ago
I have solved the issue. Perhaps you may add this informationn to the WebDAV
Readme file:
From: http://code.google.com/p/sabredav/wiki/Authentication
Apache + (Fast)CGI
If you use PHP through CGI or FastCGI and Apache authentication headers are not
passed through by default. You can enable this with the following mod_rewrite
rule:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
If you already had a mod_rewrite rule to map all urls to a server file, you
might need to change this to something like:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* /server.php [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
Note the /server.php. Make sure this reflects the correct location of your
server file.
So my .htaccess has now:
RewriteEngine on
RewriteRule ^(.+) index.php [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
Original comment by m...@gw.ms
on 8 Jan 2012 at 2:58
I have the same problem, but didn't solve with
RewriteEngine on
RewriteRule ^(.+) index.php [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
on my .htaccess, any clue?
Original comment by armin.ar...@gmail.com
on 13 Jan 2012 at 12:35
Original issue reported on code.google.com by
m...@gw.ms
on 8 Jan 2012 at 2:20