As a quick fix you can do the following to hide the error untill the server admin figure out whats going on.
Open the complaining file in a
good editor
like Notepad++ & navigate to the line number stated in the error, if theres more than 1 file in the errors above the header then you will have to find the 1 that has the details to connect to the database, as an example, your looking for something like this on that line
$con = mysql_connect("$server","$username","$password"); or $this->pdo = new PDO("mysql:host=" . Config::read('hostname') . ";dbname=" . Config::read('database') so on, so on.
If you add a
@ at the beginning of the line the error will be removed, so its like this
@$con = mysql_connect("$server","$username","$password");
or @$this->pdo = new PDO("mysql:host=" . Config::read('hostname') . ";dbname=" . Config::read('database') and so on, so on.
If more than 1 error is showing,dont worry theres only 1 file that needs the alteration
Refresh you page & the error should be gone.
Please dont forget to remove the @ after the issue has been resolved.