Page 1 of 1

Preventing multiple sessions

Posted: Mon Sep 22, 2014 11:45 am
by neil
Hi everyone,

I would like to prevent multiple session to be opened. Is there a parameter that stops
multiple sessions from occurring?

Thank you,

Neil

Re: Preventing multiple sessions

Posted: Mon Sep 22, 2014 2:36 pm
by rnixon
Can you elaborate on exactly what behavior and what you mean by multiple sessions?

Re: Preventing multiple sessions

Posted: Tue Sep 23, 2014 6:10 am
by neil
In other words, for only one user to be able to access the module's webpage at a time. If another user would like to go into the module's website, he/she would be blocked and a message will appear stating someone is already logged in.

Hopefully, that made it more clear.

Thank you.

Re: Preventing multiple sessions

Posted: Tue Sep 23, 2014 2:36 pm
by pbreed
You load a web page... and your done.
There is no connection between the web server and the page visible on the browser once the page is loaded....
HTTP is stateless, ie each http request is seperate.
So given that your answer is no way to do that because no session actually EVER exists other than for the brief time
it takes to render the page and return the result.

Once its visible on the browser the pink is done and there is no longer a connection...