Search found 5150 matches

by zoneminder
Fri Jul 01, 2011 11:45 am
Forum: ZoneMinder 1.24.x
Topic: pb with a modified perl script to trigger an alarm
Replies: 11
Views: 6194

Re: pb with a modified perl script to trigger an alarm

That is your problem, my $eventSql = "select max(Notes) from Events"; does not make any sense and is also what is causing the error. You need to use a query like I suggested in my example, my $eventSql = "select * from Events where Id = ?"; If you only want the Notes field then y...
by zoneminder
Thu Jun 30, 2011 9:44 pm
Forum: ZoneMinder 1.24.x
Topic: All but one camera feed went blue after 1.24.4 Upgrade
Replies: 27
Views: 14728

Re: All but one camera feed went blue after 1.24.4 Upgrade

You get unrecognised ssrc messages when the camera is still sending frames for the previous connection whilst the new one is ongoing. After a minute or so, they should stop when it realises that no-one is listening. I don't think 1.25.0 is going to make any difference, there are no changes in that a...
by zoneminder
Thu Jun 30, 2011 9:40 pm
Forum: ZoneMinder 1.24.x
Topic: All but one camera feed went blue after 1.24.4 Upgrade
Replies: 27
Views: 14728

Re: All but one camera feed went blue after 1.24.4 Upgrade

If you go to Options->Debug then there are various options there that allow you to set up debug for one or more processes. Set it for about level 5 for the zmc processes and it should generate some more information. It's hard to say exactly what to look for at this stage, maybe just before the conne...
by zoneminder
Thu Jun 30, 2011 9:15 pm
Forum: ZoneMinder 1.24.x
Topic: FC15 Startup Fails
Replies: 11
Views: 5200

Re: FC15 Startup Fails

The package list is too long to post, so I have linked it here. This was a fresh install.
by zoneminder
Thu Jun 30, 2011 7:14 pm
Forum: ZoneMinder 1.24.x
Topic: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-155
Replies: 24
Views: 14370

Re: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-1

Ok good. I still don't understand why you have two different keys in use though.
by zoneminder
Thu Jun 30, 2011 7:13 pm
Forum: ZoneMinder 1.24.x
Topic: pb with a modified perl script to trigger an alarm
Replies: 11
Views: 6194

Re: pb with a modified perl script to trigger an alarm

Please post your whole script. By the way this line my $eventRes = $eventSth->execute($last_event_id) or die( "Can't execute '$sql': ".$eventSth->errstr() ); Should be my $eventRes = $eventSth->execute($last_event_id) or die( "Can't execute '$eventSql': ".$eventSth->errstr() ); b...
by zoneminder
Thu Jun 30, 2011 7:11 pm
Forum: ZoneMinder 1.24.x
Topic: FC15 Startup Fails
Replies: 11
Views: 5200

Re: FC15 Startup Fails

It may not throw an error, but that doesn't necessarily mean it is working correctly so check thoroughly for any errors. As I said before, other F15 installs do not have this problem so there may be something else that is behind this and I'd like to know what.
by zoneminder
Thu Jun 30, 2011 9:10 am
Forum: ZoneMinder 1.25.x
Topic: ZoneMinder 1.25.0 - preview
Replies: 91
Views: 62525

Re: ZoneMinder 1.25.0 - preview

I will be updating the 1.25.0 preview in the next day or two. There was (is?) an issue with components losing logging connections to the database after a couple of days and dying, then not being restarted. I have done a fix and am leaving it to run to check that it works, which so far it looks like ...
by zoneminder
Thu Jun 30, 2011 7:30 am
Forum: ZoneMinder 1.24.x
Topic: FC15 Startup Fails
Replies: 11
Views: 5200

Re: FC15 Startup Fails

I think that is a red(hat) herring. It is being used correction according to 'perldoc Sys::Mmap'. NAME Mmap - uses mmap to map in a file as a Perl variable SYNOPSIS use Sys::Mmap; new Mmap $str, 8192, 'structtest2.pl' or die $!; new Mmap $var, 8192 or die $!; mmap($foo, 0, PROT_READ, MAP_SHARED, FIL...
by zoneminder
Thu Jun 30, 2011 7:26 am
Forum: ZoneMinder 1.24.x
Topic: All but one camera feed went blue after 1.24.4 Upgrade
Replies: 27
Views: 14728

Re: All but one camera feed went blue after 1.24.4 Upgrade

It might be worth switching on debug to get a better picture of exactly what is happening with communications to the cameras.
by zoneminder
Thu Jun 30, 2011 7:24 am
Forum: ZoneMinder 1.24.x
Topic: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-155
Replies: 24
Views: 14370

Re: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-1

What is your shared memory key actually set to, in Options->System->SHM_KEY?
by zoneminder
Wed Jun 29, 2011 9:44 pm
Forum: ZoneMinder 1.24.x
Topic: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-155
Replies: 24
Views: 14370

Re: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-1

Without information from other logs it is difficult to say what is going on. But until everything is using the same shared memory keys I don't think we are going to get anywhere.
by zoneminder
Wed Jun 29, 2011 9:29 pm
Forum: ZoneMinder 1.24.x
Topic: All but one camera feed went blue after 1.24.4 Upgrade
Replies: 27
Views: 14728

Re: All but one camera feed went blue after 1.24.4 Upgrade

The only things that jumps out is that one monitor has a path that starts with /jpg and the other starts with just jpg. Have you tried setting them both the same? Though I can't see why that would make any difference but sometimes cameras are a bit touchy.
by zoneminder
Wed Jun 29, 2011 9:24 pm
Forum: ZoneMinder 1.24.x
Topic: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-155
Replies: 24
Views: 14370

Re: [Almost Solved] v1.24.2 on Ubuntu Server 10.10 with PV-1

The owner and permissions look ok. What doesn't look ok is that you have segments with a key of 0x07a60001 and zmwatch is looking ones keyed as 0x7a6d0001. All components should get them from the same config so I don't know why they are looking for different ones. There isn't really ever any reason ...
by zoneminder
Wed Jun 29, 2011 9:12 pm
Forum: ZoneMinder 1.24.x
Topic: To many Picture per Minute
Replies: 2
Views: 1742

Re: To many Picture per Minute

For IP cameras you cannot slow down the frame rate in ZoneMinder (unless you are only capturing single jpeg images each time). You will either need to configure your camera to send images at a slower rate or some cameras allow you to specify a maximum rate in the url you give to ZoneMinder to captur...