Successful upgrade from 1.26.5 on Ubuntu 13.10

Forum for questions and support relating to the 1.27.x releases only.
Locked
windracer
Posts: 61
Joined: Sat Jul 23, 2011 1:15 am

Successful upgrade from 1.26.5 on Ubuntu 13.10

Post by windracer »

Just wanted to post that I have successfully upgraded my 1.26.5 install on Ubuntu 13.10 to 1.27 via source. I used the new cmake method described in the INSTALL document. The only problem I had was originally missing the trailing dot on the cmake command-line (cmake -C zm_conf.cmake .).

I love the new flat skin! I have a minor issue where the new windows (filters, monitors, etc.) are opening up too small for the new controls, but other than that it looks great.
bodhicitta
Posts: 3
Joined: Fri Mar 21, 2014 7:32 am

Re: Successful upgrade from 1.26.5 on Ubuntu 13.10

Post by bodhicitta »

Hi,

I am fairly new to zm & linux. I am trying to do a fresh install of zm 1.27 on my ubuntu 12.04. I am stuck at 'create an apache virtual host for zoneminder' in the INSTALL file. What commands do i use exactly to achieve this?

Thanks
windracer
Posts: 61
Joined: Sat Jul 23, 2011 1:15 am

Re: Successful upgrade from 1.26.5 on Ubuntu 13.10

Post by windracer »

You can read about setting up apache virtual hosts here:

http://httpd.apache.org/docs/2.2/vhosts/

In my Ubuntu installation, I have a zoneminder.conf file under /etc/apache2/conf-available with the following contents:

Code: Select all

Alias /zm /usr/local/zoneminder

<Directory /usr/local/zoneminder>
  php_flag register_globals off
  Options Indexes FollowSymLinks
  Require all granted
  <IfModule mod_dir.c>
    DirectoryIndex index.php
  </IfModule>
</Directory>
Then you symlink to that file under /etc/apache2/conf-enabled so apache uses it during startup.
bbunge
Posts: 2934
Joined: Mon Mar 26, 2012 11:40 am
Location: Pennsylvania

Re: Successful upgrade from 1.26.5 on Ubuntu 13.10

Post by bbunge »

You can use the Ubuntu install at:
http://www.zoneminder.com/wiki/index.ph ... e_easy_way

You do have to add the delay to : /etc/init.d/zoneminder.
To the package installers version of the file add sleep 15 as shown:
start() {
sleep 15
echo -n "Starting $prog: "


You do not have to patch : /etc/zm/zm.conf

I have done a fresh Ubuntu 12.04 install using the ZM 1.27 from the PPA and have upgraded a running, 15 camera, 12.04 1.26.5 to 1.27 from the PPA. Do an "apt-get dist-upgrade" to get the 1.27.

bb
bodhicitta
Posts: 3
Joined: Fri Mar 21, 2014 7:32 am

Re: Successful upgrade from 1.26.5 on Ubuntu 13.10

Post by bodhicitta »

Thanks a lot guys...worked out well... :)
Locked