This commit is contained in:
Arionum
2018-01-08 21:15:02 +02:00
parent ae498abbb5
commit 068d8798c8
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
Arionum (ARO) cryptocurrency node Arionum (ARO) cryptocurrency node
Requires php 7.2, mysql/mariadb and php-gmp Requires php 7.2, mysql/mariadb, php-pdo and php-gmp
This app should only be run in the main directory of the domain/subdomain, ex: http://111.111.111.111/ This app should only be run in the main directory of the domain/subdomain, ex: http://111.111.111.111/

View File

@@ -19,7 +19,7 @@ class db extends PDO {
parent::__construct($dsn, $user, $passwd, $options); parent::__construct($dsn, $user, $passwd, $options);
} catch (PDOException $e) { } catch (PDOException $e) {
$this->error = $e->getMessage(); $this->error = $e->getMessage();
die("Could not connect to the DB"); die("Could not connect to the DB - ".$this->error);
} }
} }