deskshare logo
Products
Download
Support
Support Forum

Ask questions and find solutions to common problems.


Technical Support

Your complete reference to product technical support.


Lost License Key

Retrieve your purchase history using our automated system.

Resources
Articles

Read expert insights on how to get the most out of our software.


Video Tutorials and Manuals

Learn new features and functions with our easy to follow videos and guides.

Contact Us
Contact Us

Your direct line to chat with us.


About Deskshare

Discover our story and values

| My Account -->
    Deskshare Support Forums
    • Recent
    • Popular
    • Login

    Viewing uploaded photos on a web page

    Scheduled Pinned Locked Moved Security Monitor Pro
    2 Posts 2 Posters 8.8k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M Offline
      martin
      last edited by

      Hi, I am trying out Security Monitor Pro at the moment and it looks quite useful. I have uploaded photos to my website. Do you have a template html file that I could use to see and play the photos or can you advise how to write a simple index page for this purpose?

      Thanks, Martin.

      1 Reply Last reply Reply Quote 0
      • D Offline
        DeskShare_-_Support
        last edited by

        You can use Security Monitor Pro to FTP photos to your webpage and provide a 'live' view of your cameras.

        Here is a sample HTML and Javascript page that will show a updated camera image every 30 seconds:

        <html>
        <head>
        <title>Sample Security Monitor Pro Camera Photo Page</title>
        </head>
        <body>
        <img src="camera1.jpg" width="320" height="240" border="1" name="refresh">
        <script language="JavaScript" type="text/javascript">
        <!--
        var t = 30 // interval in seconds
        function Start() {
        document.images["refresh"].src = document.images["refresh"].src+"?"+Math.random()
        setTimeout("Start()", t*1000)
        }
        Start();
        // -->
        </script>
        </body>
        </html>

        You will need to change the name of the image using the folder and filename you have defined in the Security Monitor Pro FTP settings. Change the value of t to the number of seconds between image updates. Try using a refresh interval that allows enough time for the image to be captured and sent by FTP to your web server.

        1 Reply Last reply Reply Quote 0
        • 1 / 1
        • First post
          Last post