Web interface not working after upgrading to Linux 14.04

Forum for questions and support relating to the 1.26.x releases only.
Locked
yarek
Posts: 2
Joined: Sat Aug 02, 2014 10:49 pm

Web interface not working after upgrading to Linux 14.04

Post by yarek »

Hello,

My localhost/zm is no longer loading - apache log says I get 404.

This was working finde on Ubuntu 12.10, but after successfully upgrading to 14.04 it no longer works.

Ubuntu software center says I'm using version: zoneminder 1.26.5-1ubuntu3. Any way to double check the version on the disk?

Checked that PHP is working fine - phpMyAdmin is working without a problem on my box.

The apache config (/etc/apache2/conf.d/zoneminder.conf) appers to be in place, and it looks like this:

Code: Select all

Alias /zm /usr/share/zoneminder

<Directory /usr/share/zoneminder>
  php_flag register_globals off
  Options Indexes FollowSymLinks
  <IfModule mod_dir.c>
    DirectoryIndex index.php
  </IfModule>
</Directory>
Checked that /usr/share/zonmider is present, checked index.php has global red permissions.

Looking at /var/log/apache2/access.log I get:

Code: Select all

192.168.0.3 - - [03/Aug/2014:06:40:08 +0800] "GET /zm HTTP/1.1" 404 492 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0"
Don't know what the problem might be. Please help!!!
yarek
Posts: 2
Joined: Sat Aug 02, 2014 10:49 pm

Re: Web interface not working after upgrading to Linux 14.04

Post by yarek »

Fixed: found out that now need to do this since Ubuntu 13.10:

Code: Select all

ln -s /etc/zm/apache.conf /etc/apache2/conf-enabled/zoneminder.conf
Locked