question about PHPSESSID

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Leszek

    #1

    question about PHPSESSID

    Hi.
    How should I configure Apache2.2 with php5 so that PHPSESSID would be sent
    as a cookie ? Now I'm not getting any messages even if I set IE to ask
    about incoming cookies...

    So what is the default way of sending PHPSESSID if not as a cookie?

    What is the best way to send PHPSESSID?

    thanks,

    Leszek


  • Scott

    #2
    Re: question about PHPSESSID

    Session ID's can be sent as a cookie or in the url. Cookies are the
    default as well as generally preferred method.

    There are some settings in your php.ini file which control this
    behavior: session.use_coo kies, and session.use_onl y_cookies. They are
    explained here:



    Hope this helps!

    Scott

    On Tue, 2006-06-13 at 00:20 +0200, Leszek wrote:[color=blue]
    > Hi.
    > How should I configure Apache2.2 with php5 so that PHPSESSID would be sent
    > as a cookie ? Now I'm not getting any messages even if I set IE to ask
    > about incoming cookies...
    >
    > So what is the default way of sending PHPSESSID if not as a cookie?
    >
    > What is the best way to send PHPSESSID?
    >
    > thanks,
    >
    > Leszek
    >
    >[/color]

    Comment

    Working...