Kévin Dunglas

Results 1072 comments of Kévin Dunglas

Hi, I'm on vacation but my company provides paid support if it's urgent. You can contact us at [email protected]

I don't think it will be possible to support cross-domain references. However, PR welcome add a config option to add crossorigin attributes.

Having something like `php:8.3-zts-dbgsym` would help track issues reported to the FrankenPHP repository (which are often upstream PHP or extensions bugs) a lot too!

Good idea, we'll need https://github.com/symfony/symfony/issues/59651 first.

For 1, it should be possible to improve the situation by using the new watcher mode, it prevents closing the SSE connection because only PHP workers restart on file change,...

Can you try to increase the stack size (see the tip at the end of this page): https://frankenphp.dev/docs/compile/#using-xcaddy If this doesn't fix the issue, you likely have an infinite loop...

Isn't Slim using a DotEnv parsing library or something like that overriding `$_ENV`? It's something quite common in frameworks.

@AlliBalliBaba Are you sure that none of you codebase is using `putenv()` or `getenv()`, that are known to not be thread safe? Anyway, a minimal reproducer would help understanding what's...

Thanks for the reproducer. Not sure if it's a PHP bug, we manipulate superglobals in worker mode and it may also be a bug here: https://github.com/dunglas/frankenphp/blob/main/frankenphp.c#L156 Or even here: https://github.com/dunglas/frankenphp/blob/main/frankenphp.c#L156...