Consultor Eletrônico



Kbase P125693: Webspeed URL Gives HTTP error 403
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   9/4/2007
Status: Unverified

FACT(s) (Environment):

WebSpeed 3.x
Apache

SYMPTOM(s):

Webspeed URL Gives HTTP error 403

HTTP Forbidden

Following error appears in web server error log file "client denied by server configuration"

Using Apache web server

CAUSE:

The web server's CGI alias directory is configured with "Deny from all" thus denying all CGI requests to that directory

FIX:

Comment out the deny from all directive from httpt.conf file. For example,
Following configurations for the CGI bin directory has presented problems
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>

Comment out
Order deny,allow
Deny from all
Fixes the problem