Hey @Bizolly –
That info from Query Monitor looks pretty good, however, what page are you looking at when reading this info – the numbers will change depending on what page is visited. You can read these numbers like this:
How long the server took to generate the page. That’s a little bit over 1 second, which could be better, but isn’t too bad.
This is the amount of RAM that was used by WordPress to create the page. 8,895Kb is kilobytes, so just under 9Mb needed. This is pretty good. I’ve seen much worse!
That all seems good. If you’re curious about the various queries that WP makes, this is a good place to dig in. Having too many queries, or queries that take too long can be the source of slow page loads, but that doesn’t look like the case here.
Books can be written about this…That ratio looks pretty good. This is PHP’s object cache, so the instantiated objects that are reused on a page load.
That’s correct, in order to push or pull the site to Flywheel’s servers, you’ll need to clone the site to a preferred environment. There aren’t any real issues creating a site in the custom environment, but if the site only works in the custom environment, it may be an indication that it will need more resources than what is default on Flywheel’s servers.
I would say, since this appears to be happening only when saving the page, you might try cloning to a preferred environment and pushing to a demo site to see if things behave better on the server.
I think that you only need to change it within the 7.2.0
folder. Double check by looking at what version of PHP is being used on the site within Local:
As far as having the nginx
folder – that may be from an old setup of this custom site. Either way, the configuration that is being used, will be whatever is set within Local:
Overall, since the original error was occurring during saving, I’m wondering if there are additional jobs that are being run that use up all of the available memory. This could be things like resizing or compressing images or doing some sort of additional background work.
Hopefully increasing the memory within the php.ini
will allow you to save the page. Keep in mind though that if you have to increase this value significantly, there might need to be adjustments made to the server’s memory limits when deployed to Flywheel, or any other server.
Hope that helps clarify things. Let me know if you need anything else!