<?php
error_reporting(0);
$path = str_replace("inc/inc.php","",__FILE__);
if(file_exists($path.'config/config.php'))
{
include_once($path.'config/config.php');
}
else
{
include_once($path.'inc/firsttimerun.php');
exit(0);
}
include_once($path.'inc/database.class.php');
include_once($path.'inc/password.php');
include_once($path.'inc/imagefunctions.php');
include_once($path.'inc/sitefunctions.php');
?>