Search found 129 matches

by Paranoid
Thu Jul 14, 2011 4:01 pm
Forum: ZoneMinder 1.24.x
Topic: Which filesystem do you prefer?
Replies: 1
Views: 1578

Re: Which filesystem do you prefer?

I wouldn't use reiserfs or reiser4. The original lead developer (Hans Reiser) has been jailed for murder and it is uncertain what development is now taking place with it. There are a couple of things you can do to improve performance. If you have large numbers of events then you should consider sett...
by Paranoid
Mon May 02, 2011 12:38 pm
Forum: User Contributions
Topic: Corrupted graphic
Replies: 0
Views: 1391

Corrupted graphic

The down right graphic for pan/tilt control (located in ZM_PATH_WEB/skins/classic/graphics/arrow-dr.gif) is corrupted. As a result Firefox 4.0 doesn't display it.
by Paranoid
Mon May 02, 2011 12:29 pm
Forum: ZoneMinder 1.24.x
Topic: Missing Down Right Button on Controls With Firefox 4.0
Replies: 4
Views: 2851

Re: Missing Down Right Button on Controls With Firefox 4.0

Hello, I'm using ZoneMinder 1.24.2-3 on Ubuntu 10.04 x64 and I seem to be missing the Down Right Button control using Firefox 4.0. I'm almost certain this is web browser related because all the buttons appear when using Internet Exploder. Has anyone else experienced this and is there a solution? Th...
by Paranoid
Thu Apr 07, 2011 9:58 am
Forum: ZoneMinder 1.24.x
Topic: please help set up the camera
Replies: 4
Views: 2658

Re: please help set up the camera

Have a look at this post http://www.zoneminder.com/forums/viewtopic.php?f=14&t=14295 It might give you some ideas. Stop zoneminder and anything else using the video device. Unload the bttv driver (sudo modprobe -r bttv) Reload the bttv driver (sudo modprobe bttv) Get the kernel messages (sudo dm...
by Paranoid
Thu Apr 07, 2011 9:35 am
Forum: ZoneMinder 1.24.x
Topic: USB Camera - Device path.....
Replies: 2
Views: 2292

Re: USB Camera - Device path.....

Run GUVCViewer
Find out what the process id is for GUVCViewer.
Type the following command:

Code: Select all

 $ sudo lsof -p pid
where pid is the process id for GUVCViewer
This will list every device and file GUVCViewer has open. You should be able to see the video device from this.
by Paranoid
Thu Apr 07, 2011 9:19 am
Forum: ZoneMinder 1.24.x
Topic: Problem with Continuous record
Replies: 1
Views: 1733

Re: Problem with Continuous record

It sounds like your disk is pretty heavily used (continuous record, multiple monitors etc) so it might be that the disk has been corrupted. you could try forcing an fsck of the disk. This should fix any disk corruption.
by Paranoid
Thu Apr 07, 2011 9:10 am
Forum: ZoneMinder 1.24.x
Topic: Card/Camera not working (878a - "PICO 2000")
Replies: 2
Views: 1618

Re: Card/Camera not working (878a - "PICO 2000")

Solved: read/write permissions for Zoneminder. When you restart your Linux, /dev/video0 is "mounted" by root, and ZM cannot access it. You have to change the permissions to "www-data", the ZM user. I'm looking for some help in how to change permissions when booting (auto). You m...
by Paranoid
Thu Nov 11, 2010 2:43 pm
Forum: ZoneMinder 1.24.x
Topic: MySQL error when Pre Event Img Cnt set close to Img Buff Sz
Replies: 3
Views: 2154

The zoneminder code builds the sql statement in a buffer of a fixed size. When you have more than about 120 pre event images the buffer fills up and the remaining part of the sql statement is not added. As a result when it tries to execute the sql you get the "You have an error in your SQL synt...
by Paranoid
Mon Jul 05, 2010 9:41 am
Forum: ZoneMinder 1.24.x
Topic: Export failed
Replies: 30
Views: 18234

zmaudit is controlled via the options->system menu. Look for RUN_AUDIT and AUDIT_CHECK_INTERVAL items.

You need to ensure that when you bring the computer back up it does not start the zoneminder processes otherwise it will start deleting again.
by Paranoid
Mon Jul 05, 2010 12:11 am
Forum: ZoneMinder 1.24.x
Topic: Export failed
Replies: 30
Views: 18234

If there is still time then kill the zmaudit process. My guess is that you changed the setting for where the event images are stored (DIR_EVENTS) and zmaudit then ran and deleted all the event entries from the database because it could not find the events. You then changed it back and zmaudit starte...
by Paranoid
Sun Jul 04, 2010 8:32 pm
Forum: ZoneMinder 1.24.x
Topic: Export failed
Replies: 30
Views: 18234

The path to the export directory is hard coded into the php code. Look for the directory /usr/share/zoneminder/temp which is where it will store the files to be exported.

Any errors will appear in the apache error log file
by Paranoid
Sun Jul 04, 2010 5:00 pm
Forum: ZoneMinder 1.24.x
Topic: Export failed
Replies: 30
Views: 18234

Check the permissions on the temp directory. It must be writable by whatever user is running the http processes (wwrun on my system). If you are really desperate you could try changing the directory permissions to 777. Also, are you sure you are looking in the correct directory? On mine the temporar...
by Paranoid
Mon Jun 28, 2010 7:03 am
Forum: ZoneMinder 1.24.x
Topic: How to enable this kind of events view
Replies: 28
Views: 14351

Options -> Config
Tick the "CREATE_ANALYSIS_IMAGES" box.
by Paranoid
Thu Jun 24, 2010 11:53 pm
Forum: ZoneMinder 1.24.x
Topic: Multiple PTZ controllers on single RS485 line
Replies: 0
Views: 1204

Multiple PTZ controllers on single RS485 line

First, details of my setup. I have an RS232 to RS485 converter on the server running ZM. From this there is a pair of wires running to the first camera and then from the first camera to the second camera etc. This all works okay and I can control all the cameras. The problem I'm having is that I rec...
by Paranoid
Tue Jun 15, 2010 4:05 pm
Forum: ZoneMinder 1.24.x
Topic: new (?) function
Replies: 2
Views: 1878

Try this (untested): #!/usr/bin/ksh MYSQL=/usr/bin/mysql USER=zm_admin PASS=password ID=1 DB=zm INTERVAL=3600 EMAIL="somebody@example.com a.n.other@example.com" since=`$MYSQL -ss -u $USER --password=$PASS -D $DB -e "select UNIX_TIMESTAMP() - UNIX_TIMESTAMP(max(StartTime)) from Events ...