diff options
author | Philip Häusler <msquare@notrademark.de> | 2014-11-04 11:22:32 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2014-11-04 11:22:32 +0100 |
commit | 4516cbe5d6ba14430f2279916379f10ef1ef73f1 (patch) | |
tree | a4821ce586724395e3dc817bbc1a629d9106dde4 | |
parent | 06efffb9c89919a44b81482b0dff509f31e7243d (diff) |
renamed mysql provider to mysqli, updated system requirements, fixes #145
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | includes/mysqli_provider.php (renamed from includes/mysql_provider.php) | 0 | ||||
-rw-r--r-- | public/index.php | 2 |
3 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Installation eines frischen Engelsystems ## Mindestvorrausetzungen (bzw. getestet unter): - * PHP 5.4.x with Suhosin-Patch (cgi-fcgi) + * PHP 5.4.x mit Suhosin-Patch (cgi-fcgi), mysqli und gettext * mysqld Ver 5.1.49-3 for debian-linux-gnu on x86_64 ((Debian)) * Webserver mit PHP-Anbindung, z.B. lighttpd, nginx oder Apache diff --git a/includes/mysql_provider.php b/includes/mysqli_provider.php index 9f901a40..9f901a40 100644 --- a/includes/mysql_provider.php +++ b/includes/mysqli_provider.php diff --git a/public/index.php b/public/index.php index 71ce964e..67f9ee11 100644 --- a/public/index.php +++ b/public/index.php @@ -1,6 +1,6 @@ <?php -require_once realpath(__DIR__ . '/../includes/mysql_provider.php'); +require_once realpath(__DIR__ . '/../includes/mysqli_provider.php'); require_once realpath(__DIR__ . '/../includes/sys_auth.php'); require_once realpath(__DIR__ . '/../includes/sys_counter.php'); |