Added Flywheel couple days ago Everything seems to be working great
I am using wordpress and templates are fully showing up.
System Info:
PHP Max Input Vars: 3000
PHP Max Post Size: 1000M
WordPress
Max Upload Size: 1,000 MB
Memory limit: 40M
Added Flywheel couple days ago Everything seems to be working great
I am using wordpress and templates are fully showing up.
System Info:
PHP Max Input Vars: 3000
PHP Max Post Size: 1000M
WordPress
Max Upload Size: 1,000 MB
Memory limit: 40M
I’m guessing you want to increase the memory limit so WP runs better? If so, add the following your your wp-config file above /* That’s all, stop editing! Happy blogging. */.
define( 'WP_MEMORY_LIMIT', '128M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
You can change the memory limits to whatever you like… this is what I use.