session_is_started()

session_is_started()

am 08.04.2004 15:40:31 von Joolz

Hello,

I'm makeing a PHP frontend to a postgresql db, and want to use
sessions in order to sore global variables. I read that it's enough to
put session_start() in the top file of the app, but that doesn't work,
when I go two or three PHP files "deep", the session is forgotten.

To workaround this, I tried putting session_start() at the begonning
of every PHP file that does something with session variables. This
however gives me lot of these errors: "Notice: A session had already
been started - ignoring session_start() in [scriptname] on line 5"

I would like something like

if (!session_is_started()) { // note: this function doesn't exist
session_start();
}

How have you solved this problem? Thanks for any tips!

--
15:36-15:40
Fedora Core release 1 (Yarrow) Linux 2.4.22-1.2174.nptl

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

Re: session_is_started()

am 08.04.2004 16:49:01 von Wim Paulussen

I would do the following : on the first page you start the session with
session_start and then you include an OK field in the session

($_SESSION['OK'] = TRUE;

On the following pages , the first thing you do is check the existence
of the variable like this

if (! isset($_SESSION['OK']))
{
session_start();
}


Your problems derives most probably from teh fact that in your php.ini
the session.autostart is set to On , starting a session automatically
once 1 time started.


Joolz wrote:

>Hello,
>
>I'm makeing a PHP frontend to a postgresql db, and want to use
>sessions in order to sore global variables. I read that it's enough to
>put session_start() in the top file of the app, but that doesn't work,
>when I go two or three PHP files "deep", the session is forgotten.
>
>To workaround this, I tried putting session_start() at the begonning
>of every PHP file that does something with session variables. This
>however gives me lot of these errors: "Notice: A session had already
>been started - ignoring session_start() in [scriptname] on line 5"
>
>I would like something like
>
>if (!session_is_started()) { // note: this function doesn't exist
> session_start();
>}
>
>How have you solved this problem? Thanks for any tips!
>
>
>


---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Re: session_is_started()

am 09.04.2004 07:35:43 von Tin

Joolz wrote:
> I would like something like
>
> if (!session_is_started()) { // note: this function doesn't
> exist
> session_start();
> }

Hi,

this is not really a postgres-related question, but what the
heck. Use session_id to detect if a session is started or not.
See: http://hr2.php.net/manual/en/function.session-id.php for an
example (user-contributed, at the bottom of the page).


---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Re: session_is_started()

am 09.04.2004 15:47:52 von Joolz

> [Wim Paulussen schreef op 08-04-2004 16:49 +0200]

Hallo Wim, bedankt voor je reactie! (just saying hello to Wim)

> I would do the following : on the first page you start the session with
> session_start and then you include an OK field in the session
>
> ($_SESSION['OK'] = TRUE;
>

> On the following pages , the first thing you do is check the existence
> of the variable like this
>
> if (! isset($_SESSION['OK']))
> {
> session_start();
> }
>


I tried this:

if (!isset($_SESSION['id'])) {
// id is a session variable that contains the user id
session_start();
}

The output is:

Notice: A session had already been started - ignoring session_start()
in [scriptname] on line 3

I can't figure out what's going wrong...

> Your problems derives most probably from teh fact that in your php.ini
> the session.autostart is set to On , starting a session automatically
> once 1 time started.

No... It was on, but setting it off doesn't change the behaviour :-(

> Joolz wrote:
>
> >Hello,
> >
> >I'm makeing a PHP frontend to a postgresql db, and want to use
> >sessions in order to sore global variables. I read that it's enough to
> >put session_start() in the top file of the app, but that doesn't work,
> >when I go two or three PHP files "deep", the session is forgotten.
> >
> >To workaround this, I tried putting session_start() at the begonning
> >of every PHP file that does something with session variables. This
> >however gives me lot of these errors: "Notice: A session had already
> >been started - ignoring session_start() in [scriptname] on line 5"
> >
> >I would like something like
> >
> >if (!session_is_started()) { // note: this function doesn't exist
> > session_start();
> >}
> >
> >How have you solved this problem? Thanks for any tips!
> >
> >
> >
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: don't forget to increase your free space map settings
>

--
15:42-15:47
Fedora Core release 1 (Yarrow) Linux 2.4.22-1.2174.nptl

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Re: session_is_started()

am 13.04.2004 11:43:02 von Joolz

> [Tin schreef op 09-04-2004 07:35 +0200]
>
> Joolz wrote:
> > I would like something like
> >
> > if (!session_is_started()) { // note: this function doesn't
> > exist
> > session_start();
> > }
>
> Hi,
>
> this is not really a postgres-related question, but what the
> heck. Use session_id to detect if a session is started or not.
> See: http://hr2.php.net/manual/en/function.session-id.php for an
> example (user-contributed, at the bottom of the page).

Great, thanks!


--
11:42-11:42
Fedora Core release 1 (Yarrow) Linux 2.4.22-1.2174.nptl

---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match