Bero
Bero
> Perhaps a pool of 3-4 PHP instances would suffice to solve most of these errors? This could work. To ensure 3-4 are enough, we could limit Action Scheduler to...
I'm having some timeout issue with tests passing locally, but it could be just my machine. Let's wait with this PR until we fix the build (I'm working on it...
Most visitors use Chrome, so it would be beneficial to do it. Personally I would prefer not to support two versions, but if we can do it in a clean...
@adamziel I will explore this one and see if I can make any progress on it.
I started by [adding the Vite PWA plugin and configuring it](https://github.com/WordPress/wordpress-playground/pull/1086). The next step is to enable offline support and ensure it works in development and production.
Playground loads only a part of WordPress on the first load. Other files are loaded as needed, we will need to find a way to preload all files for full...
On a Apache site updating the setting works as expected. Running the query with a `null` value in MySQL returns an error. I'm going to check the Playground code now....
I traced the[ option update all the way to the MySQL call](https://github.com/WordPress/WordPress/blob/master/wp-includes/class-wpdb.php#L2344) it still had `null` as the value.
This code doesn't produce errors which makes me think it's related to mysqli and how it handles null values in not null columns. ``` $wpdb->query("UPDATE `wp_options` SET `option_value` = '1'...
Running MySQL in the same place results in an error, so there must be something that WP does to the MySQL instance for it to work. ``` mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);...