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?
log in
- wbartels
- netjukebox developer
- Posts: 881
- Joined: Thu Nov 04, 2004 3:12 pm
- Location: Netherlands
- Contact:
Re: log in
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!
Dutch:
Alvast pretigge kerst dagen!
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;
Alvast pretigge kerst dagen!
- wbartels
- netjukebox developer
- Posts: 881
- Joined: Thu Nov 04, 2004 3:12 pm
- Location: Netherlands
- Contact:
Re: log in
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.
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.