Try re-initializing the server if this persists!
"; $dbExists = 0; } else { $conn = mysqli_connect($sqlServer, $sqlUsername, $sqlPassword, $dbname); $getSettings = "SELECT * FROM $settingstable"; $settings = mysqli_query($conn, $getSettings); $data = mysqli_fetch_assoc($settings); $dbExists = 1; if (!$settings){ echo "db connect bad, using defaults"; } else { // The name and version that will appear on the pages of the server $serverName = $data["serverName"]; // Hostname of the server $serverHostname = $data["serverHostName"]; // Directory where the images will be stored $targetDir = $data["uploadDir"] . "/"; // Filename of the style sheet (found in config foler) $stylesheet = $data["stylesheet"]; // Set private enable flag` $enablePrivate = $data["privateEnable"]; // Enable logging // FUTURE FEATURE NOT YET IMPLEMENTED $enableLogging = $data["loggingEnable"]; } } // Supported file types $supportedFileTypes = array ( "image/jpeg", "image/png", "image/gif", "image/webp", "image/avif", "image/apng", "image/svg" ); ?>