This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

19
cron_07.php Normal file
View file

@ -0,0 +1,19 @@
<?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);
?>