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 relies
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 tec
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.
session_sta
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
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 you
--- 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
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
--- 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
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 cooki
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
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 opene
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, h
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 == "p
illip M.(Mike) Bishop" <[EMAIL 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 rela
ember 31, 2001 2:58 AM
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
>
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,
t
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() {
()
17 matches
Mail list logo