can’t get errors

First of all, you have ini_set(‘display_errors’, 0); in there, so you tell PHP that it should NOT display any errors. And there can be another reason… error_reporting can be set in such way, that no errors are reported. So this might help: define(‘WP_DEBUG’, true); if (WP_DEBUG) { define(‘WP_DEBUG_LOG’, true); define(‘WP_DEBUG_DISPLAY’, true); ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’,1); ini_set(‘error_reporting’, … Read more

Theme Check errors of theme code

Textdomain Error The error message mean, that you haven’t a textdomain. There is required for translation of this string. In the first error message is the problem the missing textdomain on the function _n_noop(). Right usage as example below. _n_noop( ‘Security Release’, ‘Security Releases’, ‘your_textdomain’ ); Text Domain Information about the textdomain find you in … Read more

Block Update Profile Errors

Solution: First, Jeff Farthing of theme-my-login pointed out that I was using add_filter instead of add_action, and helped to craft the first code below, however it still has the same problem, so this is a step in the right direction but is not my solution: function tml_profile_errors( &$errors ) { if ( empty( $_POST[‘state’] ) … Read more

Migration problems with mysql: Operation not allowed when innodb_forced_recovery > 0 [closed]

Commenting out the line innodb_force_recovery = 1 in /etc/my.cnf thus: # innodb_force_recovery = 1 made the mysql innodb tables in the database accessible. Apparently this setting causes innodb to become read-only. I hope this helps someone in the future. If you don’t have access to /etc/my.cnf on shared hosting, ask your host to fix it … Read more

Plugin upgrade failing during unzip

The name of the temporary file created by the download_url function is 118 characters long. The length of this is causing the full path name of some files or directories created during the unzip process to be longer than the allowable length on Windows. Therefore an error is thrown and the plugin upgrade fails. I … Read more