Merhaba arkadaşlar...
Akşam saatlerinde yeni siteme eski DB yi yükledikten sonra bu hata ile karşılatım... yardım edebilecek varmı?

41. else
42. $this->link = @new mysqli($this->server, $this->user, $this->password, $this->database);
43.
44. // Do not use object way for error because this work bad before PHP 5.2.9
45. if (mysqli_connect_error())
46. throw new PrestaShopDatabaseException(sprintf(Tools::display Error('Link to database cannot be established: %s'), mysqli_connect_error()));
47.
48. // UTF-8 support
49. if (!$this->link->query('SET NAMES \'utf8\''))
50. throw new PrestaShopDatabaseException(Tools::displayError('P restaShop Fatal error: no utf-8 support. Please check your server configuration.'));
51.