|
Posted by Oli Filth on 04/27/06 01:09
Vadim said the following on 26/04/2006 22:56:
> Hi!
> I am developing some sort of a site in PHP. The easiest way to mantain
> the session state after the login is by using session_start() and
> coockie mechanisme. However, when I disable the cockies in FireFox and
> IE, no session is saved and no login can be made. Even turning the
> PHP.ini trans-sid to "1" doesn't help. The interesting thing is that
> with coockies disabled we can't login to google or del.icio.us.
Note that to obtain URL-based SIDs, you must also ensure that
session.use_only_cookies is set to "0".
>
> My question: is it worth to invest develop time to solve this
> session_with_coockie_dissabled_ problem, if even google doesn't care
> about it?
This is just my personal opinion, and shouldn't taken as "advice", but I
believe that one shouldn't bother with URL-based sessions. If the user
has disabled cookies, they will have to accept the disadvantages
associated with that decision, i.e. certain websites will not be able to
provide full functionality.
To obtain truly interactive behaviour from a website, state must be
maintained (i.e. the server must be able to keep track of what has
occurred in the past). If the user has disabled cookies, then they
seriously impair this.
--
Oli
Navigation:
[Reply to this message]
|