Boosting Memory

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.

Browser to php.ini file in your sites files SITENAME/conf/php/7.0.3/php.ini open the php.ini file and change upload_max_filesize and post_max_size and then restart you sites again.

1 Like