9 lines
335 B
PHP
9 lines
335 B
PHP
<?php
|
|
|
|
// Define paths that may change based on the server
|
|
define('BASE_PATH', realpath(__DIR__ . '/../../..'));
|
|
define('BASE_URL', '/reportifynew/public/');
|
|
define('USERAREA_PATH', '/reportifynew/public/userarea/');
|
|
define('INCLUDE_PATH', BASE_URL . 'userarea/include/');
|
|
define('ASSETS_PATH', BASE_URL . 'userarea/include/assets/');
|