diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-03-21 23:47:23 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-03-21 23:47:23 +0000 |
commit | 4ffcbd88a4ab44a27795b38a88c23756107ce526 (patch) | |
tree | 7fa32556fa976c4cf15760460bc270b2a3e2a16a /phpBB/config.php | |
parent | 012256d7446f8837024670ebe05d0f57d41cf7d1 (diff) | |
download | forums-4ffcbd88a4ab44a27795b38a88c23756107ce526.tar forums-4ffcbd88a4ab44a27795b38a88c23756107ce526.tar.gz forums-4ffcbd88a4ab44a27795b38a88c23756107ce526.tar.bz2 forums-4ffcbd88a4ab44a27795b38a88c23756107ce526.tar.xz forums-4ffcbd88a4ab44a27795b38a88c23756107ce526.zip |
config changes for session updates ... ignore config.php-new
git-svn-id: file:///svn/phpbb/trunk@124 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/config.php')
-rw-r--r-- | phpBB/config.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index 733e65986d..38aa70f90a 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -23,8 +23,9 @@ ***************************************************************************/ // Session data -$session_cookie = "phpBBsession"; -$session_cookie_time = 3600; +$cookiename = "phpbb2"; +$cookielife = 31536000; +$session_length = 300; // DB connection config $dbms = "mysql"; @@ -34,11 +35,11 @@ $dbuser = ""; $dbpasswd = ""; // Date format (needs to go into DB) -$date_format = "M d Y h:i:s a"; // American datesformat -//$date_format = "d-m-Y H:i:s"; // European datesformat +//$date_format = "m-d-Y H:i:s"; // American datesformat +$date_format = "d M Y h:i:s a"; // European datesformat // DB table prefix -$table_prefix = ""; +$table_prefix = "phpbb_"; $url_images = "images"; $image_quote = "$url_images/quote.gif"; @@ -56,4 +57,5 @@ $image_icq = "$url_images/icq_add.gif"; $image_aim = "$url_images/aim.gif"; $image_yim = "$url_images/yim.gif"; $image_msnm = "$url_images/msnm.gif"; + ?> |