log in

General discussion about netjukebox
Locked
Gust
User
Posts: 3
Joined: Sun Dec 17, 2006 10:14 am
Contact:

log in

Post by Gust »

How can we use the system without login? It is not so 'visitor-friendly'.

In dutch:
Hoe kun je ervoor zorgen dat bezoekers niet moeten inloggen, of hoe kunnen we dit uitschakelen?
User avatar
wbartels
netjukebox developer
Posts: 872
Joined: Thu Nov 04, 2004 3:12 pm
Location: Netherlands
Contact:

Re: log in

Post by wbartels »

It is not possible to disable the login feature.
However the login process can be automated with the "anonymous user autologin" setting in the config file.
To make the login process faster set the login delay to a lower value.
By setting the login delay lower there is less protection to a brute force attack!

Code: Select all

//  +------------------------------------------------------------------------+
//  | Authenticate                                                           |
//  +------------------------------------------------------------------------+
$cfg['anonymous_user']              = 'anonymous';
$cfg['anonymous_user_autologin']    = true;
$cfg['login_delay']                 = 750;
Dutch:
Alvast pretigge kerst dagen!
User avatar
wbartels
netjukebox developer
Posts: 872
Joined: Thu Nov 04, 2004 3:12 pm
Location: Netherlands
Contact:

Re: log in

Post by wbartels »

In netjukebox 6.03 the authentication will only allow anonymous user login when "anonymous autologin" is enabled.
Now it is save to set the login delay to zero.

PS
Already logged in users can still be used until logged out.
$cfg['anonymous_user_autologin'] will be renamed to $cfg['anonymous_autologin'] in netjukebox 6.03.
Locked