Search found 17 matches

by gregh-cctvsuppliers
Tue Dec 29, 2009 12:46 am
Forum: User Contributions
Topic: Zoneminder 1.24.2 on Freebsd 7.2 x86 and amd64
Replies: 2
Views: 5761

No, but go ahead

I wasn't planning on submitting it for the ports collection, but go right ahead. There are two variables that you might need to change in the Makefile. If you want mysql version 5, you need to change all instances of mysql40 to mysql50. In addition, the jpeg.x may need to be changed to jpeg.so in ...
by gregh-cctvsuppliers
Fri Nov 20, 2009 5:52 am
Forum: ZoneMinder 1.24.x
Topic: umask 002
Replies: 3
Views: 2689

Nevermind

Nevermind, I found it.

I modified umask to 2 in /root/.cshrc
and
added Defaults !umask in /usr/local/etc/sudoers

Thanks again.
Greg
by gregh-cctvsuppliers
Fri Nov 20, 2009 3:51 am
Forum: ZoneMinder 1.24.x
Topic: umask 002
Replies: 3
Views: 2689

Worked

That didn't work, I found a few more places in zm_monitor.cpp and zm_events.cpp and I changed those too. I'm running 24.2 version of zoneminder with FreeBSD 7.2 So I did sudo -u www umask and it said 0022 So I tried changing the umask inside of /etc/login.conf (I only had one uncommented umask, the ...
by gregh-cctvsuppliers
Thu Nov 19, 2009 6:53 am
Forum: ZoneMinder 1.24.x
Topic: umask 002
Replies: 3
Views: 2689

umask 002

Anyone know how to modify zoneminder such that the the making of the event folder is marked as umask 002.

In other words inherit the group permissions of the parent folder when making the directory.

In other words mkdir -m g=rw [next event number]
by gregh-cctvsuppliers
Tue Nov 17, 2009 12:03 am
Forum: ZoneMinder 1.24.x
Topic: Parse error: syntax error, unexpected $end
Replies: 6
Views: 9839

use php.ini-dist instead

I had the same problem. Then I realized for the first time I used php.ini-recommended instead of php.ini-dist

After doing cp php.ini-dist php.ini in the /usr/local/etc directory, It came up no problems.
by gregh-cctvsuppliers
Fri Oct 30, 2009 12:48 am
Forum: ZoneMinder 1.24.x
Topic: RTSP Response parse failure
Replies: 4
Views: 3548

Port Scan using NMAP

So I did a port scan just in case... zoneminder# nmap 192.168.7.15 Starting Nmap 4.85BETA7 ( http://nmap.org ) at 2009-10-29 17:41 PDT Interesting ports on camera.selectsst.com (192.168.7.15): Not shown: 997 closed ports PORT STATE SERVICE 80/tcp open http 554/tcp open rtsp 8080/tcp open http-proxy ...
by gregh-cctvsuppliers
Fri Oct 30, 2009 12:36 am
Forum: ZoneMinder 1.24.x
Topic: RTSP Response parse failure
Replies: 4
Views: 3548

vlanmtu 16384

I even took out the vlanmtu 16384 part and the problem still persists.
by gregh-cctvsuppliers
Fri Oct 30, 2009 12:32 am
Forum: ZoneMinder 1.24.x
Topic: RTSP Response parse failure
Replies: 4
Views: 3548

No Firewall

I saw that post. Checked for the firewall service being started in the /etc/rc.conf and it isn't on. Contents of /etc/rc.conf are as follows: # -- sysinstall generated deltas -- # Fri Oct 2 13:49:58 2009 # Created: Fri Oct 2 13:49:58 2009 # Enable network daemons for user convenience. # Please make ...
by gregh-cctvsuppliers
Fri Oct 30, 2009 12:04 am
Forum: ZoneMinder 1.24.x
Topic: RTSP Response parse failure
Replies: 4
Views: 3548

RTSP Response parse failure

Hi, I'm getting the error below trying to capture the feed off of an IP camera with H.264 capability. Oct 29 16:56:16 zoneminder zmc_m1[23680]: ERR [Response parse failure in 'RTSP/1.0 200 OK'] Camera Settings ...
by gregh-cctvsuppliers
Wed Oct 28, 2009 9:28 pm
Forum: ZoneMinder 1.24.x
Topic: Convert Event images to H.264 videos using mencoder
Replies: 0
Views: 1205

Convert Event images to H.264 videos using mencoder

Hi, I have mencoder installed, wondering how or where I have to change in order to have zoneminder to convert all images to H.264 video using the following command... mencoder "mf://*.jpg" -mf fps=10 -o test.avi -ovc lavc -lavcopts vcodec=x264enc:vbitrate=800 I looked at the zm_event.cpp file and ...
by gregh-cctvsuppliers
Fri Oct 23, 2009 1:20 am
Forum: User Contributions
Topic: Zoneminder 1.24.2 on Freebsd 7.2 x86 and amd64
Replies: 2
Views: 5761

Zoneminder 1.24.2 on Freebsd 7.2 x86 and amd64

This is the latest 1.24.2 zoneminder port for FreeBSD 7.2 x86 and amd64 This port is the continuation of Richard Lees' and Achilleas Mantzios port (which is based on Electric Messiah's original). Please read the files/README.FreeBSD file for information. All patches were created from scratch. One ...
by gregh-cctvsuppliers
Wed Oct 14, 2009 11:21 pm
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3860

That did it.

You wouldn't happen to know how to write an if statement to check the output of the `uname -p` command and if the output is `i386` do this else do whatever? (unless a variable that already got the output of that command already exists)

Nevermind, set them both to long
by gregh-cctvsuppliers
Wed Oct 14, 2009 9:12 pm
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3860

Both of them have this line in /usr/include/time.h typedef __time_t time_t; In /usr/include/machine/_types.h 64 bit: #if defined(lint) /* LONGLONG */ typedef long long __int64_t; /* LONGLONG */ typedef __int64_t __time_t; 32 bit: typedef int __int32_t; typedef __int32_t __time_t; So I changed ...
by gregh-cctvsuppliers
Wed Oct 14, 2009 6:19 pm
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3860

64 bit compiles, but 32 bit gives the following error

On 64 bit, it compiles fine, but 32 bit gives the error below. As to the output of the pkg_info command is http://pastebin.com/m68c4bca1 . The contents of config.log is http://pastebin.com/m58bf3f5c The 64 bit pkg_info ouput is http://pastebin.com/m22a988e3 The 64 bit contents of config.log file is ...
by gregh-cctvsuppliers
Mon Oct 05, 2009 6:21 pm
Forum: ZoneMinder 1.24.x
Topic: Zoneminder 1.24.2 on FreeBSD 7.2-RELEASE amd64
Replies: 9
Views: 5894

zmpkg.pl perl getCmdFormat function

Seems like this might be the last step to getting the 1.24.2 version working on FreeBSD 7.2.

As I try to run /usr/local/etc/rc.d/zm start, it gives sudo: not found error.

But when I run sudo -u www /usr/local/etc/rc.d/zm start, it starts and stops fine.

What am I missing?