Right….so this points back to the server ( hosting ) and not enough php memory maybe.
It is set at 256 M which should be enough.
You might try to elevate that to 512 M ( if your host supports it )
Please add this to your wp-config.php file after the host name:
/** Memory Limit */
define('WP_MEMORY_LIMIT', '512M');
define('WP_MAX_MEMORY_LIMIT', '512M');
This speeds up the front and backend of the site.
Make sure the host supports it, if not it wont do anything.
it should look like this in the area around it to give you an idea where to put it, after you added the code I altered my passwords for security reasons:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'xxxxxxxxxxxx');
/** MySQL database username */
define('DB_USER', 'xxxxxxxxxxx');
/** MySQL database password */
define('DB_PASSWORD', 'xxxxxxxxxxxxxx');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/** Memory Limit */
define('WP_MEMORY_LIMIT', '512M');
define('WP_MAX_MEMORY_LIMIT', '512M');
/**#@+
* Authentication Unique Keys and Salts.
-
This reply was modified 6 years ago by
LogoLogics.
-
This reply was modified 6 years ago by
LogoLogics.
-
This reply was modified 6 years ago by
LogoLogics.
-
This reply was modified 6 years ago by
LogoLogics.