Apache 2 withe ASP.NET support (mod_aspdotnet.so)

liunx

Guest
Hey
I have a problem with aspdotnet Apache module...
I have this on my httpd configuration file:



# this is for ASP.NET
LoadModule aspdotnet_module modules/mod_aspdotnet.so

AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj \
licx rem resources resx soap vb vbproj vsdisco webinfo

AliasMatch "^/(?i)aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*)" \
"E:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$5"

<Directory "E:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>

AspNetMount /mail/ "E:/MAIL/MRS/"
Alias /mail/ "E:/MAIL/MRS/"
<Directory "E:/MAIL/MRS/">
Options FollowSymlinks Indexes Includes ExecCGI
Order allow,deny
Allow from all
DirectoryIndex default.htm default.aspx
</Directory>



When I load the page <!-- m --><a class="postlink" href="http://myIp/mail/">http://myIp/mail/</a><!-- m -->
I get an Error Message from the Microsoft.NET Framework saying that the directory E:\MA is not valid...
I don't know why it requests that directory... In the Apache configuration file I use the E:\MAIL\MRS directory...
Any ideas why is this happening..?
thanx...Never played with Apache like you are but if I would see this error on a 2003 box, I would check to make sure that the .NET account had access to the folder, the folder has write permissions, and any files are not marked as readonly.

You may want to try to ask this on the ASP.NET forum where there is a broader audience that may have done this.

Eric
 
Back
Top