14 lines
256 B
PHP
14 lines
256 B
PHP
<?php
|
|
|
|
/*** error reporting on ***/
|
|
error_reporting(E_ALL);
|
|
|
|
/*** define the site path constant ***/
|
|
$site_path = realpath(dirname(__FILE__));
|
|
define ('__SITE_PATH', $site_path);
|
|
|
|
/*** include the init.php file ***/
|
|
include 'includes/init.php';
|
|
|
|
?>
|