• 02-10-2015, 15:45:29
    #1
    Wordpress tabanlı wordpress siteme Wordfence eklentisi kurdum ve günde yaklaşık 250 adet çeşitli bağlantılardan ip adreslerinden login hataları alıyorum. Sunucumda Pleks Panel 12 kuruludur.


    This email was sent from your website "Site İsmi" by the Wordfence plugin at Friday 2nd of October 2015 at 12:34:26 PM
    The Wordfence administrative URL for this site is: http://www.xxxx.com/wp-admin/admin.php?page=Wordfence

    A user with IP address 67.23.248.112 has been locked out from the signing in or using the password recovery form for the following reason: Used an invalid username 'admin' to try to sign in.
    User IP: 67.23.248.112
    User hostname: Anne.ontargetwebsolutions.com
    User location: Orlando, United States


    NOTE: You are using the free version of Wordfence. Upgrading to the paid version of Wordfence gives you
    two factor authentication (sign-in via cellphone) and country blocking which are both effective methods to block attacks.
    A Premium Wordfence license also includes remote scanning with each scan of your site which can detect
    several additional website infections. Premium members can also schedule when website scans occur and
    can scan more than once per day.
  • 05-10-2015, 03:31:50
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Wp-Admin giris adresini degistirmeyi deneyin.

    wp-config.php dosyasina ekle:

    define('WP_ADMIN_DIR', 'giris-ismi');
    define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . WP_ADMIN_DIR);
    functions.php dosyasina ekle:

    add_filter('site_url',  'wpadmin_filter', 10, 3);
     function wpadmin_filter( $url, $path, $orig_scheme ) {
      $old  = array( "/(wp-admin)/");
      $admin_dir = WP_ADMIN_DIR;
      $new  = array($admin_dir);
      return preg_replace( $old, $new, $url, 1);
     }
    .htaccess ekle:

    RewriteRule ^giris-ismi/(.*) wp-admin/$1?%{QUERY_STRING} [L]
    giris-ismi yazan yerleri degistirmeyi unutmayin


    Belki sizin icin cözüm olabilir.