Search found 2906 matches

by iconnor
Thu Apr 25, 2024 9:45 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: How to stop monitor stream?
Replies: 4
Views: 230

Re: How to stop monitor stream?

Because zms quits, but you havnt stopped the ajax status requests
by iconnor
Thu Apr 25, 2024 1:47 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: error updating the db 1.37.59 from 1.37.57
Replies: 4
Views: 273

Re: error updating the db 1.37.59 from 1.37.57

It sounds like maybe both tables exist, which just makes this a huge mess.

If you actually have any snapshots, you might want to look in those tables and see if there is anything in them.

I am pushing an update to make it check for existence of both.
by iconnor
Thu Apr 25, 2024 1:38 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: How to stop monitor stream?
Replies: 4
Views: 230

Re: How to stop monitor stream?

Uh... Something is bad here. I was under the impression that sending the CMD_STOP would stop the stream.... apparently all it does is unpause.... which is very counter-intuitive. CMD_QUIT will cause zms to exit, which will do the job. Maybe CMD_PAUSE would suffice though, so you could then send CMD_...
by iconnor
Wed Apr 17, 2024 1:37 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: [FIXED] - ISSUE/BUG - Event delete issue
Replies: 6
Views: 718

Re: ISSUE/BUG - Event delete issue

Just pushed a fix. New packages are building.
by iconnor
Wed Apr 17, 2024 12:59 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: 1.37.57: Unable to connect IP camera as monitor
Replies: 26
Views: 2294

Re: 1.37.57: Unable to connect IP camera as monitor

If the camera supports rtsp and/or rtmp it should work. If it can work in vlc, it can work in zm. If not, then... not. If their support goes on about not supporting linux... then... demand that it work in vlc on windows. Or mac. Narrow the demand down to something that they have to support. If it wo...
by iconnor
Wed Apr 17, 2024 12:50 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: [FIXED] - ISSUE/BUG - Event delete issue
Replies: 6
Views: 718

Re: ISSUE/BUG - Event delete issue

There is likely a javascript error... can you right click, inspect element, go to console tab and see if anything useful is there?
by iconnor
Thu Apr 11, 2024 1:39 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: ERR Could not send packet
Replies: 3
Views: 581

Re: ERR Could not send packet

You can turn on debug logging, maybe ffmpeg will log something meaningful.
by iconnor
Wed Apr 10, 2024 9:44 pm
Forum: ZoneMinder 1.36.x
Topic: EDIT and DELETE monitor grayed out
Replies: 3
Views: 408

Re: EDIT and DELETE monitor grayed out

Looking at the styling... I think a javascript error is causing it to not enable them. Check javascript console
by iconnor
Wed Apr 10, 2024 10:50 am
Forum: ZoneMinder 1.36.x
Topic: [1.36.33] VPN over GSM, network bandwith to spare.
Replies: 1
Views: 319

Re: [1.36.33] VPN over GSM, network bandwith to spare.

Yes. This called multi-server
by iconnor
Tue Apr 09, 2024 1:35 pm
Forum: ZoneMinder 1.36.x
Topic: Corrupted Stats table (dropped - need to recreate?) [SOLVED]
Replies: 3
Views: 343

Re: Corrupted Stats table (dropped - need to recreate?)

You can likely do without it, but you will want to turn off trying to write to it under Options->Logging->RECORD_EVENT_STATS

You can find the table definitions in /usr/share/zoneminder/db/zm_create.sql
by iconnor
Mon Apr 08, 2024 10:43 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: 1.37.57: Unable to connect IP camera as monitor
Replies: 26
Views: 2294

Re: 1.37.57: Unable to connect IP camera as monitor

It means that we don't recognize the make/model of the camera and hence don't know what to do with it. You should try the onvif probe.
by iconnor
Mon Apr 08, 2024 2:01 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: MySQL Indexes of Logs table
Replies: 7
Views: 708

Re: MySQL Indexes of Logs table

It should not exist.
1.37.58 will remove it and add a component index.
by iconnor
Sun Apr 07, 2024 9:32 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: MySQL Indexes of Logs table
Replies: 7
Views: 708

Re: MySQL Indexes of Logs table

THe only indexes should be as follows: CREATE INDEX `Logs_TimeKey_idx` ON `Logs` (`TimeKey`); CREATE INDEX `Logs_Level_idx` ON `Logs` (`Level`); We can add more, but as I was saying mysql won't use them unless we also change the ORDER BY. What we probably need to do is REMOVE the sorting and let boo...