| Author |
Message |
|
force
Joined: Wed Jan 26, 2011 1:03 pm Posts: 8
|
Any way to install this on a Ubuntu-System with a rpm file? 
|
| Fri Mar 04, 2011 5:29 pm |
|
|
|
 |
|
rambler
Joined: Sun Nov 08, 2009 7:13 am Posts: 4
|
 Re: Release 1.24.3 preview
Yep, confirmed that "short_open_tag = Off" was the culprit - thanks.
|
| Mon Mar 07, 2011 1:09 am |
|
 |
|
zoneminder
Site Admin
Joined: Wed Jul 09, 2003 3:07 pm Posts: 5221 Location: Bristol, UK
|
That's interesting, I would not have expected that error.
_________________ Phil
|
| Mon Mar 07, 2011 4:04 pm |
|
 |
|
djsmiley
Joined: Thu Jun 18, 2009 10:51 am Posts: 6
|
Hi,
I'm installed the new preview release on a virtual server, and i have problems with the mpeg streaming.
The system is Debian Squeeze with packages (ffmpeg, etc.) from Debian Multimedia.
Here is my apache2 error log:
 |  |  |  | Code: [Thu Mar 10 16:19:28 2011] [error] [client 192.168.1.54] socket_sendto( /tmp/zms-762692s.sock ) failed: No such file or directory, referer: http://192.168.1.196/zm/index.php?view=watch&mid=1 [Thu Mar 10 16:19:28 2011] [error] [client 192.168.1.54] array (\n 0 => \n array (\n 'file' => '/usr/share/zoneminder/ajax/stream.php',\n 'line' => 55,\n 'function' => 'ajaxError',\n 'args' => \n array (\n 0 => 'socket_sendto( /tmp/zms-762692s.sock ) failed: No such file or directory',\n ),\n ),\n 1 => \n array (\n 'file' => '/usr/share/zoneminder/index.php',\n 'line' => 119,\n 'args' => \n array (\n 0 => '/usr/share/zoneminder/ajax/stream.php',\n ),\n 'function' => 'require_once',\n ),\n), referer: http://192.168.1.196/zm/index.php?view=watch&mid=1
|  |  |  |  |
I don't know what is the problem, because the socket file exists, and it's readable and writable by anybody:
I would like to use the mpeg streaming because i don't have unlimited bandwidth, and mjpeg stream on ~20 cams is late in the browser.
Can anybody suggest a solution for that?
I found older threads about similar problems, but no solution for that.
Thanks!
Regards,
Zoltan
|
| Thu Mar 10, 2011 4:28 pm |
|
 |
|
aivs
Joined: Fri Mar 18, 2011 1:15 pm Posts: 9
|
 Re: Release 1.24.3 preview
Hello, i installed ZineMinder 1.24.3 on Archlinux 2.6.37-ARCH, from the my package, and when i go to localhost/zm, i can't see the page. In /var/log/httpd/error_log
|
| Tue Mar 22, 2011 5:34 pm |
|
 |
|
mastertheknife
Joined: Wed Dec 16, 2009 5:32 pm Posts: 553 Location: Israel
|
 Re: Release 1.24.3 preview
Enable php short tags in your php.ini mastertheknife
_________________ Kfir Itzhak.
|
| Tue Mar 22, 2011 9:06 pm |
|
 |
|
aivs
Joined: Fri Mar 18, 2011 1:15 pm Posts: 9
|
 Re: Release 1.24.3 preview
YES, it's work! thanks in /etc/php/php.ini short_open_tag = On
|
| Wed Mar 23, 2011 7:51 am |
|
 |
|
stlth
Joined: Wed Mar 23, 2011 11:43 pm Posts: 2
|
 Re: Release 1.24.3 preview
Hi! I have problem with new distro of ZM (1.24.3) running on Debian Lenny 2.6.26-2-686. I'm using old release of ZM 1.24.2 on Slackware 13.1 with six Philips SPC900NC CCD USB cams and it's working well but sometimes I have problems with USB and this is reason to change distro to Debian & new ZM. Three cams is connected directly to USB ports in server, and three via USB repeater using UTP Cable. Cable connections are OK. I don't know where is the problem. dmesg says after few hours: This only messing with three cameras connected via repeaters... Problem solves only reconnect of camera and restart of entire system and ZM but focus on new ZM and Debian. Fresh install of debian & ZM from source using this tutorial ( can't paste url  ) Logging on localhost/zm works, zm starts but there is no video from camera  I chmodded 777 /dev/video0 but still don't work... Camera works on other software eg. mplayer very well. Driver is loading fine and registering cam as /dev/video0: Logs from ZM after WebGUI start (fixed /tmp/zm issue by mkdir & chmod 777): I'm using video settings which works on Slack (320x240, PAL, YUV420P) but I have tested all combinations and still same effect. short_open_tag in php.ini is On Any suggestions?
|
| Thu Mar 24, 2011 12:25 am |
|
 |
|
wwwutz
Joined: Tue Mar 22, 2011 2:19 pm Posts: 3
|
 Re: 1.24.3 fixes the UINT64_C issues with libavutil
