Infinite loading with cornerstone editor please help.
Hello @Decorio,
Thanks for writing in!
A loading screen would probably because you have exhausted your PHP memory limit. By default, WordPress will attempt to increase memory allocated to PHP to 40MB (code is at the beginning of /wp-includes/default-constants.php) for single site and 64MB for multisite, so the setting in wp-config.php should reflect something higher than 40MB or 64MB depending on your setup.
We recommend that you increase your memory allocated to PHP. To increase it, please edit your wp-config.php file and insert these lines:
define( 'WP_MEMORY_LIMIT', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );
You can add it before the line
/*That's all, stop editing! Happy Blogging. */
And also make sure that the Site URL and WordPress Address URL in Settings > General is the same as your WP dashboard url. If you have installed an SSL plugin, please deactivate it. The URLs in Settings > General must be using https:// instead of having the SSL plugin.
We would loved to know if this has work for you. Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.