Changeset 1395 for trunk/wifidog-auth/wifidog/include/schema_validate.php
- Timestamp:
- 06/25/09 15:30:38 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/include/schema_validate.php
r1393 r1395 69 69 catch (Exception $e) { 70 70 /* Be quiet */ 71 }72 73 if (empty ($row)) {74 71 echo "<html><body>"; 75 72 echo "<h1>" . _("I am unable to retrieve the schema version. Either the wifidog database hasn't been created yet, the postgresql server is down, or pg_hba.conf does not allow your web server to connect to the wifidog database.") . "</h1>"; 76 73 echo "<h2>Error was: ". $e->getMessage() . "</h2>"; 77 74 echo "<h2>" . _("Try running the") . " <a href='" . BASE_URL_PATH . "install.php'>" . _("installation script") . "</a>.</h2>\n"; 78 75 echo "</html></body>"; 79 76 exit (); 77 } 78 79 if (empty ($row)) { 80 80 81 } 81 82 else {
