• I get the following error when registering a new account, and no confirmation email gets sent

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘Bulk_User_Management::invite_message’ was given in /hermes/bosweb25b/b757/nf.invisionequinox/public_html/arcatest/wp-includes/plugin.php on line 170

    Anyone have ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter connor83

    (@connor83)

    from plugin.php:

    166 do {
    167 foreach( (array) current($wp_filter[$tag]) as $the_ )
    168 if ( !is_null($the_[‘function’]) ){
    169 $args[1] = $value;
    170 $value = call_user_func_array($the_[‘function’], array_slice($args, 1, (int) $the_[‘accepted_args’]));
    171 }
    172
    173 } while ( next($wp_filter[$tag]) !== false );

    I think the problem is in the Bulk User Management plugin. It’s missing a method called “invite_message”, used here:
    Line 39: add_action( ‘wpmu_signup_user_notification_email’, array( $this, ‘invite_message’ ), 5, 5 ); (in bulk-user-managment.php)

    I created a blank method in that file and it made the error go away, but I’m sure it was supposed to do something important. Still debugging this on a client site.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error when registering new account’ is closed to new replies.