Search found 5 matches

by aleatorvb
Fri Nov 08, 2013 7:46 am
Forum: ZoneMinder 1.25.x
Topic: Load not being shown in web ui on freebsd
Replies: 1
Views: 915

Re: Load not being shown in web ui on freebsd

Shorter (and better) version of getLoad()

Code: Select all

function getLoad()
{
    $uptime = shell_exec( 'uptime' );
    $load = '';
    if ( preg_match( '/load average[s]{0,1}: ([\d.]+)/', $uptime, $matches ) )
        $load = $matches[1];
    return( $load );
}
by aleatorvb
Fri Nov 08, 2013 7:24 am
Forum: ZoneMinder 1.25.x
Topic: Load not being shown in web ui on freebsd
Replies: 1
Views: 915

Load not being shown in web ui on freebsd

Load not being shown in web ui on freebsd. On ubuntu the uptime string is ... load average: ... On freebsd the uptime string is ... load averages: ... Modified file functions.php and replaced getLoad() with function getLoad() { $uptime = shell_exec( 'uptime' ); $load = ''; if ( preg_match( '/load ...
by aleatorvb
Fri Nov 08, 2013 6:28 am
Forum: ZoneMinder 1.25.x
Topic: Error: Out of range value for column 'Score' at row 1, zm_e
Replies: 0
Views: 989

Error: Out of range value for column 'Score' at row 1, zm_e

I have the following two errors in my log, repeated over and over 2013-11-08 08:23:49.523690 zmdc 36692 ERR 'zma -m 1' exited abnormally, exit status 240 zmdc.pl 2013-11-08 08:23:49.520145 zma_m1 101135 ERR Can't insert frame: Out of range value for column 'Score' at row 1 zm_event.cpp 570 I've ...
by aleatorvb
Mon Aug 06, 2012 6:19 am
Forum: ZoneMinder 1.25.x
Topic: Zoneminder on system A. Can i use a webcam attached to pc B?
Replies: 3
Views: 2155

Re: Zoneminder on system A. Can i use a webcam attached to p

Thank you for the information. All that's left now is to hunt down some softare for ubuntu and windows that let's me do that reliably. Didn't realize zoneminder can do a loopback from itself. So you have Camera A -> zoneminder -> defined as A - always record -> feed to zm camera B "motion record ...
by aleatorvb
Fri Aug 03, 2012 2:40 pm
Forum: ZoneMinder 1.25.x
Topic: Zoneminder on system A. Can i use a webcam attached to pc B?
Replies: 3
Views: 2155

Zoneminder on system A. Can i use a webcam attached to pc B?

Consider this situation: Zoneminder installed and fully working on system A. I have another system (that is always on) - system B with one or more webcam (lets say just one for the sake of keeping it symple). Can i add to zoneminder/A the webcam on system B ? Both run the lastest stable version of ...