#2640 - Attempting to use filtercode results in server hang
0 guests and 0 members have recently viewed this.
The top 3 point earners from 14th Dec 2025 to 21st Dec 2025.
| PDStig |
|
|
|---|---|---|
| Gabri |
|
|
| sholzy |
|
|
There are no events at this time
Composr turns on a 60 second execution limit for pages. There are a few cases where we turn it off, but it should not be the case for evaluating a block.
I just tested a main_news block with "title=foo", no issue. If you want to try and give a reproduction case, I suggest using the block construction assistant and see if you can find something that crashes when you preview it.
Parsing issue is very unlikely as it's a simple explode command:
$filters = explode((strpos($filter, "\n") !== false) ? "\n" : ',', $filter);
foreach ($filters as $bit) {
rather than a byte-by-byte loop (a byte by byte loop could potentially be buggy).
I'm not saying there's no issue, but certainly I can't reproduce one now, and if there is it's probably some kind of performance degradation that causes request queueing, rather than than any single request crashing a server.