I think I found the problem :
2025-10-15T15:40:45.470150+02:00 pr-wbs-supweb02 systemd-coredump[943172]: Process 942727 (php-fpm) of user 1003 dumped core.
Stack trace of thread 942727:
#0 0x00005648c2d92367 php_stream_url_wrap_http_ex.isra.0 (php-fpm + 0x392367)
#1 0x00005648c2d95957 php_stream_url_wrap_http (php-fpm + 0x395957)
#2 0x00005648c2dc36a0 _php_stream_open_wrapper_ex (php-fpm + 0x3c36a0)
#3 0x00005648c2d4bcef zif_file_get_contents (php-fpm + 0x34bcef)
#4 0x00007f0e464abb6c phar_file_get_contents (phar.so + 0x1cb6c)
#5 0x00005648c2e8a41c execute_ex (php-fpm + 0x48a41c)
#6 0x00005648c2e8ee45 zend_execute (php-fpm + 0x48ee45)
#7 0x00005648c2e19440 zend_execute_scripts (php-fpm + 0x419440)
#8 0x00005648c2dac7ca php_execute_script (php-fpm + 0x3ac7ca)
#9 0x00005648c2c42b33 main (php-fpm + 0x242b33)
#10 0x00007f0e4a6295d0 __libc_start_call_main (libc.so.6 + 0x295d0)
#11 0x00007f0e4a629680 __libc_start_main@@GLIBC_2.34 (libc.so.6 + 0x29680)
#12 0x00005648c2c44975 _start (php-fpm + 0x244975)
ELF object binary architecture: AMD x86-64
2025-10-15T15:40:45.491253+02:00 pr-wbs-supweb02 systemd[1]:
Cette adresse e-mail est protégée contre les robots spammeurs. Vous devez activer le JavaScript pour la visualiser.: Deactivated successfully.
2025-10-15T15:40:46.154894+02:00 pr-wbs-supweb02 kernel: php-fpm[942725]: segfault at 90 ip 00005648c2d92367 sp 00007ffff0b4a700 error 4 in php-fpm[5648c2c00000+31f000] likely on CPU 0 (core 0, socket 0)
2025-10-15T15:40:46.155037+02:00 pr-wbs-supweb02 kernel: Code: 48 c7 84 24 d0 00 00 00 00 00 00 00 45 31 e4 48 c7 84 24 d8 00 00 00 00 00 00 00 0f 1f 84 00 00 00 00 00 80 7c 24 38 00 74 29 <49> 8b bc 24 90 00 00 00 48 85 ff 74 04 48 8b 7f 18 48 8b 54 24 48
2025-10-15T15:40:46.172624+02:00 pr-wbs-supweb02 systemd[1]: Started Process Core Dump (PID 943183/UID 0).
A colleague of mine traced the problem to
projeqtor/view/menuNewGuiLeft.php
if (ini_get('allow_url_fopen')) {
enableCatchErrors();
enableSilentErrors();
$ctx=stream_context_create(array('http'=>array('timeout' => 5))); <==== CRASH HERE
$ctx=getStreamContext(5);
$json = file_get_contents($urlPlugins,false,$ctx);
disableCatchErrors();
disableSilentErrors();
}
if (!$json) return $result;
which caused the coredump.
Setting
php_value[allow_url_fopen] = Off in php-fpm.d/projeqtor.conf seems to fix the problem.