• Resolved claymehedi

    (@claymehedi)


    I enabled an option but I dont know, but now when I try to login vai wp-admin, it redirect me to 127.0.0.1

    how can I solve this? also I need to whitelist my IP and if any other user that are not whitelisted how can they login ?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support hjogiupdraftplus

    (@hjogiupdraftplus)

    Hi @claymehedi,

    127.0.0.1 wp-admin being redirected means you have enabled cookie based brute force.

    You should try access with secret word so {site_url}?{secret_word}=1 It will save cookie in your browser for 24 hrs the again after 24 hrs it will start redirect to 127.0.0.1 and you can access with {site_url}?{secret_word}=1 only.

    If you have enabled and forgot the {secret_word} define AIOS_DISABLE_COOKIE_BRUTE_FORCE_PREVENTION true in wp-config.php and try access with wp-login.php ( or renamed login page) it will disable the cookie based brute force.

    define('AIOS_DISABLE_COOKIE_BRUTE_FORCE_PREVENTION', true);

    Once you logged in please go to WP Security > Brute force > Cookie based brute force prevention.
    there check secret_word and remove the defined constant.

    If this is not the case or still issue let me know.

    Thread Starter claymehedi

    (@claymehedi)

    when someone try to get access from my secret code, it gets http error 403

    Plugin Support hjogiupdraftplus

    (@hjogiupdraftplus)

    Hi @claymehedi,

    It might be you have the login white list enable also please try add below constant in wp-config.php and cross check.

    define( 'AIOS_DISABLE_LOGIN_WHITELIST', true );

    Regards

    Thread Starter claymehedi

    (@claymehedi)

    so if I enable white list then secret code not working?

    On my site secret code & login ip white list is enable so if someone try to login via secret code they cant login without whitelist?

    Plugin Support hjogiupdraftplus

    (@hjogiupdraftplus)

    Hi @claymehedi,

    Please add both below constant in wp-config.php it should show the login page using wp-login.php

    If you have renamed login page using WP Security > Brute force > Rename login page than have to user instead wp-login.php renamed login page slug.

    define( 'AIOS_DISABLE_LOGIN_WHITELIST', true );
    define('AIOS_DISABLE_COOKIE_BRUTE_FORCE_PREVENTION', true);

    Regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.