I haven't logged into ITFLow for a few weeks (haven't had much work going on) and I receive a message stating "Potential Security Violation" when I go to the login page now. I ran a full git update, and still receive the error.
Apache error logs show the following:
[Mon Mar 03 07:25:18.593034 2025] [php:error] [pid 278:tid 278] [client 10.150.88.212:34348] PHP Fatal error: Uncaught mysqli_sql_exception: No such file or directory in /var/ww
w/html/config.php:7\nStack trace:\n#0 /var/www/html/config.php(7): mysqli_connect()\n#1 /var/www/html/login.php(11): require_once('...')\n#2 {main}\n thrown in /var/www/html/con
fig.php on line 7
but nothing has been modified.
config.php is as follows:
<?php
$dbhost = 'localhost';
$dbusername = 'itflow';
$dbpassword = '####';
$database = 'itflow';
$mysqli = mysqli_connect($dbhost, $dbusername, $dbpassword, $database) or die('Database Connection Failed');
$config_app_name = 'ITFlow';
$config_base_url = 'support.####.com';
$config_https_only = TRUE;
$repo_branch = 'master';
$installation_id = '#####';
$config_enable_setup = 0;
Advice needed
Thank you