Setting Your Own Glider-Web-Monitor Guide
- Do you want to view your glider from any place in the world ?
- Are you afraid of giving your IP/glider remote pass away in public GliderWebAdmin-alike projects ?
Solution is simple: Set your own Glider Web Monitor !
Download php files from here: http://tt.no-ip.org/tt/files/gliderphpmon.zip
This ZIP file should contain:- glider.php
- niftyCorners.css
- niftycube.js
ONLY
Quote:
Code:
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
To run your web monitor you have to:
- Get your own web-server with PHP support * Or get account on some free web hosting service
- Set up the settings in glider.php file:
* - how to set up a server ? or create a free account ? use google 
Open glider.php file with your favorite text editor and fill it like that:
Quote:
Code:
// Connection Info
// url = either ip address or hostname that will allow the webserver this script is working on to connect to your machine that is gliding
$url = "192.168.1.2";
// port = port you have set the remote control to run on in glider options
$port = 2252;
// pass = password you have set in glider options
$pass = "someimbapassword";
// temporary directory that the webserver has access to write to - untested on windows hosts (remember to set 777 chmod (or full write access))
$tempdir = "tmp/";
// Screen res and thumbnail size - only works with 1024*768 at the moment
$width = "1024";
$height = "768";
$thumb_ratio = "0.5";
// Time in seconds to refresh the page, 0 = never refresh
$refresh = 30;
// Cause a password dialog box to pop up in the browser. Leave the username blank and enter the password in $pass to view the page.
$http_auth = false;
/************************************************** *\
* dont edit below here unless you know what youre doing *
\************************************************* **/
* - settings you have to change to your own
Create some new folder on your server and copy project files there, access this folder from web browser, you should see your glider running
(if it is running)
Working only with computers with public IP address or properly forwarded ports (where glider is running)
Port forwarding - Wikipedia, the free encyclopedia