Skip to content

Instantly share code, notes, and snippets.

@anugrahbsoe
Created December 2, 2017 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anugrahbsoe/4d17fcabd8807ab741e25393b5fab2c6 to your computer and use it in GitHub Desktop.
Save anugrahbsoe/4d17fcabd8807ab741e25393b5fab2c6 to your computer and use it in GitHub Desktop.
Otentikasi Login : Authentication Required Pada Login WordPress
//Default password
User Name : Human
Password : password
//Mengilangkan
edit file .htacces di folder tersebut dan kemudian tambahkan:
<filesmatch "wp-login.php">
Satisfy Any
</filesmatch>
//Menambahkan
AuthType basic
AuthName "Human Check - U: human P: password"
AuthBasicProvider file
AuthUserFile /home/UsercPanel/verifikasi
Require valid-user
ErrorDocument 401 "Authentication required"
link referensi :
http://www.danforblog.com/otentikasi-login-authentication-required-pada-login-wordpress/
https://www.rumahweb.com/journal/mengamankan-administrator-website-menggunakan-otentikasi-login.htm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment