<?php
//---------------------------------------
// CONFIG
//---------------------------------------
//examples of server definitions
#$CCCamWebInfo[] = array("192.168.0.2","16001","root","dreambox"); // for CCcam webinterface with user and pass
#$CCCamWebInfo[] = array("localhost","12345"); // for CCcam webinterface with different port than default and without user and pass
#$CCCamWebInfo[] = array("localhost"); // for CCcam webinterface with all defaults
$CCCamWebInfo[] = array("[COLOR=#ff0000][B]IP-VOM-SERVER[/B][/COLOR]","[B][COLOR=#ff0000]INFOPORT[/COLOR][/B]","[COLOR=#ff0000][B]Benutzername[/B][/COLOR]","[B][COLOR=#ff0000]Passwort[/COLOR][/B]");
$work_path = ""; // set this if you want working folder separate // Example $work_path = "/tmp/";
$update_from_button = true; // set to true if you want Update button ( usefull if update is from remote server and takes too long)
$fullReshare = true; // shows maximum reshare if more than one route for same node // set to true to see actual reshare instead of YES/NO
$country_whois = true; // use whois for country detection
$programversion = "CCcamInfoPHP v0.8.6 (DT2)";
$server_username = "";
$clientmessageport[] = array("","","","");
$language = "DE";
if (file_exists("language/".$language.".php"))
include "language/".$language.".php";
else
{
echo "Upssss!!! Language file ".$language.".php not found, check language directory.";
exit;
}
?>