Streaming,Preview and Thumbnails broken since latest releases of 1.37.17

Current Development version likely to have breaking changes
Post Reply
marcschh
Posts: 16
Joined: Mon Jul 11, 2011 8:48 pm

Streaming,Preview and Thumbnails broken since latest releases of 1.37.17

Post by marcschh »

Hi,

anybody else missing the stream/preview and thumbnails?
It strill works in 1.37.17~20220617173405-bionic but in later releases(not sure which) it was broken and is still broken.
Zoneminder-Preview.png
Zoneminder-Preview.png (87.06 KiB) Viewed 864 times
thanks
Marc
marcschh
Posts: 16
Joined: Mon Jul 11, 2011 8:48 pm

Re: Streaming,Preview and Thumbnails broken since latest releases of 1.37.17

Post by marcschh »

Thumbnails and view of recordings:
Even if the HOME URL is correct the FIRST entry in the list of "Servers" will be used as SRC - Even if you access another server in the list.
So I needed to remove the first alternative of the server-urls which was already unavailable

Streaming: I am using nginx with fcgwirap.sock for the following location block - I restarted the fcgiwrap.service and after that the streaming was working. - There was no error in the log of fcgiwrap and it was still active. I do not have experience with fcgiwrap so I tried switching to php-fpm, but this is not working. any idea?(is fcgiwrap unstable or is there any other possible solution for nginx?

location /zm/cgi-bin {
auth_basic off;
alias /usr/lib/zoneminder/cgi-bin;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
#fastcgi_param SCRIPT_FILENAME /usr/lib/zoneminder/cgi-bin/nph-zms;
fastcgi_param HTTP_PROXY "";
fastcgi_pass unix:/var/run/fcgiwrap.socket;
# fastcgi_pass unix:/run/php/php-fpm.sock;
}
marcschh
Posts: 16
Joined: Mon Jul 11, 2011 8:48 pm

Re: Streaming,Preview and Thumbnails broken since latest releases of 1.37.17

Post by marcschh »

is there an alternative for fcgiwrap?
Post Reply