|
Posted by Rik on 11/27/05 14:56
Oli Filth wrote:
> At the top of a script, something like:
>
> <?php
> if (isset($_COOKIE['PHPSESSID']))
> {
> session_start();
> // other session-related stuff here
> }
> NOTE: I haven't tried this, so there's no guarantee that it will work.
>
>> 2. Inlogform is submitted.
> <?php
> // perform log-in validation here
>
> if (Log-in is valid)
> {
> session_start();
> }
Thanks, I'll ty this
>> How can i prevent the ugly PHPSESSID=blabla in the url when the
>> browser won't accept cookies?
>
> You can do is disable URL-based session IDs, by setting
> session.use_only_cookies = 1 in your ini file.
Unfortunately I cannot change the ini file, but I've found the resolution:
output_reset_rewrite_vars();
"This function resets the URL rewriter and undo the changes made by
output_add_rewrite_var() and/or by session_start() that are still in the
buffer."
Grtz,
Rik
Navigation:
[Reply to this message]
|