Files
2024-02-08 12:07:49 -07:00

28 lines
954 B
PHP

<?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';
?>