problems with streaming using SME 7.4 server

Support and queries relating to all previous versions of ZoneMinder
Locked
Trigeris
Posts: 1
Joined: Fri Feb 19, 2010 2:47 pm
Location: Lithuania

problems with streaming using SME 7.4 server

Post by Trigeris »

Hi everyone, I installed ZM 1.22.3 on my server, but then I try to view live stream I get still image. Neither mpeg nor jpeg streaming works. I use Logitech QuickCam Messenger (V-UBC40). I found out that I may need to change ZM paths in httpd.conf file, but I am too green at this. So can anyone help me? Thanks in advance!

ZM_PATH_ZMS : /cgi-bin/zm/nph-zms

httpd.conf file contents (shortened version):

Code: Select all

#------------------------------------------------------------
#	       !!DO NOT MODIFY THIS FILE!!
# 
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at http://www.contribs.org/development/
#
# Copyright (C) 1999-2006 Mitel Networks Corporation
#------------------------------------------------------------
....
    DocumentRoot         /home/e-smith/files/ibays/Primary/html
    ScriptAlias /cgi-bin /home/e-smith/files/ibays/Primary/cgi-bin
    Alias       /files   /home/e-smith/files/ibays/Primary/files

ScriptAlias /zm/cgi-bin/zm /usr/libexec/zoneminder/cgi-bin
.....

Alias /zm "/usr/share/zoneminder/www"
<Directory>
    Options -Indexes MultiViews FollowSymLinks
    AddType application/x-httpd-php .php
    AllowOverride All
    Order allow,deny
    Allow from all
    AuthName "Zoneminder"
    AuthType Basic
    AuthExternal pwauth
    require user admin
</Directory>

<Directory>
    AllowOverride All
    Options ExecCGI
    Order allow,deny
    Allow from all
</Directory>

Locked