Hi, I also had this issue with UINT64_C and traced it down. I built zm=1.24.3 with ffmpeg-0.6.1 using a lot of --with-blah and --prefix bla for encapsulating the whole package into one tree. There are several stages. First 'configure' internally fails due to its braindead technique to 'find' .h-header files. The ffmpeg include files are 'C'-header files, _UINT64C only gets defined, when either it's NOT g++ or __STDC_CONSTANT_MACROS defined. For example: Since 'configure' does call AC_CHECK_HEADERS(libavutil/avutil.h,,,) with 'g++' but without __STDC_CONSTANT_MACROS the test bails out with errorcode due to undefined UINT64_C ( and NOT because there is no avutil.h ). This leads to HAVE_LIBAVUTIL_AVUTIL_H to be false (which is not true  ) in config.h. since configure bails out on all AC_CHECK_HEADERS macros for ffmpeg, compilations stops with "No location for avutils.h found" in zm_ffmpeg.h quickfixing anything in zm won't help, since a) 'configure' already is doing it wrong. Even if you try to push __STDC_CONSTANT_MACROS through all configure macros that might have unforseen side effects: 'all' tests will have these macros defined. And if you have a more deatailed look at ffmpeg there are only about 3 lines of code using the _UINT64C macro definition. all in all I ran into the 'hen-egg-hen' problem and my _dirty_ fix is a patch of zm_ffmpeg.h to replace the lines with This is dirty, but the main issue is using configure to check for existence of header files in 'non-standard' locations. (not to blame zm; configure is the bad guy!). AC_CHECK_HEADER should not 'warn' or silently 'undef'... it should die()/exit/bailout. why does it 'check' and continue if there is no solution if the check fails ? in this case its more complicated: if <libavutil/avutil.h> is gone, there might be <ffmepg/avutil.h> worth using. but if _both_ do not exist then it should die()/exit/bailout. anyways this won't fix it completely: AC_CHECK_HEADER / configure is the bad guy here. there is another issue with --with-mysql which i will explain in another post. cheers, Peter
|
| Thu Mar 24, 2011 9:49 am |
|
 |
|
wwwutz
Joined: Tue Mar 22, 2011 2:19 pm Posts: 3
|
 v1.24.3 preview --with-mysql configure issue
Ok, next one: I built an encapsulated mysql in /tmp/mysql using which is fine (for me). to build zm I use: which whines: funny thing: if I would have had a mysql-1.0 installation with --prefix=/usr installed, it would have found the old include file  so to fix that configure.ac should also honor CPPFLAGS for mysql (patch format header detected as spam by phpBB...) cheers, Peter
|
| Thu Mar 24, 2011 10:27 am |
|
 |
|
zoneminder
Site Admin
Joined: Wed Jul 09, 2003 3:07 pm Posts: 5221 Location: Bristol, UK
|
 Re: Release 1.24.3 preview
You should get more info in your system log. Failing that set ZM_DBG_PRINT=1 in your environment and run zmc from the command line.
_________________ Phil
|
| Thu Mar 24, 2011 4:10 pm |
|
 |
|
zoneminder
Site Admin
Joined: Wed Jul 09, 2003 3:07 pm Posts: 5221 Location: Bristol, UK
|
 Re: 1.24.3 fixes the UINT64_C issues with libavutil
I _think_ this may be the same issue as addressed by adding CPPFLAGS=-D__STDC_CONSTANT_MACROS to the configure line but I'm not sure I entirely understand everything you are addressing.
_________________ Phil
|
| Thu Mar 24, 2011 4:13 pm |
|
 |
|
zoneminder
Site Admin
Joined: Wed Jul 09, 2003 3:07 pm Posts: 5221 Location: Bristol, UK
|
 Re: v1.24.3 preview --with-mysql configure issue
Thanks, this is a good suggestion. I think the --with-mysql parameter will probably disappear very soon in favour of just explicitly adding paths to CPPFLAGS, LDFLAGS etc on the configure line as that is a lot more flexible, if maybe not so obvious for inexperienced users.
_________________ Phil
|
| Thu Mar 24, 2011 4:17 pm |
|
 |
|
Flash_
Joined: Wed Jan 11, 2006 1:19 pm Posts: 442
|
 Re: Release 1.24.3 preview
I don't have any spare servers to play with this, but Should cut down on at least half the support questions! Thank you - great to see things moving again around here!
|
| Fri Mar 25, 2011 7:42 am |
|
 |
|
robfantini
Joined: Wed Nov 19, 2008 11:07 pm Posts: 7
|
 Re:
see  |  |  |  | Code: Package: alien State: not installed Version: 8.81 Priority: optional Section: admin Maintainer: Joey Hess <joeyh@debian.org> Uncompressed Size: 250 k Depends: debhelper (>= 3), perl, rpm (>= 2.4.4-2), dpkg-dev, make, cpio, rpm2cpio Suggests: patch, bzip2, lsb-rpm, lintian, lzma Description: convert and install rpm and other packages Alien allows you to convert LSB, Red Hat, Stampede and Slackware Packages into Debian packages, which can be installed with dpkg. It can also generate packages of any of the other formats. This is a tool only suitable for binary packages. Homepage: http://kitenet.net/~joey/code/alien/
|  |  |  |  |
|
| Sat Mar 26, 2011 6:42 pm |
|
|
Who is online |
Users browsing this forum: Google Feedfetcher and 2 guests |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|