Update from beta 1.26.0 - 1.26.3 problem

Forum for questions and support relating to the 1.26.x releases only.
Locked
jancolle
Posts: 4
Joined: Sun Aug 25, 2013 2:33 pm

Update from beta 1.26.0 - 1.26.3 problem

Post by jancolle »

Hi

When upgrading the db from 1.26.0 to 1.26.3 using zmupdate.pl, I'm getting this error.:

Can't find upgrade from version '1.26.0' at /usr/local/bin/zmupdate.pl line 1054, <STDIN> line 2.

And in the webinterface, it say.:

Version mismatch, system is version 1.26.3, database is 1.26.0.

Please run zmupdate.pl to update

How do I upgrade the db ?

/Jan
User avatar
knight-of-ni
Posts: 2406
Joined: Thu Oct 18, 2007 1:55 pm
Location: Shiloh, IL

Re: Update from beta 1.26.0 - 1.26.3 problem

Post by knight-of-ni »

Try this:

Change line 1002 of zmupdate.pl
FROM:

Code: Select all

( $cascade || $version lt "1.26.0" )
TO:

Code: Select all

( $cascade || $version le "1.26.0" )
zmupdate.pl will either be in /usr/bin or /usr/local/bin
Visit my blog for ZoneMinder related projects using the Raspberry Pi, Orange Pi, Odroid, and the ESP8266
All of these can be found at https://zoneminder.blogspot.com/
Locked