White screen of death on post save only

Per the comment on the original question and work with hosting technical support, the problem was indeed the child theme. Both the comment and tech support gave me a possibility to pursue, but not a conclusive answer. So, here is how I pursued it. The parent theme was Twenty Sixteen. The child theme only had … Read more

Memory issues – Fatal error: out of memory – plugins?

To diagnose a load-intensive (either CPU cycles or memory) Plugin, start by deactivating all Plugins. Ensure that, with no Plugins active, you do not observe the same issues. If you observe the same issues with all Plugins deactivated, then the problem is somewhere else, either with your Theme, your database, or your server configuration. If … Read more

WordPress White Page with Certain Database

When transferring wordpress site from one server to another First step is to udate wp-content foder on old site with new site’s wp-content Then, database ( drop old database, import new database ) finally update wordpress database table with following step. Login to your phpmyadmin dashboard, choose your database to update and click on sql … Read more

current_user_can on WordPress 3.1.1

You are calling the function too early. The functions.php is included before current_user_can() is defined. Never do anything before the hook ‘after_setup_theme’: Example for the functions.php add_action( ‘after_setup_theme’, array( ‘WPSE_14041_Base’, ‘setup’ ) ); class WPSE_14041_Base { public static function setup() { ! isset ( $GLOBALS[‘content_width’] ) and $GLOBALS[‘content_width’] = 480; add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘page’ … Read more