Re: [PHP] Re: PHP Sessions || Problems with AOL, Safari, etc.

2006-10-28 Thread Ed Lazor
Check php.ini session settings. There are some options in there for you to use in your scripts. Set up scripts to test whether session cookies are being saved and then route accordingly. On Oct 28, 2006, at 12:41 PM, sit1way wrote: Hey all. I run a members-only hockey report that

[PHP] Re: PHP Sessions || Problems with AOL, Safari, etc.

2006-10-28 Thread sit1way
Hey all. I run a members-only hockey report that relies on Session variable(s) to grant/deny access to members-only site content. Generally members have no trouble accessing members-only content once logged-in to the site; however, since we have a few thousand members, I frequently receive

[PHP] sessions problems

2005-04-30 Thread Anasta
Anyone know how to update a record on logout, heres what i am using for login, however there iare no variables for the logout page. ? session_start(); // Start Session include(connect.php); $username = $_POST['username']; $password = $_POST['password']; // Register some session variables

Re: [PHP] sessions problems

2005-04-30 Thread Deep
Hi, When someone hit the logout page say logout.php. You can write the code in that page itself to update the record. Since the username of that particular user is stored as a session as long as the user closes the browser window. So in the logout page you can add like this.

Re: [PHP] Sessions Problems

2004-09-04 Thread Octavio Herrera
Hi guys well I've been trying with named sessions, and nothing, then I did a pop up window to show me the $_SESSION content and when I reload that window a ramdom number of times, then the session expires and the $_SESSION array disappears!!! what can be this due to?? Im using PHP 4.3.3 and if

Re: [PHP] Sessions Problems

2004-09-03 Thread raditha dissanayake
Octavio Herrera wrote: Hello, im working in a website and I have this problem with sessions I have an admin page where I use session_start() and I have the user interface page where I also use session start, the problem is that when I open the user page, it overwrites my session I previously

Re: [PHP] Sessions Problems

2004-09-03 Thread Octavio Herrera
No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sessions Problems

2004-09-03 Thread raditha dissanayake
Octavio Herrera wrote: No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session hi, again this does not provide enough information,you will need to more clearly state the problem please are you using

Re: [PHP] Sessions Problems

2004-09-03 Thread Mark
--- Octavio Herrera [EMAIL PROTECTED] wrote: No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session This is because (I believe) you can't open two cookie-based sessions with two browser windows and

Re: [PHP] Sessions Problems

2004-09-03 Thread Jason Davidson
Read up on 'named sessions' I think that may be your solution jason Mark [EMAIL PROTECTED] wrote: --- Octavio Herrera [EMAIL PROTECTED] wrote: No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous

Re: [PHP] Sessions Problems

2004-09-03 Thread Mark
--- Jason Davidson [EMAIL PROTECTED] wrote: Read up on 'named sessions' I think that may be your solution Interesting... here's a link to php.net. I assume this is what you're talking about... Looks promising. http://us4.php.net/manual/en/function.session-name.php jason Mark [EMAIL

[PHP] Sessions Problems

2004-09-02 Thread Octavio Herrera
Hello, im working in a website and I have this problem with sessions I have an admin page where I use session_start() and I have the user interface page where I also use session start, the problem is that when I open the user page, it overwrites my session I previously opened in the admin page,

[PHP] Sessions PROBLEMS

2002-03-07 Thread Sven Jacobs
Hey I have a problem with sessions, with the code below If I post i always seems to get the same session_id That is not the idea. I want to generate everytime a unique one what is wrong with my code if ($action ==logout){ session_destroy(); print destroy; } if ( $action == post

[PHP] Sessions Problems!

2001-12-31 Thread Phillip M.(Mike) Bishop
I am having problems with my sessions. I authenticate the user against a mysql db. The authentication works fine and the session script works fine for all my other domains except one. They all reside on the same webserver using the same session class. The problem I have is when the user logs in,

Re: [PHP] Sessions Problems!

2001-12-31 Thread Jim Lucas [php]
Subject: [PHP] Sessions Problems! I am having problems with my sessions. I authenticate the user against a mysql db. The authentication works fine and the session script works fine for all my other domains except one. They all reside on the same webserver using the same session class. The problem I

Re: [PHP] Sessions Problems!

2001-12-31 Thread Phillip M.(Mike) Bishop
PROTECTED]; [EMAIL PROTECTED] Sent: Monday, December 31, 2001 12:57 PM Subject: Re: [PHP] Sessions Problems! when you say that nothing changed, does that include permissions on the tmp session directory, the httpd.conf file or any related configurations? Jim - Original Message - From

[PHP] sessions problems :/

2001-08-31 Thread Rui Barreiros
i'm sorry if the solution to this problem was posted here before, but if it was i couldn't find it. i have an app that it's basically like this: index.php: $app = new App; $app-start(); in class app: function start() { ()