Search found 9 matches
- Wed Nov 27, 2013 3:53 am
- Forum: ZoneMinder 1.26.x
- Topic: Email stopped working??? 1.26.4
- Replies: 6
- Views: 2731
Re: Email stopped working??? 1.26.4
Is the OPT_EMAIL option enabled (under "Email" in the options)?
- Wed Nov 27, 2013 3:44 am
- Forum: ZoneMinder 1.26.x
- Topic: New install -already running apache- linking zm conf?
- Replies: 3
- Views: 2810
Re: New install -already running apache- linking zm conf?
Yes, you could put all of this in your main httpd.conf, but by keeping it a separate file, the zoneminder package maintainers can easily keep the directives specific to zoneminder isolated and updated independently of your main httpd.conf file. Would you prefer to be making hand edits to merge their ...
- Tue Nov 26, 2013 4:10 pm
- Forum: ZoneMinder 1.26.x
- Topic: New install -already running apache- linking zm conf?
- Replies: 3
- Views: 2810
Re: New install -already running apache- linking zm conf?
The symlink into /etc/apache2/conf.d is the standard Debian/Ubuntu approach to adding new components to your existing Apache installation. It does not replace your running Apache configuration nor should it affect anything on your server unless you have stuff already under a /zm/ path. Take a look ...
- Sun Nov 24, 2013 6:20 pm
- Forum: ZoneMinder 1.26.x
- Topic: Signal 11 - segmentation fault errors - backtrace included!
- Replies: 8
- Views: 5292
Re: Signal 11 - segmentation fault errors - backtrace includ
If I may make a suggestion: use signed ints for everything. If you need that one extra bit that you've lost to the sign, it's rare that one additional bit will solve your problem permanently, so just upgrade to a 64-bit signed int. The safety and readability and maintainability benefits of using ...
- Sat Nov 23, 2013 4:31 pm
- Forum: ZoneMinder 1.26.x
- Topic: Zoneminder 1.26 false alarms on webcam disconnects
- Replies: 1
- Views: 1451
Re: Zoneminder 1.26 false alarms on webcam disconnects
I think a disconnection itself is also cause to trigger an alarm, independently of motion. Possibly this could be a configurable option. The way I've solved it with my cameras is to increase the Alarm Frame Count in the Buffers tab to 2. The disconnection alarm seems to only hit one frame.
- Sat Nov 23, 2013 4:22 pm
- Forum: ZoneMinder 1.26.x
- Topic: Mocord monitor always recording
- Replies: 12
- Views: 20593
Re: Mocord monitor always recording
I actually had the same observation when reading this wiki for the first time. Since it's a wiki I just went in and tried to improve the descriptions a little bit to make this clearer.digitel wrote: For a newbie , it would be better if description says :
- Sat Nov 23, 2013 4:04 pm
- Forum: ZoneMinder 1.26.x
- Topic: Signal 11 - segmentation fault errors - backtrace included!
- Replies: 8
- Views: 5292
Re: Signal 11 - segmentation fault errors - backtrace includ
I suspect this was due to the use of an unsigned int rather than an int at zm_remote_camera_http.cpp:1148, but looking at HEAD this appears to be fixed (commit 5a9364703c983bc7177a306f5446b91854c5dd09 by mastertheknife). I, not being a regular contributor to the project, would expect this problem to ...
- Wed Nov 06, 2013 9:07 pm
- Forum: Feature Requests
- Topic: Future development: Separation of components, pubsub, 3D
- Replies: 0
- Views: 1831
Future development: Separation of components, pubsub, 3D
I wanted to post this to the Future Development forum but my request to join the group has been pending for a while now so I thought I'd post it here while the ideas are still fresh. All of the components of ZM are tightly coupled. I'd like to see future versions written more with an eye toward ...
- Sun Nov 03, 2013 3:59 pm
- Forum: Feature Requests
- Topic: Memory or RamDrive Buffer?
- Replies: 5
- Views: 7585
Re: Memory or RamDrive Buffer?
Most operating systems already use such a buffer for disk writes. Writing a thousand tiny files in a short period of time does not result in a thousand tiny write IOPS. For Linux specifically (the site won't let me paste links since I'm a "new user", but you can probably figure these out): www ...