0

I have install Bugzilla according to How do I install Bugzilla?

I can't access the files. apparently /usr/local/

drwxr-xr-- 16 www-data www-data 4096 2011-09-19 09:30 bugzilla-4.0.2/

The link from /var/www/

lrwxrwxrwx  1 www-data www-data   25 2011-09-18 13:53 bugzilla -> /usr/local/bugzilla-4.0.2/

When browsing to: http://localhost/bugzilla I get :

Forbidden

You don't have permission to access /bugzilla on this server.

Apache/2.2.14 (Ubuntu) Server at 192.168.0.22 Port 80

How to fix it please?

Saariko
  • 397

1 Answers1

1

In order for the link to work, www-data will have to have the following permissions:

rx on /usr, /usr/local, /usr/local/bugzilla and any sub-folder

r on any files within /usr/local/bugzilla

Oh, and the apache error_log file might well tell you more about the problem.

ed.
  • 264