Search found 6 matches

by Stef
Sun Dec 15, 2013 11:20 pm
Forum: ZoneMinder 1.25.x
Topic: Can't add monitor, missing mootools
Replies: 4
Views: 28165

Re: Can't add monitor, missing mootools

I have recently updated to 1.26.5 and have also ran into the "Missing MooTools" problem. The apache2 error log contained: File does not exist: /usr/share/zoneminder/tools/mootools/mootools-core.js, referer: http://192.168.200.123/zm/ File does not exist: /usr/share/zoneminder/tools/mootool...
by Stef
Thu Jun 14, 2012 7:03 am
Forum: ZoneMinder 1.25.x
Topic: Trigger a script when there is an alarm in 1.25
Replies: 16
Views: 10179

Re: Trigger a script when there is an alarm in 1.25

I am afraid that I only use Windows for games & netflix. I am not able to help you with this - at least on the Windows side. I imagine you may have to look for some sort of program that listen for commands directed at a specific port on the IP address of the Windows XP PC. It should be easy do d...
by Stef
Tue Jun 12, 2012 5:34 am
Forum: ZoneMinder 1.25.x
Topic: Trigger a script when there is an alarm in 1.25
Replies: 16
Views: 10179

Re: Trigger a script when there is an alarm in 1.25

I am not sure I understand what you want. Do you want a firefox window to open on another computer when zoneminder alarms? I

Regards,
Stefan
by Stef
Mon Jun 04, 2012 3:33 am
Forum: ZoneMinder 1.25.x
Topic: Trigger a script when there is an alarm in 1.25
Replies: 16
Views: 10179

Re: Trigger a script when there is an alarm in 1.25

Thanks! This is the setup I have currently: #!/bin/bash tail -f /var/log/messages | grep --line-buffered 'Cam2.*Gone into alarm state' | while read line; do curl -o --url xxx/sound.php >/dev/null 2>&1; echo $line; done On the computer which will play the sound: /var/www/sound.php <?php shell_exe...
by Stef
Fri Jun 01, 2012 3:41 pm
Forum: ZoneMinder 1.25.x
Topic: Trigger a script when there is an alarm in 1.25
Replies: 16
Views: 10179

Re: Trigger a script when there is an alarm in 1.25

Thanks for the reply. I want to trigger audio on another computer on the network. The idea is to play the sound of a barking dog. I will try the message log idea. It does seem that there is a good system built into ZM to trigger external events. I thought it would be a streamlined way of doing this....
by Stef
Fri Jun 01, 2012 5:20 am
Forum: ZoneMinder 1.25.x
Topic: Trigger a script when there is an alarm in 1.25
Replies: 16
Views: 10179

Trigger a script when there is an alarm in 1.25

The original under "How can I use ZoneMinder to trigger something else when there is an alarm?" from the FAQ seems to be applicable to the previous version of ZoneMinder. This line: zmDbgInit( "myscript", level=>0, to_log=>0, to_syslog=>0, to_term=>1 ); refers to a function that ...