From cc5be5261c3000517c4b62b731338049a0fdaeb5 Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Sat, 1 Dec 2018 20:03:26 +0100 Subject: [PATCH] Setup/DBconfig * remove nonfunctional placeholder file * its too confusing --- config/config.php.in | 49 -------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 config/config.php.in diff --git a/config/config.php.in b/config/config.php.in deleted file mode 100644 index b4036d97..00000000 --- a/config/config.php.in +++ /dev/null @@ -1,49 +0,0 @@ - '127.0.0.1', - 'user' => '', - 'pass' => '', - 'db' => 'world', - 'prefix' => 'aowow_' -); - -// -- World Database -- -// used to generate data-tables -$AoWoWconf['world'] = array( - 'host' => '127.0.0.1', - 'user' => '', - 'pass' => '', - 'db' => 'world', - 'prefix' => '' -); - -// -- Auth Database -- -// used to generate user-tables -$AoWoWconf['auth'] = array( - 'host' => '127.0.0.1', - 'user' => '', - 'pass' => '', - 'db' => 'auth', - 'prefix' => '' -); - -// -- Characters Database -- -// used to display profiles -$AoWoWconf['characters'][] = array( - 'host' => '127.0.0.1', - 'user' => '', - 'pass' => '', - 'db' => 'characters', - 'prefix' => '' -); - -?>