[PrestaShopException]

Link to database cannot be established: SQLSTATE[HY000] [1045] Access denied for user 'Sql1767596'@'89.46.106.182' (using password: YES)
at line 137 in file classes/db/DbPDO.php

132.     public function connect()
133.     {
134.         try {
135.             $this->link = $this->getPDO($this->server, $this->user, $this->password, $this->database, 5);
136.         } catch (PDOException $e) {
137.             throw new PrestaShopException('Link to database cannot be established: ' . $e->getMessage());
138.         }
139. 
140.         $this->link->exec('SET SESSION sql_mode = \'\'');
141. 
142.         return $this->link;