Ad Widget

Collapse

Unable to get Frontend working

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • CarlosMassiah
    Junior Member
    • Aug 2013
    • 8

    #1

    Unable to get Frontend working

    Hi.
    I have been following the set up page


    to install zabbix. I have got to the part where I run the web interface, but it does not work. I get the Access forbidden! message when accessing http://<myserver>/zabbix

    I am using Suse and Apache2.2

    So far I have tried;

    - Copying to zabbix to the root (htdocs) and accessing it from there
    - I've tried accessing /zabbix/index.php directly from my browser, it just wanted me to download it.
    - Adding the following to my httpd.conf

    <Directory /srv/www/htdocs/>
    AllowOverride FileInfo AuthConfig Limit Indexes
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    <Limit GET POST OPTIONS PROPFIND>
    Order allow,deny
    Allow from all
    </Limit>
    <LimitExcept GET POST OPTIONS PROPFIND>
    Order deny,allow
    Deny from all
    </LimitExcept>
    </Directory>
    Last edited by CarlosMassiah; 08-08-2013, 13:10. Reason: fixing typo, adding info to title
  • CarlosMassiah
    Junior Member
    • Aug 2013
    • 8

    #2
    The problem was a missing php module. The Apache2 and PHP install did not have this configured already. This is on Suse

    The steps to fix this were

    1) Install apache2 php mod
    zypper install apache2-mod_php5

    2) Enable the mod
    a2enmod php

    3) Hook up php module, In your text editor add
    LoadModule php5_module /usr/lib64/apache2/mod_php5.so
    to
    /etc/apache2/sysconfig.d/loadmodule.conf

    After that restart Apache and delete your browser cache and your php files will work!

    Comment

    Working...