How can I stop Guests from logging in. I have tried editing the Congif.php from true to false. And it didnt work. Any ideas?
find this in config.inc.php
/* * If this true, a login without a password is possible. * Format of guest nickname: 'Guest_23543' */ define('ALLOW_GUEST_LOGIN',true);
and change it to
/* * If this true, a login without a password is possible. * Format of guest nickname: 'Guest_23543' */ define('ALLOW_GUEST_LOGIN',false);
Log in to post a comment.
How can I stop Guests from logging in. I have tried editing the Congif.php from true to false. And it didnt work. Any ideas?
find this in config.inc.php
/*
* If this true, a login without a password is possible.
* Format of guest nickname: 'Guest_23543'
*/
define('ALLOW_GUEST_LOGIN',true);
and change it to
/*
* If this true, a login without a password is possible.
* Format of guest nickname: 'Guest_23543'
*/
define('ALLOW_GUEST_LOGIN',false);