You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
954 B
28 lines
954 B
1 year ago
|
<?php
|
||
|
|
||
|
/*===============================================*\
|
||
|
|| ############################################# ||
|
||
|
|| # JAKWEB.CH / Version 2.1 # ||
|
||
|
|| # ----------------------------------------- # ||
|
||
|
|| # Copyright 2022 JAKWEB All Rights Reserved # ||
|
||
|
|| ############################################# ||
|
||
|
\*===============================================*/
|
||
|
|
||
|
// Do not go any further if install folder still exists
|
||
|
if (is_dir('../install')) die('Please delete or rename install folder.');
|
||
|
|
||
|
// The DB connections data
|
||
|
require_once '../include/db.php';
|
||
|
|
||
|
// Get the real stuff
|
||
|
require_once '../config.php';
|
||
|
|
||
|
define('BASE_URL_ADMIN', BASE_URL);
|
||
|
define('BASE_URL_ORIG', str_replace('/'.JAK_OPERATOR_LOC.'/', '/', BASE_URL));
|
||
|
define('BASE_PATH_ORIG', str_replace('/'.JAK_OPERATOR_LOC.'', '/', _APP_MAIN_DIR));
|
||
|
|
||
|
// Include some functions for the ADMIN Area
|
||
|
include_once 'include/admin.function.php';
|
||
|
include_once '../class/class.paginator.php';
|
||
|
?>
|