There is an ebuild in portage for mod_encoding, but it is for apache 1.x. The writer has apparently updated the module for apache 2.0, but since all the instructions are in Japanese, I can't understand the instructions to compile! Moreover, every mention of Apache 2.x and mod_encoding is a Japanese website, so the problem may be solveable some other way or people are just going with basic authentication and mod_auth_msfix (http://www.luluware.com/mod_auth_msfix.html).
The current workaround of adding host\username as well as usernamein the digest is not working, the username gets matched but the password isn't accepted.
Module webside: http://webdav.todo.gr.jp/download/
MS KB article: http://support.microsoft.com/default.as ... duct=winxp
MS fix article: http://www.hss.caltech.edu/help/unix/ad ... -webdav-xp
MS WinXP web folders problem fixes:
Code: Select all
#
# Broken WebDAV for Windows XP
#
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "Microsoft-WebDAV-MiniRedir/5.1.2600" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS" redirect-carefully
<IfModule mod_headers.c>
Header add MS-Author-Via "DAV"
</IfModule>
<IfModule mod_encoding.c>
EncodingEngine on
NormalizeUsername on
</IfModule>

