Page 1 of 1
Direct link to montage page or webcam page
Posted: Thu Oct 15, 2015 8:37 am
by s80ts0465
Hi,
is there possible to have a direct link to a montage page without pass though authentication?
Usually using the url:
username:password@h_t_t_p://server/zm/index.php?view=montage&group=0
I should be able to access directly to the page without username and password request, but with ZM it doesn't work properly. Any suggest?
Bye
Re: Direct link to montage page or webcam page
Posted: Thu Oct 15, 2015 11:27 am
by bbunge
One option is to create a web page to display your monitors. Believe this is covered in the wiki. If not, I can do instructions.
Re: Direct link to montage page or webcam page
Posted: Thu Oct 15, 2015 11:33 am
by s80ts0465
I've looked for that in the wiki pages, but I've not found nothing about it.
Re: Direct link to montage page or webcam page
Posted: Thu Oct 15, 2015 1:15 pm
by bbunge
You will require a non-privilaged user and password
HTML code for one camera
<html><body><h1>Wep Page Name</h1>
<img src="
http://url-or-ipaddress/cgi-bin/nph-zms ... nnkey=user" />
</body></html>
For 4 cameras. Change scale, maxfps to suit
<html>
<meta http-equiv="refresh" content="300">
<body>
<p>Page Name</p>
<img src="
http://IP/cgi-bin/nph-zms?mode=jpeg&mon ... &pass=user">
<img src="
http://IP/cgi-bin/nph-zms?mode=jpeg&mon ... &pass=user">
<img src="
http://IP/cgi-bin/nph-zms?mode=jpeg&mon ... &pass=user">
<img src="
http://IP/cgi-bin/nph-zms?mode=jpeg&mon ... &pass=user">
</body></html>
If you are using the latest you will need to add /zm to /cgi-bin
<img src="
http://IP/zm/cgi-bin/nph-zms?mode=jpeg& ... &pass=user">
Re: Direct link to montage page or webcam page
Posted: Thu Oct 15, 2015 1:27 pm
by s80ts0465
thanks, I'll try soon!
bye