• Resolved payam

    (@hzv4424)


    hello
    firstly excuse me for pure English language

    bug report:

    conflict with Ultimate member plugin (called=UM)
    fresh install of wp 5.2.2 with UM 2.0.54 & AIOsecurity 4.3.9.4.

    after enabling UM, Login Page Captcha that was Created by Brute Force setting of AIOsecurity no longer worked

    but Captcha in Lost Password Page worked curectly
    both google captcha and Math question are same in this problem
    by disabling UM problenm solved

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor mbrsolution

    (@mbrsolution)

    Hi, do you also have the Rename Login Page feature enabled in Brute Force?

    Regards

    Thread Starter payam

    (@hzv4424)

    HI
    no
    i dont use this feature
    Login Page is wp-admin
    thank

    Plugin Contributor mbrsolution

    (@mbrsolution)

    Hi, can you reach out to the UM developer. See if they can find out what is causing this issue. Let me know what they say.

    Thank you

    Plugin Contributor wpsolutions

    (@wpsolutions)

    Hi @hzv4424,
    I took a quick look at the ultimate member plugin code and I think the problem lies with the function called um_wp_form_errors_hook_logincheck in which is located in the file um-filters-login.php.

    A brief explanation of issue as I understand it is that the aiowps plugin uses the “authenticate” filter with a priority of 20 to check the captcha answer. If the answer is incorrect the aiowps plugin returns a WP_Error object.

    However the ultimate member plugin also uses the “authenticate” filter but with a priority of 50 (which means it does the processing AFTER the aiowps plugin). In doing so it is overwriting the WP_Error which is returned by this plugin.

    To solve this issue I think they should add the following line at the beginning of that function:
    if( is_wp_error( $user ) ) return $user;

    Please pass this information on to the developers of that plugin.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘conflict with Ultimate member plugin’ is closed to new replies.