Hello Bruce,
On Monday, December 16, 2002, Bruce Richardson wrote...
>> This is most unusual. PHP says you can remove a cookie just by
>> providing it's name, or setting it's time back in time to cause the
>> browser to expire it. I guess they incorrectly stated that then.
>> I'll update the code
On Mon, Dec 16, 2002 at 12:12:28AM -0600, Jonathan Angliss wrote:
> This is most unusual. PHP says you can remove a cookie just by
> providing it's name, or setting it's time back in time to cause the
> browser to expire it. I guess they incorrectly stated that then. I'll
> update the code appro
> So I changed src/global.php as shown below. And now I can log in.
[snip]
> $cookie_params = session_get_cookie_params();
> setcookie(session_name(), '', time() - 5, $cookie_params['path'],
> $cookie_params['domain']);
> setcookie('username','',time() - 5,$base_uri);
> s
>> argh... my PC crashed when I was writing the original email, and the
>> devel one got the line the stable should have got. Line 153 *should*
>> say 157 I believe (the end of the sqsession_destroy in case I messed
>> up again).
>
> That doesn't help. However, I noticed that another thing you cha