Ask a Question related to Dreamweaver AppDev, Design and Development.
-
force4ormore #1
How to kill all sessions
I developed a PHP/MySQL dynamic application. It's on a Linux box running
Apache. Periodically I need to take the application down while I import data
sets. I generally do this off hours and put a redirect on the login page.
However, there may be people logged in at that time. My question is, what
would be the best way to kick people off? Stop MySQL? Run some kind of kill
session command? Thanks, Tim
force4ormore Guest
-
CGI::Sessions : Deleting expired sessions
Hi, I use CGI::Sessions to save the sessions into MySQL. The problem is, if the user just close the browser windows without logging off, I can't... -
Auto Kill Idle Sessions
My users keep forgetting to logout their terminals and often stay logged in to my RS6K server. Besides being a security risk, this is not allowing... -
Database sessions and file sessions
Can database sessions and file system sessions co-exist on the same server. I have 2 applications that use sessions. One uses the standard php... -
Relationship between IIS Sessions and ASP.NET Sessions?
Ken, I did some testing after I posted this message. I set my IE settings for cookies to Always Prompt (even session cookies) to see what was... -
Alexandro Colorado #2
Re: How to kill all sessions
On Thu, 17 Mar 2005 02:24:59 +0000 (UTC), force4ormore
<webforumsuser@macromedia.com> wrote:
I guess the first step would be to edit your htdocs for errors so that you> I developed a PHP/MySQL dynamic application. It's on a Linux box running
> Apache. Periodically I need to take the application down while I import
> data
> sets. I generally do this off hours and put a redirect on the login page.
> However, there may be people logged in at that time. My question is,
> what
> would be the best way to kick people off? Stop MySQL? Run some kind of
> kill
> session command? Thanks, Tim
>
have a maintennace page instead of the clasic error message.
To kill the sessions are done with the session_destroy() function:
[url]http://ro.php.net/manual/en/function.session-destroy.php[/url]
--
Alexandro Colorado
------------------------------
Support Engineer
InterAKT Online
[url]http://www.interaktonline.com[/url]
Tel: 40(21) 312.5312
Alexandro Colorado Guest
-
force4ormore #3
Re: How to kill all sessions
Forgive me (I'm new to coding and php is my first sequential language), are you
suggesting that I build an administrators page (that only someone with Admin
rights can access) to run a script like in the link you submitted? Or do I
somehow run/call the script through a command line? Thanks, Tim
force4ormore Guest



Reply With Quote

