[PHP] logout and session management

2005-08-30 Thread R. Vijay Daniel
Hi This is regarding session management in php.I made the session closed when the stipulated time is over and redirect it to login page.But when the back button of the browser is clicked it takes to the previous page from where the session is closed,which is not really worthfull.How can i avoid

Re: [PHP] Logout help needed

2005-07-13 Thread Ahmed Saad
Hi Suma, On 7/11/05, suma parakala <[EMAIL PROTECTED]> wrote: > Since i have placed logout in head frame its being logged out from head > frame only. How i can log out from all three frames. anyone please help me > Thanks Redirect the user to another page, which loads in the main window (not in a

[PHP] Logout help needed

2005-07-13 Thread suma parakala
Hi I am developing web application using php html javascript and postgresql. I designed my web page using html frames. 1 head frame,2 centres frame,3 side frame. My problem is I have placed logout option in head frame. While user has loged in their session will be registered. Since i have placed

Re: [PHP] Single button click to call PHP logout scripts in 2 Frames

2004-03-09 Thread Tom Rogers
Hi, Wednesday, March 10, 2004, 1:49:14 AM, you wrote: PS> Hello alll, PS> I am using three frames on my site. The left and the main frame have PS> all the dynamic content in it. My login module is embedded in the PS> leftFrame. To check out the site please look here PS> http://masterstream.co

[PHP] Single button click to call PHP logout scripts in 2 Frames

2004-03-09 Thread Pushpinder Singh
Hello alll, I am using three frames on my site. The left and the main frame have all the dynamic content in it. My login module is embedded in the leftFrame. To check out the site please look here http://masterstream.com/dev/ Once the user logs in the site successfully the left frames shows t

Re: [PHP] LOGOUT - Reset Session

2003-01-31 Thread Jason Wong
On Friday 31 January 2003 15:50, Keith Spiller wrote: > Hello Everyone, > > I'm trying to create a Logout Function and Link. My site uses a standard > htaccess file for its authentication method. After the brower requests the > username and password they have access to the protected site. > > The

[PHP] LOGOUT - Reset Session

2003-01-30 Thread Keith Spiller
Hello Everyone, I'm trying to create a Logout Function and Link. My site uses a standard htaccess file for its authentication method. After the brower requests the username and password they have access to the protected site. Then users can jump to a special Messaging section where I wrote a ph

Re: [PHP] Logout

2002-05-27 Thread Thalis A. Kalfigopoulos
On Mon, 27 May 2002, Jonas Hörnblad wrote: > Hi there, > I've only been PHPing for some week and ofcours I've ran into my first two > problems. > > 1. I'm building this community thing and I have a text file with the users > that is currently logged in. When they press logout there name is del

Re: [PHP] Logout

2002-05-27 Thread Sagie Maoz
Jonas ? wrote: > 1. I'm building this community thing and I have a text file with the > users that is currently logged in. When they press logout there name > is deleted from the textfile, but if they just close there browser or > surf to another site there name is still in the text-file until

[PHP] Logout

2002-05-27 Thread Jonas Hörnblad
Hi there, I've only been PHPing for some week and ofcours I've ran into my first two problems. 1. I'm building this community thing and I have a text file with the users that is currently logged in. When they press logout there name is deleted from the textfile, but if they just close there br

Re: [PHP] Logout problem - help me out....!

2001-12-15 Thread Shane Wright
HTTP authentication (which is what you're using) is controlled by the browser. Some browsers even keep the login/password after the window is closed until the user logs out (Konqueror on Linux for one...) If you want more control over logins and the ability to do a logout, you should make yo

[PHP] Logout problem - help me out....!

2001-12-14 Thread J.F.Kishor
hello all, I have already posted this mail, Is there anyone to help me out?, it's urgent plz.! I have designed a web page using php, as a security measure I have kept it password protected. I have used Apache authentication, using htpasswd file. Now I want to keep a

[PHP] Logout problem

2001-12-12 Thread J.F.Kishor
hello all, I have designed a web page using php, as a security measure I have kept it password protected. I have used Apache authentication, using htpasswd file. Now I want to keep a logout in this web page, I tried to send a header request "http/1.0 401 Unauthorized" to force i

RE: [PHP] logout

2001-06-20 Thread Merio, Quinn
from seeing the page. hth, q. -Original Message- From: Richard Heyes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 8:02 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] logout > Is there anyway I can do the logout that will completely get rid of all login > detail withou

Re: [PHP] logout

2001-06-20 Thread hamoe
if your login system is cookie-based vs querystring. just send a blank cookie to the user to replace whatever you had set. if your login system has the query string for a session id or something, just stop sending the querystring ;) On Wednesday 20 June 2001 07:02, Richard Heyes wrot

Re: [PHP] logout

2001-06-20 Thread Steve Werby
"Jacky" <[EMAIL PROTECTED]> wrote: > Is there anyway I can do the logout that will completely > get rid of all login detail without having user to close browser? If you're using sessions session_destroy() will do it. Create a link or form button that calls that function. -- Steve Werby Presiden

RE: [PHP] logout

2001-06-20 Thread PHPBeginner.com
ursday, June 21, 2001 7:35 AMTo: [EMAIL PROTECTED]Subject: [PHP] logout Is there anyway I can do the logout that will completely get rid of all login detail without having user to close browser? Jack[EMAIL PROTECTED]"Love your enemies, it will drive them nuts"

Re: [PHP] logout

2001-06-20 Thread Andreas D. Landmark
At 20.06.2001 23:34, you wrote: >Is there anyway I can do the logout that will completely get rid of all >login detail without having user to close browser? >Jack I guess you could overwrite it with other logindetails by redirecting the user to a webpage that requests a username/password that i

