-
Hi. I am facing a really weird issue, where some templates seem to not be included in the final render of the page. You can see it on https://www.simbiat.dev/: on some reloads the elements tree will look like this |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Tried rolling back to 3.8.0 and 3.7.1 - same thing. Could be some update of any of dependencies or maybe even update to PHP 8.3, but I've implemented some changes which are 8.3 specific, so definitely can't rollback those now. Any advise on this would be appreciated. |
Beta Was this translation helpful? Give feedback.
-
Interesting: my test PC is on Windows, and I was using Apache, while on PROD I was using Litespeed. I decided to switch to nginx, and also set it up on Windows and... Now the issue is replicable on test as well. Considering that both nginx and Litespeed use FastCGI, I wonder if this is somehow related to it. Maybe I am hitting some sort of a limit in FastCGI, that prevents opening more than X files at once or something? |
Beta Was this translation helpful? Give feedback.
-
Turned out the issue was with me sending |
Beta Was this translation helpful? Give feedback.
Turned out the issue was with me sending
Content-Length
header with length calculated withmb_strlen
instead ofstrlen
.