Açıklama
Protect WordPress Admin is a plugin that helps wordpress administrators to hide wp-admin and wp-login pages from non-logged in users. The result is that in case of brute force attacks, the protected login pages will return 404 error.
In order to access the admin area, the users will have to go to wp-login page which in turn requires some authorization key and values passed as parameters to wp-login.php. Then only login page is available. In all the other cases, only 404 page is shown.
Yükleme
The plugin follows standard wordpress method to upload plugin.
e.g.
1. Download the plugin from repository.
2. Upload the plugin zip file from wordpress admin or to /wp-content/plugins/ using ftp and extract it.
3. Activate the plugin through the ‘Plugins’ menu in WordPress
4. Configure the plugin through settings menu. Remember you must set Enable = yes from plugin’s settings for plugin to work.
SSS
- What do Admin Authorization Key and Admin Authorization Value mean?
-
The key and value are the pair that you pass to wp-login.php page to access login page. e.g. If you have set authorization key as ‘authkey’ and authorization value as ‘12345’ then in order to access the login page you should type http://your-site-url/wp-login.php?authkey=12345. Without these the url will return a ‘page not found’ error.
- I forgot my key and value pair. What to do now?
-
- Access your wordpress databases from phpMyAdmin or other client.
- Find the table *_options (e.g. wp_options)
- Execute the sql query “UPDATE wp_options SET value = ‘no’ WHERE option_name=’_protect_admin_enabled’”. This will disable the plugin.
İncelemeler
Bu eklenti için herhangi bir değerlendirme bulunmuyor.
Katkıda Bulunanlar ve Geliştiriciler
“WordPress Protect Admin” açık kaynaklı yazılımdır. Aşağıdaki kişiler bu eklentiye katkıda bulunmuşlardır.
Katkıda bulunanlar“WordPress Protect Admin” eklentisini dilinize çevirin.
Geliştirmeyle ilgilenir misiniz?
Kodu görüntüleyin, SVN deposuna göz atın ya da RSS ile geliştirme günlüğüne abone olun.
Değişiklik Kaydı
1.0
- The first release of plugin.