RE: [PHP] logout

2001-06-20 Thread Robert Covell
es, LLCWeb: www.rolet.comEmail: [EMAIL PROTECTED]Phone: 816.210.7145Fax: 816.753.1952 -Original Message-From: Jacky [mailto:[EMAIL PROTECTED]]Sent: Wednesday, June 20, 2001 5:35 PMTo: [EMAIL PROTECTED]Subject: [PHP] logout Is there anyway I can do the logout that will complete

RE: [PHP] logout

2001-06-20 Thread Richard Heyes
> Is there anyway I can do the logout that will completely get rid of all login > detail without having user to close browser? Depends on how your login system works. -- Richard Heyes

Re: [PHP] logout

2001-06-20 Thread Thomas Deliduka
Title: Re: [PHP] logout On 6/20/2001 6:34 PM this was written: Is there anyway I can do the logout that will completely get rid of all login detail without having user to close browser? What type of authentication are you using? If it's a cookie, reset the cookie, if it&#

Re: [PHP] logout

2001-06-20 Thread Rasmus Lerdorf
change the realm On Wed, 20 Jun 2001, Jacky wrote: > Is there anyway I can do the logout that will completely get rid of all login detail >without having user to close browser? > Jack > [EMAIL PROTECTED] > "Love your enemies, it will drive them nuts" >

[PHP] logout

2001-06-20 Thread Jacky
Is there anyway I can do the logout that will completely get rid of all login detail without having user to close browser? Jack[EMAIL PROTECTED]"Love your enemies, it will drive them nuts"

RE: [PHP] Logout Problem auf .htaccess-Login

2001-05-01 Thread Matt Schroebel
$PHP_AUTH_USER="" ought to do it. > From: Jochen Kaechelin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 01, 2001 4:30 AM > Is it possible to unset $PHP_AUTH_USER and $PHP_AUTH_PW after > a successfull '.htaccess-login'? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

RE: [PHP] Logout Problem auf .htaccess-Login

2001-05-01 Thread Krznaric Michael
Don't quote me on this, but I think if you send the user a header saying he's unauthorized then apache will remove the PHP_AUTH_* information. Mike -Original Message- From: Jochen Kaechelin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 4:30 AM To: PHP General Sub

[PHP] Logout Problem auf .htaccess-Login

2001-05-01 Thread Jochen Kaechelin
Hello List! Is it possible to unset $PHP_AUTH_USER and $PHP_AUTH_PW after a successfull '.htaccess-login'? I wan't to give all users the possibility to 'logout'. I will destroy all sessions and unset $PHP_AUTH_USER, but Apache still knows that there was a successfull login a few minutes before.

Re: [PHP] logout and clean up session and cookies

2001-02-27 Thread Richard Lynch
>Can anyone guide me how to do the logout function that can get rid off session and cookies? >Both are used to store userID and password through the site. session_destroy(); SetCookie("SID", ""); -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: htt

Re: Fw: [PHP] logout

2001-02-27 Thread Reuben D Budiardja
ere is nothing more rewarding than reaching the goal you set for >yourself" >- Original Message - >From: Jacky@lilst <[EMAIL PROTECTED]> >To: Yamin Prabudy <[EMAIL PROTECTED]> >Cc: <[EMAIL PROTECTED]> >Sent: Tuesday, February 27, 2001 3:49 PM >

Re: [PHP] logout

2001-02-27 Thread John LYC
for cookie... just setcookie() of the same cookiename to null; "Jacky@lilst" wrote: > I have php site that user is required to login, but I don't have logout function >yet. Is there anyone know the most practical way of logout method that people use >nowadays?, in php I mean. There is no sess

Re: [PHP] logout

2001-02-27 Thread [EMAIL PROTECTED]
ore rewarding than reaching the goal you set for yourself" - Original Message - From: John LYC <[EMAIL PROTECTED]> To: Jacky@lilst <[EMAIL PROTECTED]> Cc: Yamin Prabudy <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, February 27, 2001 3:07 AM Subject: Re:

Re: [PHP] logout

2001-02-27 Thread John LYC
gt; Jack > [EMAIL PROTECTED] > "There is nothing more rewarding than reaching the goal you set for > yourself" > - Original Message - > From: Yamin Prabudy <[EMAIL PROTECTED]> > To: Jacky@lilst <[EMAIL PROTECTED]> > Sent: Tuesday, February 27

[PHP] logout and clean up session and cookies

2001-02-27 Thread [EMAIL PROTECTED]
Hi Can anyone guide me how to do the logout function that can get rid off session and cookies? Both are used to store userID and password through the site. Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself"

Re: [PHP] logout

2001-02-27 Thread [EMAIL PROTECTED]
riginal Message - From: Yamin Prabudy <[EMAIL PROTECTED]> To: Jacky@lilst <[EMAIL PROTECTED]> Sent: Tuesday, February 27, 2001 2:40 AM Subject: Re: [PHP] logout > but still you had the variable hanging on the cookies while you are running > the login function... > just clea

Fw: [PHP] logout

2001-02-27 Thread [EMAIL PROTECTED]
Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" - Original Message - From: Jacky@lilst <[EMAIL PROTECTED]> To: Yamin Prabudy <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, February 27, 2001 3:49

[PHP] logout

2001-02-27 Thread [EMAIL PROTECTED]
I have php site that user is required to login, but I don't have logout function yet. Is there anyone know the most practical way of logout method that people use nowadays?, in php I mean. There is no session or cookies used in this site. Jack [EMAIL PROTECTED] "There is nothing more rewarding t