zm 1.19.2 released
- lazyleopard
- Posts: 403
- Joined: Tue Mar 02, 2004 6:12 pm
- Location: Gloucestershire, UK
zm 1.19.2 released
Thanks Phil. It looks like it's got a good set of new features along with the fixes.
Rick Hewett
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
It should be pretty easy to upgrade 1.19.1 to 1.19.2 though there are database changes. The full details are in the README but in essence (from memory) do
<stop ZM from either web or command line>
tar xvfz zm-1.19.2.tar.gz
cd zm-1.19.2
./configure <etc etc etc>
cp ../zm-1.19.1/zmconfig.txt . # Assuming that ../zm-1.19.1 is where you built the previous version and that you want to keep your previous configuration.
perl zmconfig.pl -noi # This will assign default values to any new config, and delete any no longer used
mysql zm < db/zmalter-1.19.1.sql # Apply database diffs from 1.19.1, you may need to give a username and password here.
make
make install
<start ZM from either web or command line>
I think that should do it!
Phil,
<stop ZM from either web or command line>
tar xvfz zm-1.19.2.tar.gz
cd zm-1.19.2
./configure <etc etc etc>
cp ../zm-1.19.1/zmconfig.txt . # Assuming that ../zm-1.19.1 is where you built the previous version and that you want to keep your previous configuration.
perl zmconfig.pl -noi # This will assign default values to any new config, and delete any no longer used
mysql zm < db/zmalter-1.19.1.sql # Apply database diffs from 1.19.1, you may need to give a username and password here.
make
make install
<start ZM from either web or command line>
I think that should do it!
Phil,
- lazyleopard
- Posts: 403
- Joined: Tue Mar 02, 2004 6:12 pm
- Location: Gloucestershire, UK