Hello Jonathan,
> On Saturday, November 09, 2002, Roland Fritz wrote...
>
>>> function sqsession_register ($var, $name) {
>>>...
>> without the session_register/unregister the wellknown error will
>> occur...
If we change the session_register line to
session_register("$name");
the next/previo
Found another cause for that error message . .
Using lynx to login, there were complaints (from lynx) that the server was
using the wrong directory for cookies. The Error returned from squirrelmail
was the familiar "You must be logged in . . ."
By changing the setting in php.ini to;
; The
Hello Roland,
On Saturday, November 09, 2002, Roland Fritz wrote...
>> function sqsession_register ($var, $name) {
>> if ( !check_php_version(4,1) ) {
>> global $HTTP_SESSION_VARS;
>> $HTTP_SESSION_VARS["$name"] = $var;
> session_register("$name" , $var);
>> }
>
Hi Jonathan,
> So here is a proper fix for it now:
>
> function check_php_version ($a = '0', $b = '0', $c = '0')
ok, works fine.
> function sqsession_register ($var, $name) {
> if ( !check_php_version(4,1) ) {
> global $HTTP_SESSION_VARS;
> $HTTP_SESSION_VARS["$name"] = $var;
Hi All,
Well, I've been looking in the wrong place for this error logging in
issue with 1.2.8 and higher. The issue was in fact fixed yesterday
by Thijs, and was also pointed out by Roland Fritz who did some
debugging which I wasn't able to do. The issue itself wasn't in the
sqsession_