diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-02-22 18:17:52 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-02-22 18:17:52 +0000 |
| commit | a3558291dc5cec7465355935c516f8538c887d4e (patch) | |
| tree | 9d80eb2a8779c06679556b0de4d40eaa8571956d | |
| parent | 7fee269d2fd9397dd3c264989f115d23688e6050 (diff) | |
| download | forums-a3558291dc5cec7465355935c516f8538c887d4e.tar forums-a3558291dc5cec7465355935c516f8538c887d4e.tar.gz forums-a3558291dc5cec7465355935c516f8538c887d4e.tar.bz2 forums-a3558291dc5cec7465355935c516f8538c887d4e.tar.xz forums-a3558291dc5cec7465355935c516f8538c887d4e.zip | |
Implement user defined table prefixes
git-svn-id: file:///svn/phpbb/trunk@16 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/config.php | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index a7b442d483..c9d2fb10da 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -58,13 +58,35 @@ define(QUERY_ERROR, 3); define(SESSION_CREATE, 4); +// Session data $session_cookie = "phpBBsession"; $session_cookie_time = 3600; +// DB connection config $dbms = "mysql"; $dbhost = "localhost"; -$dbname = "phpbb2"; -$dbuser = "root"; -$dbpasswd = "zocalo"; +$dbname = "mydbname"; +$dbuser = "imanidiot"; +$dbpasswd = "imanidiotspassword"; -?> +// DB table config + +$banlist_table = "phpbb_banlist"; +$config_table = "phpbb_config"; +$disallow_table = "phpbb_disallow"; +$forum_access_table = "phpbb_forum_access"; +$forum_mods_table = "phpbb_forum_mods"; +$forums_table = "phpbb_forums"; +$headermetafooter_table = "phpbb_headermetafooter"; +$posts_table = "phpbb_posts"; +$posts_text_table = "phpbb_posts_text"; +$priv_msgs_table = "phpbb_priv_msgs"; +$ranks_table = "phpbb_ranks"; +$sessions_table = "phpbb_sessions"; +$themes_table = "phpbb_themes"; +$topics_table = "phpbb_topics"; +$users_table = "phpbb_users"; +$whosonline_table = "phpbb_whosonline"; +$words_table = "phpbb_words"; + +?>
\ No newline at end of file |
