Hello,
Sorry for the late reply.
The problem could be related to not enough memory for WordPress for PHP or maximum execution time limit being reached in PHP.
At first, I would recommend you to temporary enable debugging in WordPress.
You can do this by setting this options in wp-config.php
above the line that says:
/* That’s all, stop editing! Happy blogging. */
// Turn debugging on
define('WP_DEBUG', true);
// Tell WordPress to log everything to /wp-content/debug.log
define('WP_DEBUG_LOG', true);
// Turn off the display of error messages on your site
define('WP_DEBUG_DISPLAY', false);
// For good measure, you can also add the follow code, which will hide errors from being displayed on-screen
@ini_set('display_errors', 0);
Please do note to remove any other instances of this code if you have it in the file:
define('WP_DEBUG', false);
php.ini settings:
max_input_vars = 3000
max_input_time = 120
max_execution_time = 120
memory_limit = 128M
You can experiment there and set 256M if you wish, but be careful to not specify a value that you cannot provide if you are on a shared hosting or if it is above your server limits.
In case you do not know what I shared above, I strongly recommend that you contact your hosting provider.
Debugging in WordPress
Greetings,
Plamen