Search found 23 matches

by karlg
Fri May 06, 2005 1:04 am
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

That's what I need to know about... What is "make clean?" Is that a command? What syntax should I use exactly? Finally what about the archived events and the database question I had? I know I asked too many questions in one post! Thanks for being patient with me. :D the make clean will cl...
by karlg
Thu May 05, 2005 6:15 pm
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

I'm looking forward to trying that! One question... Since my system is currently built and running, is there any step I need to take before "re-doing" the ./configure and the rest of the install procedure again? Will it just overwrite things as it needs to? Can I skip any steps relating t...
by karlg
Thu May 05, 2005 6:13 pm
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

I'm interested in adding this patch to the main development tree. Can you confirm that it stills allows correct configuration on 32 bit systems? If so I'll include it in the next release. Phil I can't confirm 100% because i don't have a 32bit system to test on.... but i'm about 99.9% sure it won't ...
by karlg
Thu May 05, 2005 10:41 am
Forum: ZoneMinder Previous Versions
Topic: complaining about libjpeg.a
Replies: 4
Views: 4098

make sure you have libjpeg-devel rpm installed:
-rpm -q libjpeg-devel

then, try this instead:
./configure --with-mysql=/usr --with-ffmpeg --with-webdir=/var/www/html --with-cgidir=/var/www/cgi-bin
by karlg
Thu May 05, 2005 10:27 am
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

okay... so here's the final patch. diff -Naur zm-1.21.0/configure zm-1.21.0-mod/configure --- zm-1.21.0/configure 2005-03-04 07:16:16.000000000 -0500 +++ zm-1.21.0-mod/configure 2005-05-05 05:59:54.000000000 -0400 @@ -861,6 +861,7 @@ --enable-dependency-tracking do not reject slow dependency extract...
by karlg
Wed May 04, 2005 11:25 pm
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

So, i've figured out the no recording problem... has to do with finding the right libraries when building on x86_64. i'll post a patch soon. even with the path, there is another problem with pcre-devel package. it symlinks to the 32bit version of the library, instead of the 64bit which is what we wa...
by karlg
Tue May 03, 2005 3:08 pm
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

Fedora x86_64

64bit versions of many libraries are placed in /usr/lib64 and /lib64. This is done so that 32bit and 64bit libraries and binaries can be run side by side on a 64bit enabled machine with little impact to end user. (even though it makes developer's lives hell) exmaple, 64bit version of libmysqlclient....
by karlg
Fri Apr 29, 2005 10:54 am
Forum: ZoneMinder Previous Versions
Topic: 64 bit build
Replies: 35
Views: 19299

Note, It would be useful in the configure script, to change MYSQL_LIBS="-L${MYSQL_PREFIX}/lib/mysql" to something less specific... if you want to build aginst a 64bit version of the libary, this breaks. should be: MYSQL_LIBS="-L${MYSQL_PREFIX}" this way the user can specify /usr/...
by karlg
Thu Apr 29, 2004 3:05 pm
Forum: ZoneMinder Previous Versions
Topic: ZM_EVENT_IMAGE_DIGITS broken in 1.19.2?
Replies: 3
Views: 12694

when first installing zm (back about 3 months ago) i specified "3" (not sure if that is the default) for ZM_EVENT_IMAGE_DIGITS. Previous versions would write all the *-[capture/analyze].jpg files out with a preceeding 0 for the first 99 files. seems 1.19.2 doesn't do that (at least in my i...
by karlg
Wed Apr 28, 2004 5:37 pm
Forum: ZoneMinder Previous Versions
Topic: ZM_EVENT_IMAGE_DIGITS broken in 1.19.2?
Replies: 3
Views: 12694

Bah! This posted in the wrong forum. Phil? can you move it to "ZoneMinder 1.19.x"? plz?
by karlg
Wed Apr 28, 2004 5:35 pm
Forum: ZoneMinder Previous Versions
Topic: ZM_EVENT_IMAGE_DIGITS broken in 1.19.2?
Replies: 3
Views: 12694

ZM_EVENT_IMAGE_DIGITS broken in 1.19.2?

seems that ZM_EVENT_IMAGE_DIGITS is not being read properly by ZM backend when writing out the image .jpgs out into the events/#### dir. ever since upgrading, it does not properly write preceeding 0's to the file names, if ZM_EVENT_IMAGE_DIGITS is set to >2. (setting this value to "1" seem...
by karlg
Thu Apr 08, 2004 1:50 am
Forum: ZoneMinder Previous Versions
Topic: Sunlight and shadows
Replies: 27
Views: 19844

Re: Sunlight and shadows

Looks like i'm starting to have the same problem. i had 250 alarms just yesterday alone. Sunny and windy days makes a long nights digging thru alarms. haven't found a definitive pattern yet in the scores, however, with playing around with filters, looks like i can catch about 60% with minimum false ...
by karlg
Wed Apr 07, 2004 10:47 am
Forum: ZoneMinder Previous Versions
Topic: Strange stuff
Replies: 2
Views: 2172

Re: Strange stuff

It's has a 6mm lense. (dlink dcs-900w) There are no apliances near the camera, except an ir immitter mounted next to the camera (which is the source of light i'm sure). After reviewing the video a few times, the only thing we can think of is some kind of animal maybe climbing down from the roof and ...
by karlg
Tue Apr 06, 2004 1:20 am
Forum: ZoneMinder Previous Versions
Topic: Strange stuff
Replies: 2
Views: 2172

Strange stuff

Last night ZM caught <a target="zmvid" href="http://www.linuxninja.net/stuff/Event-356.mpg">THIS</a> 5 second event. WTF!

Creapy stuff. Anyone else got any strange video/events?
by karlg
Fri Apr 02, 2004 11:40 am
Forum: ZoneMinder Previous Versions
Topic: Login bug: 1 failed login blocks future logins
Replies: 4
Views: 2718

Re: Login bug: 1 failed login blocks future logins

also, for logic sake, looks like the session_write_close(); should be in the if statement that tests the results of the mysql query: (since, you're only going to write_close the session, only if the login is valid, otherwise it's going to unset/destroy the session) if ( $db_user = mysql_fetch_assoc(...