Rob

Results 14 comments of Rob

Not exactly sure where the "219250 bytes" in the error comes from, but the default buffer size for each fork is 1024 kb. You can manually adjust it [here](https://github.com/spatie/fork/blob/b6f180a259026c45ae0dfe1ab047fb3206cb9a62/src/Connection.php#L16) if...

Same here, on a fresh install of Craft CMS using the starter project. Not sure it's exactly the same thing because the plugin does seem to be installed, but the...

@brandonkelly Found the culprit. The JSON output of the final XHR request (at the end of an install, update or removal) is preceded by voku deprecation warnings (#16606), preventing the...

The deprecation notices arise from autoloading before bootstrap.php can call error_reporting(). It's fixed when I put `error_reporting(E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED);` in web/index.php before bootstrap.php is loaded. Instead I'll set...