more 20 coockie

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

    more 20 coockie

    i must develop an intranet web application and i don't wont session.

    The cookie limit is 20 but i wont extend this is possible it ?
  • Michael Fesser

    #2
    Re: more 20 coockie

    .oO(Hywel)
    [color=blue]
    >i must develop an intranet web application and i don't wont session.
    >
    >The cookie limit is 20 but i wont extend this is possible it ?[/color]

    What limit?

    Micha

    Comment

    • Roy W. Andersen

      #3
      Re: more 20 coockie

      Hywel wrote:[color=blue]
      > i must develop an intranet web application and i don't wont session.
      >
      > The cookie limit is 20 but i wont extend this is possible it ?[/color]

      20 cookies per domain
      300 cookies total
      4kb per cookie

      These are the minimums listed by the cookie specifications rfc2109 (old)
      and rfc2965 (new), and browsers generally use them as upper limits. If
      you exceed these limits, don't expect your site to work with most
      browsers. The same specification(s ) also state "Applicatio ns should use
      as few and as small cookies as possible, and they should cope gracefully
      with the loss of a cookie."

      Personally I've never seen any need to use more than 3-4 cookies for any
      given site. Store your cookies as serialized arrays and use
      session-variables instead.

      Generates a storable representation of a value

      Creates a PHP value from a stored representation




      Roy W. Andersen
      --
      ra at broadpark dot no / http://roy.netgoth.org/

      "Hey! What kind of party is this? There's no booze
      and only one hooker!" - Bender, Futurama

      Comment

      Working...