Greetings,
It looks like my previous problem of timeout is due to the default refresh_delay_steps
What is the _complete_ default value of the refresh_delay_steps
..
refresh_delay_steps
This parameter is used to control the refresh_delay value dynamically. More the chat is active, more the refresh_delay is low, that means more the chat is responsive. The first parameter is a refresh delay value, the second is a time inactivity boundary etc ... (Default value: array(2000,20000,3000,60000 ... that means: start with 2s delay after 20s of inactivity, 3s delay after 60s of inactivity ...)
..
How do I deactivate this refresh_delay_steps..
Even if there is user activity. I want the user not to be timed out unless user logsout by closing browser window !
Is the following sufficient?
$params["refresh_delay_steps"] = array(2000, 20000, 3000, 60000);
Cheers, Kishore.