There is another active plugin that is conflcting with Register Plus Redux error
-
Error Message : There is another active plugin that is conflicting with Register Plus Redux. The conflicting plugin is creating its own wp_new_user_notification function, this function is used to alter the messages sent out following the creation of a new user. Please refer to radiok.info for help resolving this issue.
Hi, I wrote a simple plugin that limits the number of IPs that can be accessing an account at the same time. but somehow it is conflicting with Register Plus Redux. I read the topics about this situation, but i could’t solve my problem. Waiting for your answer. Thanks in advance.
Here is my code :
$allowedIPs = 1;
$redirectURL = ‘https://www.aaaaaaaa.com’;global $wpdb;
if(!function_exists(‘wp_get_current_user’)) {
include(ABSPATH . “wp-includes/pluggable.php”);
}$table_name = $wpdb->prefix . ‘limit_access’;
$timeOut = 3600;$current_user = wp_get_current_user();
$user_id = $current_user->ID;
$user_login = $current_user->user_login;
….php codes
….php codes
$data = compact( ‘user_id’, ‘user_ip’ );
$data = stripslashes_deep( $data );
$insert_user = $wpdb->insert( $table_name, $data );
// END
- The topic ‘There is another active plugin that is conflcting with Register Plus Redux error’ is closed to new replies.