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?

link|improve this question
feedback

1 Answer

403 means what it says: forbidden. That often means the user the Apache server is running as doesn't have permission to execute the scripts in question; have you checked permissions on those files and their directory?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.