• Resolved massivescale

    (@massivescale)


    After the last upgrade from imagely menu WordPress died with a WSOD. There was nothing in the logs even though WP_DEBUG and NGG_DEBUG were enabled.

    The solution was to delete payment gateway modules from wp-content/plugins/nextgen-gallery-pro/modules because they were missing some class.

    Suggestion to devs: to save hours of debugging time for others, in class.component_registry.php : require_module_file(), remove the @ before require_once. Or change it to:

    if(NGG_DEBUG) {($module_file_abspath);
    require_once($module_file_abspath);
    } else {
    @require_once($module_file_abspath);
    }

    This will make the errors appear in log so administrators can debug their site without bothering your support.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘White screen after upgrade’ is closed to new replies.