Rob Landers

Results 543 comments of Rob Landers

So, if you search your entire codebase (vendor folder + your own code), there is nothing calling any of the openssl functions? Then how is it being called and crashing??...

Thanks! To better help us figure this out, it would be helpful to understand what is specifically calling the code to that causes this issue (as in the exact library/methods...

> I reach to reproduce the crash on a page. I have this crash every refresh with always this stack Yes, that tells us there is something wrong and with...

I can confirm this bug. I'll have to dig into what is terminating the process, but it does, in fact, never return.

I ended up implementing what I wanted by calling the script in question as a fake request and calling `ServeHTTP()`. :1st_place_medal: It's not ideal, but it worked for me. I'm...

I see an exit code 0, so something cleanly terminated the server. That would be a good starting point, try to figure out why the server is exiting.

yes, php-fpm starts as root and then switches users after opening ports. Caddy starts as whatever user starts it and that's it. This means if you want to open a...

Hmm, I see it uses [amphp](https://github.com/nextcloud/server/blob/2b1057721a72dd764df3a25b961193904490693e/vendor-bin/psalm/composer.lock#L10) which uses fibers, which means you might be hitting #46 ...

Something I haven't tried, but might be worth trying, is to try putting this in your worker script: ```php // at the beginning of the request ob_start(); // handle request...

@dunglas it just occurred to me (and possibly not even related to the main issue) that it might be worth asking in internals if there is a way to switch...