Stills do not work, lots of deprecated function messages

Forum for questions and support relating to the 1.24.x releases only.
Locked
crooter
Posts: 4
Joined: Wed Jul 14, 2010 6:44 pm

Stills do not work, lots of deprecated function messages

Post by crooter »

Hi,

I had working ZM on Ubuntu 9.10, but after upgrade to 10.04 (ZM 1.24.2) some functionality was fully or partially lost:
- stills do not work at all
- video is being shown unstable - long time for buffering

besides that I see many messages like
Deprecated: Function ereg() is deprecated in /usr/share/zoneminder/includes/functions.php on line 808
(same problem on lines 813, 818, 823, 828)

Is there a way to fix these problems for Ubuntu 10.04?

Regards,
C
ilios
Posts: 20
Joined: Sun Jun 20, 2010 5:28 pm

Post by ilios »

same os, same issues
F5 is our mantra
crooter
Posts: 4
Joined: Wed Jul 14, 2010 6:44 pm

patch

Post by crooter »

this patch helps: replace all "ereg" with "@ereg" in /usr/share/zoneminder/includes/functions.php

with this patch stills work, at least for me.

the idea came from here:
http://drupal.org/node/514334#comment-2921094
crooter
Posts: 4
Joined: Wed Jul 14, 2010 6:44 pm

patch for removing deprecated split message

Post by crooter »

I also noticed "deprecated split" on the main page, here is the second patch:
replace "split" with "explode" in the same file (/usr/share/zoneminder/includes/functions.php)

the idea came from http://projects.ceondo.com/p/pluf/issues/233/

note, if you replace split with explode and in arguments you see something backslashed (escape sequence) - you will probably need to remove the backslash!
ilios
Posts: 20
Joined: Sun Jun 20, 2010 5:28 pm

Post by ilios »

thanks something has changed now i got
[Sun Jul 18 23:00:24 2010] [error] [client 82.50.38.220] PHP Notice: Undefined index: FocusRoot in /usr/share/zoneminder/skins/classic/includes/control_functions.php on li$
[Sun Jul 18 23:00:24 2010] [error] [client 82.50.38.220] PHP Notice: Undefined index: WhiteRoot in /usr/share/zoneminder/skins/classic/includes/control_functions.php on li$
[Sun Jul 18 23:00:24 2010] [error] [client 82.50.38.220] PHP Notice: Undefined index: WhiteRoot in /usr/share/zoneminder/skins/classic/includes/control_functions.php on li$
[Sun Jul 18 23:00:27 2010] [error] [client 82.50.38.220] PHP Deprecated: Function split() is deprecated in /usr/share/zoneminder/skins/classic/views/monitor.php on line
F5 is our mantra
crooter
Posts: 4
Joined: Wed Jul 14, 2010 6:44 pm

Post by crooter »

no idea about the index errors, with the last warning - try to replace the split with explode.
Locked