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.
thanks
Marc
Streaming,Preview and Thumbnails broken since latest releases of 1.37.17
Re: Streaming,Preview and Thumbnails broken since latest releases of 1.37.17
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;
}
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;
}
Re: Streaming,Preview and Thumbnails broken since latest releases of 1.37.17
is there an alternative for fcgiwrap?