$auth_timeout) { $auth_user = $default_db_user; $auth_pw = $default_db_pw; ## reopen connection with new privilege level $conn = pg_connect( "user=$auth_user" ." password=$auth_pw" ." dbname=$e614dbname"); if(!$conn) { die("Error dropping write privilege on a" ." timeout. DB misconfiguration or " ."Postgres server is not accessible"); } } } ##---------------------------------------------------------------- ## Auth attempts failed else { if($return_null) { $auth_user = ''; $auth_pw = ''; } else { # Header("Location: $home"); echo '
'; exit; } } } ## ---------------- ## Have user/pw here, as well as an open $conn $auth_expire = 0; if(!$autoreload) { set_auth_cookie($auth_user, $auth_pw); ## $auth_expire = $auth_timeout; } else { $auth_expire = max( 1, $auth_timeout - (time() - $lasttime) ); } if($auth_user == $default_db_user) { $auth_expire = 0; } return $conn; } #================================================================ ?>