Installing mod aspdotnet: Difference between revisions

From The Uniform Server Wiki
Jump to navigation Jump to search
No edit summary
m (Reverted edits by Upazixorys (Talk); changed back to last version by Olajideolaolorun)
 
Line 1: Line 1:
=[http://evicijum.co.cc This Page Is Currently Under Construction And Will Be Available Shortly, Please Visit Reserve Copy Page]=
First, make sure that you have at least .NET Framework 1.1 installed and also if using XP, you may have to have at least SP1 installed for it to work.
First, make sure that you have at least .NET Framework 1.1 installed and also if using XP, you may have to have at least SP1 installed for it to work.


Line 7: Line 6:


In Apache's httpd.conf, add this under the other modules:
In Apache's httpd.conf, add this under the other modules:
<pre><nowiki>
<pre><nowiki>
LoadModule aspdotnet_module &quot;modules/mod_aspdotnet.so&quot;
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"


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


&lt;IfModule mod_aspdotnet.cpp&gt;
<IfModule mod_aspdotnet.cpp>


# Mount the ASP.NET example application
# Mount the ASP.NET example application
AspNetMount /active &quot;W:/www/active&quot;
AspNetMount /active "W:/www/active"


# Map all requests for /active to the application files
# Map all requests for /active to the application files
Alias /active &quot;W:/www/active&quot;
Alias /active "W:/www/active"


# Allow asp.net scripts to be executed in the active example
# Allow asp.net scripts to be executed in the active example
  &lt;Directory &quot;W:/www/active&quot;&gt;
  <Directory "W:/www/active">
   Options FollowSymlinks ExecCGI
   Options FollowSymlinks ExecCGI
   Order allow,deny
   Order allow,deny
   Allow from all
   Allow from all
   DirectoryIndex Default.htm Default.aspx
   DirectoryIndex Default.htm Default.aspx
  &lt;/Directory&gt;
  </Directory>


# For all virtual ASP.NET webs, we need the aspnet_client files
# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \
&quot;C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4&quot;
"C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
&quot;C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles&quot;&gt;
"C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Options FollowSymlinks
Order allow,deny
Order allow,deny
Allow from all
Allow from all


&lt;/IfModule&gt;
</IfModule>
&lt;/nowiki&gt;&lt;/pre&gt;
</nowiki></pre>


For more information, refer to the [http://httpd.apache.org/cli/introduction default website]
For more information, refer to the [http://httpd.apache.org/cli/introduction default website]


Credits: gopo &amp; TerryLok
Credits: gopo & TerryLok


[http://forum.uniformserver.com/index.php?showtopic=50 Original instructions] by: Olajide Olaolorun (Uniform Server Developer)
[http://forum.uniformserver.com/index.php?showtopic=50 Original instructions] by: Olajide Olaolorun (Uniform Server Developer)

Latest revision as of 08:29, 24 November 2010

First, make sure that you have at least .NET Framework 1.1 installed and also if using XP, you may have to have at least SP1 installed for it to work.

Download the mod_aspdotnet module here

Install it to the Apache directory, if the W:/ path gives you problem, then use the real path.

In Apache's httpd.conf, add this under the other modules:

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

<IfModule mod_aspdotnet.cpp>

# Mount the ASP.NET example application
AspNetMount /active "W:/www/active"

# Map all requests for /active to the application files
Alias /active "W:/www/active"

# Allow asp.net scripts to be executed in the active example
 <Directory "W:/www/active">
   Options FollowSymlinks ExecCGI
   Order allow,deny
   Allow from all
   DirectoryIndex Default.htm Default.aspx
 </Directory>

# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \
"C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
"C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all

</IfModule>

For more information, refer to the default website

Credits: gopo & TerryLok

Original instructions by: Olajide Olaolorun (Uniform Server Developer)