Cacti running on Fedora 13

Hi All,

I have recently installed Cacti on a Fedora 13 machine and have followed all the steps the Cacti manual has given me:

Install and Configure Cacti

To my knowledge I have installed everything correctly and it should be working. However when i access localhost/cacti I get the following message. Im not sure if it is to do with file permissions or firewalls/security settings but any help would be greatly appriciated.

Forbidden

You don't have permission to access /cacti on this server.
Apache/2.2.15 (Fedora) Server at 10.52.0.24 Port 80

---------- Post updated at 02:08 PM ---------- Previous update was at 09:58 AM ----------

If anyone else is having this issue; i managed to fix the problem by doing the following.

edit the following file "/etc/httpd/conf.d/cacti.conf"

The file will read:

#
# Cacti: An rrd based graphing tool
#
Alias /cacti /usr/share/cacti
<Directory /usr/share/cacti/>
Order Allow,Deny
Deny from all
Allow from 127.0.0.1
</Directory>

To solve the security issue edit the file to read as such:

#
# Cacti: An rrd based graphing tool
#
Alias /cacti /usr/share/cacti
<Directory /usr/share/cacti/>
Order Allow,Deny
#Deny from all
#Allow from 127.0.0.1
Allow from all
</Directory>