Added PHP_error_reporting_OVERRIDE options for each web directory git-svn-id: svn://192.168.202.10@3863 3d104415-ff17-0410-8863-d5cf3c621b8a
120 lines
4.5 KiB
PHP
120 lines
4.5 KiB
PHP
<?php
|
|
#
|
|
# dbconnect_mysqli.php version 2.12
|
|
#
|
|
# database connection settings and some global web settings
|
|
#
|
|
# Copyright (C) 2024 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
|
#
|
|
# CHANGES:
|
|
# 130328-0022 - Converted ereg to preg functions
|
|
# 130802-0957 - Changed to PHP mysqli functions, added
|
|
# 131101-0713 - Fixed slave server setting
|
|
# 131210-1746 - Added ability to define slave server with port number, issue #687
|
|
# 150216-1529 - Removed non-latin set to 0
|
|
# 150313-0913 - Added ExpectedDBSchema conf file value
|
|
# 150626-2120 - Modified mysqli_error() to mysqli_connect_error() where appropriate
|
|
# 160325-1434 - Changes for sidebar update
|
|
# 220827-1948 - VERM version
|
|
# 240801-1130 - Code updates for PHP8 compatibility
|
|
# 240805-2103 - Added PHP_error_reporting_OVERRIDE options
|
|
#
|
|
|
|
$PHP_error_reporting_OVERRIDE=0;
|
|
if (file_exists('options.php'))
|
|
{
|
|
require('options.php');
|
|
}
|
|
if ($PHP_error_reporting_OVERRIDE > 0)
|
|
{
|
|
$php_err_suppression_value=32767; # E_ALL
|
|
$php_err_suppression_value-=($PHP_error_reporting_HIDE_ERRORS ? 1 : 0);
|
|
$php_err_suppression_value-=($PHP_error_reporting_HIDE_WARNINGS ? 2 : 0);
|
|
$php_err_suppression_value-=($PHP_error_reporting_HIDE_PARSES ? 4 : 0);
|
|
$php_err_suppression_value-=($PHP_error_reporting_HIDE_NOTICES ? 8 : 0);
|
|
$php_err_suppression_value-=($PHP_error_reporting_HIDE_DEPRECATIONS ? 8192 : 0);
|
|
error_reporting($php_err_suppression_value);
|
|
}
|
|
|
|
if ( file_exists("/etc/astguiclient.conf") )
|
|
{
|
|
$DBCagc = file("/etc/astguiclient.conf");
|
|
foreach ($DBCagc as $DBCline)
|
|
{
|
|
$DBCline = preg_replace("/ |>|\n|\r|\t|\#.*|;.*/","",$DBCline);
|
|
if (preg_match("/^PATHlogs/", $DBCline))
|
|
{$PATHlogs = $DBCline; $PATHlogs = preg_replace("/.*=/","",$PATHlogs);}
|
|
if (preg_match("/^PATHweb/", $DBCline))
|
|
{$WeBServeRRooT = $DBCline; $WeBServeRRooT = preg_replace("/.*=/","",$WeBServeRRooT);}
|
|
if (preg_match("/^VARserver_ip/", $DBCline))
|
|
{$WEBserver_ip = $DBCline; $WEBserver_ip = preg_replace("/.*=/","",$WEBserver_ip);}
|
|
if (preg_match("/^VARDB_server/", $DBCline))
|
|
{$VARDB_server = $DBCline; $VARDB_server = preg_replace("/.*=/","",$VARDB_server);}
|
|
if (preg_match("/^VARDB_database/", $DBCline))
|
|
{$VARDB_database = $DBCline; $VARDB_database = preg_replace("/.*=/","",$VARDB_database);}
|
|
if (preg_match("/^VARDB_user/", $DBCline))
|
|
{$VARDB_user = $DBCline; $VARDB_user = preg_replace("/.*=/","",$VARDB_user);}
|
|
if (preg_match("/^VARDB_pass/", $DBCline))
|
|
{$VARDB_pass = $DBCline; $VARDB_pass = preg_replace("/.*=/","",$VARDB_pass);}
|
|
if (preg_match('/^VARDB_custom_user/', $DBCline))
|
|
{$VARDB_custom_user = $DBCline; $VARDB_custom_user = preg_replace("/.*=/","",$VARDB_custom_user);}
|
|
if (preg_match('/^VARDB_custom_pass/', $DBCline))
|
|
{$VARDB_custom_pass = $DBCline; $VARDB_custom_pass = preg_replace("/.*=/","",$VARDB_custom_pass);}
|
|
if (preg_match("/^VARDB_port/", $DBCline))
|
|
{$VARDB_port = $DBCline; $VARDB_port = preg_replace("/.*=/","",$VARDB_port);}
|
|
if (preg_match("/^ExpectedDBSchema/", $DBCline))
|
|
{$ExpectedDBSchema = $DBCline; $ExpectedDBSchema = preg_replace("/.*=/","",$ExpectedDBSchema);}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
#defaults for DB connection
|
|
$VARDB_server = 'localhost';
|
|
$VARDB_port = '3306';
|
|
$VARDB_user = 'cron';
|
|
$VARDB_pass = '1234';
|
|
$VARDB_custom_user = 'custom';
|
|
$VARDB_custom_pass = 'custom1234';
|
|
$VARDB_database = '1234';
|
|
$WeBServeRRooT = '/usr/local/apache2/htdocs';
|
|
}
|
|
|
|
|
|
$server_string = $VARDB_server;
|
|
if ( ($use_slave_server > 0) and (strlen($slave_db_server)>1) )
|
|
{
|
|
if (preg_match("/\:/", $slave_db_server))
|
|
{
|
|
$temp_slave_db = explode(':',$slave_db_server);
|
|
$server_string = $temp_slave_db[0];
|
|
$VARDB_port = $temp_slave_db[1];
|
|
}
|
|
else
|
|
{
|
|
$server_string = $slave_db_server;
|
|
}
|
|
}
|
|
$link=mysqli_connect($server_string, "$VARDB_user", "$VARDB_pass", "$VARDB_database", $VARDB_port);
|
|
|
|
if (!$link)
|
|
{
|
|
// die("MySQL connect ERROR: |$server_string|$VARDB_user|$VARDB_pass|$VARDB_database|$VARDB_port|$temp_slave_db[0]|$temp_slave_db[1]|$slave_db_server|$use_slave_server|" . mysqli_error('mysqli'));
|
|
die("MySQL connect ERROR: " . mysqli_connect_error());
|
|
}
|
|
|
|
$local_DEF = 'Local/';
|
|
$conf_silent_prefix = '7';
|
|
$local_AMP = '@';
|
|
$ext_context = 'default';
|
|
$recording_exten = '8309';
|
|
$WeBRooTWritablE = '1';
|
|
# $non_latin = '0'; # set to 1 for UTF rules, overridden by system_settings
|
|
$flag_channels=0;
|
|
$flag_string = 'VICIast20';
|
|
$Msubhead_color = '#E6E6E6';
|
|
$Mselected_color = '#C6C6C6';
|
|
$Mhead_color = '#A3C3D6';
|
|
$Mmain_bgcolor = '#015B91';
|
|
|
|
?>
|