cancel
Showing results for 
Search instead for 
Did you mean: 

ITS Configuration - Access forbidden! (SUSE 9 - Apache)

Former Member
0 Kudos

Dear Colleagues;

I have installed ITS 6.20 SP20 on Suse Linux Enterprise Edition 9 - Apache 2.0.49.

I have configured Apache server these details;

"Listen.conf"

NameVirtualHost xx.yy.zz.tt:2080

Listen 2080

"vhost.conf"

<VirtualHost xx.yy.zz.tt:2080>

DocumentRoot /usr/local.orig/httpd/htdocsSID

<Directory "/usr/local.orig/httpd/htdocsSID">

Options Indexes FollowSymLinks

AllowOverride None

Order allow,deny

Allow from all

</Directory>

</VirtualHost>

"loadmodule.conf"

LoadModule vhost_alias_module /usr/lib/apache2-prefork/mod_vhost_alias.so

When I write the http://xx.yy.zz.tt:2080/ address, I access the ITS files.

But I write the ITS address (http://xx.yy.zz.tt:2080/scripts/wgate/webgui/!), I face this error.

Access forbidden!

You don't have permission to access the requested object. It is either read-protected or not readable by the server.

Error 403

xx.yy.zz.tt

Mon Apr 10 08:49:41 2006

Apache/2.0.49 (Linux/SuSE)

I have gave read,write,executable permission to /usr/local.orig/httpd/htdocsSID.

How can I do this problem.?

Best Regards,

Onur

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Sorry I addes this configuration.

"

ScriptAlias /cgi-bin/ "/usr/local.orig/httpd/htdocsSID"

<Directory "/usr/local.orig/httpd/htdocsSID">

AllowOverride None

Options +ExecCGI -Includes

Order allow,deny

Allow from all

</Directory> "

Former Member
0 Kudos

Hi,

When I change the these configuration on httpd.conf file, ITS succesfuly run.

Best Regards,

Onur Dogan

Old Values....

<Directory />

Options None

AllowOverride None

Order deny,allow

deny from all

</Directory>

  1. use .htaccess files for overriding,

AccessFileName .htaccess

  1. and never show them

<Files ~ "^\.ht">

Order deny,allow

deny from all

</Files>

New Values...

<Directory />

Options None

AllowOverride None

Order allow,deny

allow from all

</Directory>

  1. use .htaccess files for overriding,

AccessFileName .htaccess

  1. and never show them

<Files ~ "^\.ht">

Order allow,deny

allow from all

</Files>

Former Member
0 Kudos

Thanks Onur. This helped me today.

Regards,

Alan.

Former Member
0 Kudos

Onur,

You might want to try and add ExecCGI as one of the options in the vhost.conf configuration.

Hope that helps,

Keith

Former Member
0 Kudos

Dear Crossett,

I add the this configuration to vhost.conf. The problem is not solved.

"

ScriptAlias /cgi-bin/ "/srv/www/htdocs/YSP/"

<Directory "/srv/www/htdocs/YSP">

AllowOverride None

Options +ExecCGI -Includes

Order allow,deny

Allow from all

</Directory> "

What can I do this error.?

Best Regards,

Onur Dogan