bootstrapping finish

This commit is contained in:
Philip Häusler 2011-06-01 15:03:10 +02:00
parent e050c0dc7f
commit 62762a9368
3 changed files with 51 additions and 47 deletions

View File

@ -1,12 +1,14 @@
<?php <?php
include "../../camp2011/includes/config.php"; require_once ('bootstrap.php');
include "../../camp2011/includes/error_handler.php";
include "../../camp2011/includes/config_db.php"; include "config/config.php";
include "includes/error_handler.php";
include "config/config_db.php";
if (!isset ($_SESSION)) if (!isset ($_SESSION))
session_start(); session_start();
include "../../camp2011/includes/secure.php"; include "includes/secure.php";
// Parameter check // Parameter check
if (!isset ($_GET["UID"])) if (!isset ($_GET["UID"]))

View File

@ -6,7 +6,7 @@ $header = "DECT send call";
include ("includes/header.php"); include ("includes/header.php");
include ("config/config_IAX.php"); include ("config/config_IAX.php");
//include ("../../../camp2011/includes/funktion_modem.php"); //include ("includes/funktion_modem.php");
include ("includes/funktion_cron.php"); include ("includes/funktion_cron.php");
if (!isset ($_GET["dial"])) if (!isset ($_GET["dial"]))

View File

@ -1,10 +1,12 @@
<?php <?php
require_once ('bootstrap.php');
$title = "Index"; $title = "Index";
$header = "Lageplan"; $header = "Lageplan";
include "../../camp2011/includes/header.php"; include "includes/header.php";
echo "<p>" . Get_Text("lageplan_text1") . "</p>"; echo "<p>" . Get_Text("lageplan_text1") . "</p>";
echo "<p><img src=\"./pic/lageplan/lageplan.jpg\" alt=\"\" />"; echo "<p><img src=\"./pic/lageplan/lageplan.jpg\" alt=\"\" />";
include "../../camp2011/includes/footer.php"; include "includes/footer.php";
?> ?>