From 0237890676fd9556db8d8505e0b84a652eaff33d Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Wed, 25 Jan 2006 08:16:53 +0000 Subject: hopefully fixed mysql5 problems with vauth as well as the remember me mojo for rubin --- config/ampache.cfg.php.dist | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) (limited to 'config/ampache.cfg.php.dist') diff --git a/config/ampache.cfg.php.dist b/config/ampache.cfg.php.dist index 9635e530..6714eff3 100644 --- a/config/ampache.cfg.php.dist +++ b/config/ampache.cfg.php.dist @@ -16,19 +16,15 @@ # DEFAULT: "" #web_path = "" -#################### -# The libglue Vars # -#################### +############################### +# Session and Login Variables # +############################### -### -# Below are the variables for the Local Database that will do Auth -### - -# Hostname of your Database (default is localhost) +# Hostname of your Database # DEFAULT: localhost local_host = localhost -# Name of your ampache database (default is ampache) +# Name of your ampache database # DEFAULT: ampache local_db = ampache @@ -36,14 +32,24 @@ local_db = ampache # DEFAULT: "" local_username = username -# Password for your ampache database (can't be blank!) +# Password for your ampache database, this can not be blank +# this is a 'forced' security precaution, the default value +# will not work # DEFAULT: "" local_pass = password -# Login Length in seconds for local logins +# Length that a session will last, the default is very restrictive +# at 15min # DEFAULT: 900 local_length = 900 +# This length defines how long a 'remember me' session and cookie will +# last, the default is 900, same as length. It is up to the administrator +# of the box to increase this, for reference 86400 = 1 day +# 604800 = 1 week and 2419200 = 1 month +# DEAFULT: 900 +remember_length = 900 + # This is the DOMAIN for the cookie that stores your session key # this must be set to the domain of your host or you will not be # able to log in make sure you including the leading . -- cgit