I've got it working with the supplied CMS software under Windows. Since I'm experimenting with linux on RPI's I also would like to try to get this going on linux. I installed Ubuntu 15.10 to be able to install Zoneminder 1.29 which I read has made a start with suppor for ONVIF cameras. I followed the instructions here (http://zoneminder.readthedocs.org/en/st ... rom-source) to build ZM 1.29 from source. Which went smooth. Didn't notice any error messages.
However, trying to access ZM ends with the auth error listed in the subject line. I can access the apache default page (without /zm) just fine. /etc/apache2/conf-available/zoneminder.conf looks exactly like the one listed in the install instructions:
Code: Select all
# Remember to enable cgi mod (i.e. "a2enmod cgi").
ScriptAlias /zm/cgi-bin "/usr/local/libexec/zoneminder/cgi-bin"
<Directory "/usr/local/libexec/zoneminder/cgi-bin">
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
AllowOverride All
Require all granted
</Directory>
Alias /zm /usr/local/share/zoneminder/www
<Directory /usr/local/share/zoneminder/www>
php_flag register_globals off
Options Indexes FollowSymLinks
<IfModule mod_dir.c>
DirectoryIndex index.php
</IfModule>
</Directory>
<Directory /usr/local/share/zoneminder/www/api>
AllowOverride All
</Directory>
- skywalker@uServer-Watchdog:/usr/local/share/zoneminder$ stat www/
File: ‘www/’
Size: 4096 Blocks: 8 IO Block: 4096 directory
Device: 801h/2049d Inode: 161442 Links: 12
Access: (0755/drwxr-xr-x) Uid: ( 33/www-data) Gid: ( 33/www-data)
Access: 2016-01-02 23:07:08.649415428 +0100
Modify: 2016-01-02 22:20:13.604171401 +0100
Change: 2016-01-02 22:57:36.223460950 +0100
Hopefully it's something simple someone can help me with.
Thanks in advance.
Btw2. I'm running Ubuntu/Zoneminder under VirtualBox and use port forwarding to go to ZM. For the older version I used the same setup which worked fine.