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
Preventing multiple sessions
Re: Preventing multiple sessions
Can you elaborate on exactly what behavior and what you mean by multiple sessions?
Re: Preventing multiple sessions
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.
Hopefully, that made it more clear.
Thank you.
Re: Preventing multiple sessions
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...
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...