Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author itthinx

    (@itthinx)

    Hi,

    Please enable debugging and check the contents of the debug.log after attempting to delete a user.

    It may be related to insufficient PHP memory, but try the above to make sure please and post your results.

    Cheers

    Thread Starter benborie

    (@frenchdistrict)

    Thank you for pointing us in the right direction… The debug output mentions:

    PHP Fatal error: Call to undefined function wp_cache_reset() in /wp-content/plugins/groups/lib/core/class-groups-controller.php on line 46

    We are on a multisite setup. We added if(function_exists(‘wp_cache_reset’) to the code and everything works now:

    public static function switch_to_blog( $blog_id ) {
    switch_to_blog( $blog_id );
    if ( function_exists( ‘wp_cache_switch_to_blog’ ) ) {
    wp_cache_switch_to_blog( $blog_id ); // introduced in WP 3.5.0
    } else {
    if(function_exists(‘wp_cache_reset’))
    wp_cache_reset(); // deprecated in WP 3.5.0
    }
    }

    Thanks again

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can't Remove Users – Blank Page after confirmed deletion’ is closed to new replies.