mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-06 17:15:38 -08:00
10 lines
442 B
PHP
Executable File
10 lines
442 B
PHP
Executable File
<?php
|
|
$logPath = rtrim(getenv('NETALERTX_LOG') ?: '/tmp/log', '/') . '/app.php_errors.log';
|
|
ini_set('error_log', $logPath); // initializing the app.php_errors.log file for the maintenance section
|
|
require dirname(__FILE__).'/../templates/globals.php';
|
|
require dirname(__FILE__).'/db.php';
|
|
require dirname(__FILE__).'/util.php';
|
|
require dirname(__FILE__).'/../templates/language/lang.php';
|
|
require dirname(__FILE__).'/utilNotification.php';
|
|
?>
|