Which table moodle session time out stored to?

Which table moodle session time out stored to?

by Santhosh Samban -
Number of replies: 2
I know the default session time out in moodle is 2 hours . For knowing the session time out:


Site Administration > Server > Session handling> Timeout

I need to know in which table in moodle the time out getting stored? 

Average of ratings: -
In reply to Santhosh Samban

Re: Which table moodle session time out stored to?

by Praveen Chamarthi -

Hi Santhosh,


Session timeout will stored in mdl_Config table.

if you run this query you will get timeout record.

SELECT * FROM `mdl_config` WHERE `name` LIKE '%sessiontimeout%'   

I think this is helpful for you....


Thanks,

Praveen

In reply to Praveen Chamarthi

Re: Which table moodle session time out stored to?

by Santhosh Samban -

Thank you very much buddy. This is what I am looking for!! Cheers 

smile