19 lines
512 B
PHP
19 lines
512 B
PHP
<?php
|
|
// Melde alle PHP Fehler (siehe Changelog)
|
|
error_reporting(E_ALL);
|
|
error_reporting(E_ALL ^ E_NOTICE);
|
|
// Melde alle PHP Fehler
|
|
error_reporting(1);
|
|
//
|
|
require('lib/mysql.class.php');
|
|
require('lib/email.class.php');
|
|
require('lib/phpmailer/phpmailer.inc.php');
|
|
require('lib/config.php');
|
|
session_name(CONFIG_SESSION);
|
|
session_start();
|
|
|
|
$realtime=time();
|
|
$userip=$_SERVER['REMOTE_ADDR'];
|
|
$GLOBALS['mysql'] = new mysql(CONFIG_MYSQL_HOST,CONFIG_MYSQL_USER,CONFIG_MYSQL_PW,CONFIG_MYSQL_DB);
|
|
|
|
?>
|