Hi,
2010/3/12 Ralph Schindler <[email protected]>:
> Out of curiosity, if you replace the error_log() function with a
> file_put_contents() does it return the same thing?
> error_log() is subject to the ini value log_errors_max_len
> and might sometimes truncate it.
Surprisingly, the output from error_log was truncated:
1071: Zend_Auth|a:1:{s:7:"storage";O:21:"xxxxxxxxxxxx_UserInfo":7:{s:28:"
Length of serialized session is 1071 and log_errors_max_len is 1024.
When I increased log_errors_max_len 10 times the session data are
truncated to the same length as before - wired.
Anyway, i'm little bit closer to solve this issue now. UI is written
in the Flex (not sure what is better: bugs in the browsers or bugs in
the flash plugin :) ) and there is no locking in
Zend_Session_SaveHandler_DbTable so sessions are probably overwritten
by concurrent requests.
> Also, is the $data already in the database? Is the column for data long
> enough?
I use 'text' column for session data in PostgreSQL which is limited to 4Gb
Thanks,
--
Ondrej Ivanic
([email protected])