Search found 219 matches

by Normando
Tue Jul 07, 2009 2:25 am
Forum: ZoneMinder Previous Versions
Topic: A question about ZM_AUTH_RELAY
Replies: 2
Views: 2087

Thank you Cordel for your reply.
by Normando
Fri Jul 03, 2009 4:02 pm
Forum: User Contributions
Topic: Progress Bar + zm-1.21.0-304.FC is out!
Replies: 5
Views: 6170

I was tried to implement manually the patch to zm 1.23.3 without succsess.

Some help with this? :oops:

Regards
Normando
by Normando
Thu Jul 02, 2009 7:13 pm
Forum: User Contributions
Topic: Patch - Emailing red outlined image
Replies: 5
Views: 4325

This hack shoul be enclosed in an if statement for ZM_CREATE_ANALYSIS_IMAGES
by Normando
Tue Jun 30, 2009 4:19 am
Forum: ZoneMinder Previous Versions
Topic: A question about ZM_AUTH_RELAY
Replies: 2
Views: 2087

A question about ZM_AUTH_RELAY

I have using ZM with apache auth. I have set ZM_AUTH_TYPE to "remote". Then I have added the same users for apache auth and ZM. I can login to ZM, but the only way I can view the stream is setting ZM_AUTH_RELAY to "none". It is ok? I have tested with hashed and plain and not work...
by Normando
Mon Jun 29, 2009 2:01 pm
Forum: ZoneMinder 1.24.x
Topic: BUG: zmpkg.pl does not enable cameras from state changes
Replies: 4
Views: 3549

Yes Phil! You are correct. Changing the line to

Code: Select all

$monitor->{NewEnabled} = 0 if ( !$monitor->{NewEnabled} );
fix the issue.

Regards
by Normando
Mon Jun 29, 2009 1:45 pm
Forum: User Contributions
Topic: Value of timeout.tv_usec off by a factor of 1000
Replies: 3
Views: 4422

Ohh, yes, I now I understand the concept.

Thanks for the clarification Phil

Regards
by Normando
Mon Jun 29, 2009 1:44 am
Forum: User Contributions
Topic: Value of timeout.tv_usec off by a factor of 1000
Replies: 3
Views: 4422

I have knoledge with C++ but it is a simple mathematics. 1 sec = 1000000 usec So: timeout.tv_sec = config.http_timeout/1000; timeout.tv_usec = config.http_timeout%1000; should be: timeout.tv_sec = config.http_timeout/1000; timeout.tv_usec = config.http_timeout*1000; Phil, can you confirm this? Thanks
by Normando
Sun Jun 28, 2009 6:27 pm
Forum: ZoneMinder Previous Versions
Topic: How to force to download video?
Replies: 5
Views: 2801

jajajaja "johnnytolengo". Te gustaba mucho Calabró?

Saludos

Sorry for the offtopic
by Normando
Sun Jun 28, 2009 6:57 am
Forum: User Contributions
Topic: Bug in states?
Replies: 3
Views: 3664

by Normando
Sun Jun 28, 2009 6:54 am
Forum: ZoneMinder 1.24.x
Topic: Print temperature on Images?
Replies: 16
Views: 10713

lukelukeluke wrote:wow! Thanks Normando! Just did everything you wrote and it worked perefctly fine like that! An instruction like this should be added into the zmwiki or manual!
Btw.: It even works with Monitor-Mode (No motion detection).
Great :D
by Normando
Sat Jun 27, 2009 3:50 pm
Forum: ZoneMinder 1.24.x
Topic: Print temperature on Images?
Replies: 16
Views: 10713

1- Comment those channels you will not use. In my case I only use port 6802 to control zmtrigger.pl, so comment the rest of connection in zmtrigger.pl my @connections; push( @connections, ZoneMinder::Trigger::Connection->new( name=>"Chan1", channel=>ZoneMinder::Trigger::Channel::Inet->new(...
by Normando
Sat Jun 27, 2009 5:08 am
Forum: ZoneMinder 1.24.x
Topic: 1970-01-01 01:00:00
Replies: 1
Views: 1788

I don't know if it is related, but I was have the same issue with ZM 1.23.3. Look at

http://www.zoneminder.com/forums/viewtopic.php?t=12943

and

http://www.zoneminder.com/forums/viewto ... 8574#48574
by Normando
Sat Jun 27, 2009 5:05 am
Forum: ZoneMinder 1.24.x
Topic: Record as long as there is motion?
Replies: 4
Views: 2663

Try disabling "BLEND_ALARMED_IMAGES" at options.
by Normando
Sat Jun 27, 2009 4:56 am
Forum: ZoneMinder 1.24.x
Topic: Print temperature on Images?
Replies: 16
Views: 10713

Has anyone read the perfect description of zmtrigger? At http://www.zoneminder.com/wiki/index.php/Documentation#Components you can read: zmtrigger.pl This is an optional script that is a more generic solution to external triggering of alarms. It can handle external connections via either internet so...