File: 0.04.31b/server/web/welcome.php (View as HTML)

  1: <?php
  2: /* -------------------------------------------------------------
  3: This file is part of FreeNATS
  4: 
  5: FreeNATS is (C) Copyright 2008 PurplePixie Systems
  6: 
  7: FreeNATS is free software: you can redistribute it and/or modify
  8: it under the terms of the GNU General Public License as published by
  9: the Free Software Foundation, either version 3 of the License, or
 10: (at your option) any later version.
 11: 
 12: FreeNATS is distributed in the hope that it will be useful,
 13: but WITHOUT ANY WARRANTY; without even the implied warranty of
 14: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 15: GNU General Public License for more details.
 16: 
 17: You should have received a copy of the GNU General Public License
 18: along with FreeNATS.  If not, see www.gnu.org/licenses
 19: 
 20: For more information see www.purplepixie.org/freenats
 21: -------------------------------------------------------------- */
 22: 
 23: ob_start();
 24: require("include.php");
 25: $NATS->Start();
 26: if (!$NATS_Session->Check($NATS->DB))
 27: 	{
 28: 	header("Location: ./?login_msg=Invalid+Or+Expired+Session");
 29: 	exit();
 30: 	}
 31: if ($NATS_Session->userlevel<5) UL_Error("Welcome Page");
 32: 
 33: 
 34: $NATS->Cfg->Set("freenats.firstrun","0");
 35: 
 36: if (isset($_REQUEST['process']))
 37: 	{
 38: 	if (isset($_REQUEST['set_tracker'])) $NATS->Cfg->Set("freenats.tracker","1");
 39: 	else $NATS->Cfg->Set("freenats.tracker","0");
 40: 	if (isset($_REQUEST['send_confirm'])) $NATS->PhoneHome(0,"firstrun.conf");
 41: 	}
 42: 
 43: if (($NATS->Cfg->Get("freenats.tracker")!="")&&($NATS->Cfg->Get("freenats.tracker")>0))
 44: 	{
 45: 	$NATS->PhoneHome(0,"firstrun");
 46: 	}
 47: 	
 48: if (isset($_REQUEST['process']))
 49: 	{
 50: 	$s="main.php?message=Ready+to+setup+nodes";
 51: 	if (isset($_REQUEST['check_updates'])) $s.="&check_updates=1";
 52: 	header("Location: ".$s);
 53: 	exit();
 54: 	}
 55: ob_end_flush();
 56: Screen_Header("Welcome to FreeNATS",1);
 57: 
 58: echo "<br><b>Please take a moment to complete setup of FreeNATS</b><br><br>";
 59: echo "<form action=welcome.php method=post>";
 60: echo "<input type=hidden name=process value=1>";
 61: echo "<input type=checkbox name=check_updates value=1 checked> Check Now for Updates<br><br>";
 62: echo "<input type=checkbox name=set_tracker value=1 checked> Participate in Automated Feedback Program<br><br>";
 63: echo "<input type=checkbox name=send_confirm value=1 checked> Confirm FreeNATS Installation with PurplePixie Systems<br>";
 64: echo "<br>";
 65: echo "<input type=submit value=\"Complete Initial FreeNATS Configuration\">";
 66: echo "</form><br><br>";
 67: 
 68: ?>
 69: 
 70: <?php
 71: Screen_Footer();
 72: ?>
 73: