Page 1 of 1

Reauthentication

Posted: 18 May 2012, 18:03
by Prozac
Hello!

Is it possible to set $g_reauthentication via the ''Manage Configuration" form?
I tried to use various values: string = OFF and Integer = 0. I set it for All Project and for All Users but seems neither of them works.
It works when it is defined in the config_inc.php file as

Code: Select all

$g_reauthentication = OFF;
Thank you for your replies.

Regards,
P.

Re: Reauthentication

Posted: 24 May 2012, 23:11
by atrol
Integer setting to 0 should work.
The configuration option is reauthentication ($g_ is only needed in PHP code)

Re: Reauthentication

Posted: 24 May 2012, 23:33
by Prozac
atrol wrote:Integer setting to 0 should work.
The configuration option is reauthentication ($g_ is only needed in PHP code)
Thanks a lot for the reply.
Yes, I tried to set reauthentication (without $g_) to 0 but it definitely doesn't work for me.

Re: Reauthentication

Posted: 27 May 2012, 21:54
by atrol
I had a look at the source code.
You are right, reauthentication is one of the settings which can't be set in database.

Re: Reauthentication

Posted: 28 May 2012, 12:39
by Prozac
atrol wrote:I had a look at the source code.
You are right, reauthentication is one of the settings which can't be set in database.
Thanks a lot for the confirmation atrol!