Ошибка Fatal error: Uncaught mysqli_sql_exception: Unknown database при восстановлении резервной копии через restore.php
В функцию Connect
внутри файла restore.php нужно добавить:
mysqli_report(MYSQLI_REPORT_OFF);
Пример результата:
function Connect()
{
mysqli_report(MYSQLI_REPORT_OFF);
$this->db_Conn = $this->mysqli ? @mysqli_connect($this->DBHost, $this->DBLogin, $this->DBPassword) : @mysql_connect($this->DBHost, $this->DBLogin, $this->DBPassword);
if (!$this->db_Conn)
{
$this->db_Error = "<font color=#ff0000>MySQL connect error!</font><br>".($this->mysqli ? mysqli_connect_error() : mysql_error()).'<br>';
return false;
}