2005-11-30 23:13:38 +01:00
|
|
|
|
<?PHP
|
2005-09-10 19:25:43 +02:00
|
|
|
|
// Adresse des Webservers
|
2008-04-09 05:22:51 +02:00
|
|
|
|
$url = "https://SEDENGELURL/";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
|
|
// Startverzeichnis des Engelhome
|
2008-04-09 05:22:51 +02:00
|
|
|
|
$ENGEL_ROOT = "/";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
2005-12-25 06:50:08 +01:00
|
|
|
|
// System disable message, ist ist set is: bages schow only this text
|
|
|
|
|
//$SystemDisableMessage="<H1>This system ist moved to a server in the BCC, you can in the moment only youse it in the in Engel Room</H1>";
|
|
|
|
|
|
2005-09-10 19:25:43 +02:00
|
|
|
|
// Anzahl der News, die auf einer Seite ausgeben werden koennen...
|
|
|
|
|
$DISPLAY_NEWS = 6;
|
|
|
|
|
|
|
|
|
|
// Anzahl Stunden bis zum Austragen eigener Schichten
|
|
|
|
|
$LETZTES_AUSTRAGEN=3;
|
|
|
|
|
|
|
|
|
|
//Setzt den zu verwendenden Crypto algorismis
|
|
|
|
|
// mp5 oder crypt
|
|
|
|
|
// achtung crypt schaltet password <20>ndern ab
|
|
|
|
|
$crypt_system="md5";
|
|
|
|
|
//$crypt_system="crypt";
|
|
|
|
|
|
2007-12-28 13:38:18 +01:00
|
|
|
|
// the archangels
|
2008-08-15 00:48:17 +02:00
|
|
|
|
$arch_angels="fnord";
|
2007-12-28 13:38:18 +01:00
|
|
|
|
|
|
|
|
|
// timezonen offsett
|
|
|
|
|
$gmdateOffset=3600;
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
|
|
// f<>r Developen 1, sonst = 0
|
|
|
|
|
$DEBUG = 0;
|
|
|
|
|
|
|
|
|
|
// SSL Cert-KEY
|
2008-04-12 23:16:17 +02:00
|
|
|
|
$show_SSLCERT = "MD5:<br>MD5SED<br>\n".
|
2008-04-12 23:52:48 +02:00
|
|
|
|
"SHA1:<br>SHA1SED";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
|
|
//globale const. fuer schischtplan
|
|
|
|
|
$GlobalZeileProStunde = 4;
|
|
|
|
|
|
2006-08-29 11:02:47 +02:00
|
|
|
|
//Tempdir
|
2008-08-15 00:48:17 +02:00
|
|
|
|
$Tempdir="./tmp";
|
2006-08-29 11:02:47 +02:00
|
|
|
|
|
2008-05-06 23:32:24 +02:00
|
|
|
|
// local timezone
|
|
|
|
|
date_default_timezone_set("Europe/Berlin");
|
|
|
|
|
|
2006-08-31 06:40:50 +02:00
|
|
|
|
//Pentabarf ConferenzDI f<>r UpdateDB
|
2007-11-09 23:17:13 +01:00
|
|
|
|
$PentabarfXMLhost = "cccv.pentabarf.org";
|
2006-11-14 00:40:06 +01:00
|
|
|
|
$PentabarfXMLpath = "Xcal/conference/";
|
|
|
|
|
$PentabarfXMLEventID = "31";
|
2007-11-09 23:17:13 +01:00
|
|
|
|
$PentabarfGetWith = "fsockopen"; // "fsockopen"/"fopen"/"wget"/"lynx"
|
2006-08-31 06:40:50 +02:00
|
|
|
|
|
2005-09-10 19:25:43 +02:00
|
|
|
|
?>
|