Open stefanofornari opened 1 year ago
I actually found out the issue is there for all themes. After some research I ran into this: https://stackoverflow.com/questions/43636109/php7-session-warning-session-write-close/43636110#43636110
which tells me it is something in php7 and earlier itself.
For now I have applied the workaround below, I have no idea of the implications though :)
system/libraries/Session.php
325,326c325
< try { session_write_close(); }
< catch (Throwable $t) { error_log('error in session_write_close() - see https://stackoverflow.com/questions/43636109/php7-session-warning-session-write-close/43636110#43636110'); }
---
> session_write_close();
328,329d326
<
< return TRUE;
Hello
I have recently upgraded Gallery to the main branch and I have now a problem with the theme Gray Dragon. The exception I see in the server log is:
And it happens not always, but once in a while navigating the site.
I am using php 8
With the default theme I do not see the problem. I am starting to dig into the code, although I am not a php developer; any help is appreciated. Let me know if there are other places where I can get some support.
thanks in advance