Perl throwing 403 errors!
Posted
by
Jamie
on Server Fault
See other posts from Server Fault
or by Jamie
Published on 2010-10-29T19:48:19Z
Indexed on
2011/03/15
8:11 UTC
Read the original article
Hit count: 441
When I first installed Perl in my WAMP setup, it worked fine. Then, after installing ASP.net, it began throwing 403 errors. Here's my ASP.net config:
Load asp.net module
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"
Set asp.net extensions
AddHandler asp.net asp asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo
# Mount application AspNetMount /asp "c:/users/jam/sites/asp"
# ASP directory alias
Alias /asp "c:/users/jam/sites/asp"
# Directory setup
<Directory "c:/users/jam/sites/asp">
# Options
Options Indexes FollowSymLinks Includes +ExecCGI
# Permissions
Order allow,deny
Allow from all
# Default pages
DirectoryIndex index.aspx index.htm
</Directory>
# aspnet_client files
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
# Allow ASP.net scripts to be executed in the temp folder
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymLinks
Order allow,deny
Allow from all
</Directory>
Also, what are the code tags for this site?
© Server Fault or respective owner