Skip to content

Commit

Permalink
Updating everything for 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
srtfisher committed Aug 24, 2013
1 parent d9b54ff commit e8b3525
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ If you enable HTTP authentication, it will add HTTP authentication to the PHP fi
2. Activate the plugin through the 'Plugins' menu in WordPress
3. Navigate to the "Lockdown WP" menu

*Composer is not required to be setup for installation of this plugin! It is simply used for development purposes to provide unit testing.*

### FAQ
**How can we add files to the white list to hide from the public eye? We want to have AJAX and use a custom file, but we can't because it hides it from the public.**

Expand Down Expand Up @@ -91,4 +93,9 @@ A very late update, sorry! Worked to fix many issues with the admin bar and the

2.0.2
* Query string detection bug fix by [James Bonham](http://wordpress.org/support/profile/jamesbonham)
* Issues with WordPress in a sub-directory
* Issues with WordPress in a sub-directory

2.1
* Unit Testing! Unit Testing ensure more reliable code going forward
* Support for WordPress 3.6
* General Cleaning
6 changes: 3 additions & 3 deletions lockdown-wp-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: http://seanfisher.co/lockdown-wp-admin/
Donate link: http://seanfisher.co/donate/
Description: Securing the WordPress Administration interface by concealing the administration dashboard and changing the login page URL.
Version: 2.0.3
Version: 2.1
Author: Sean Fisher
Author URI: http://seanfisher.co/
License: GPL
Expand All @@ -17,7 +17,7 @@
* This is the plugin that will add security to our site
*
* @author Sean Fisher <[email protected]>
* @version 2.0.3
* @version 2.1
* @license GPL
**/
class WP_LockAuth
Expand All @@ -28,7 +28,7 @@ class WP_LockAuth
* @global string
* @access private
**/
public $ld_admin_version = '2.0.3';
public $ld_admin_version = '2.1';

/**
* The HTTP Auth name for the protected area
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Donate link: http://seanfisher.co/donate/
Link: http://seanfisher.co/lockdown-wp-admin/
Tags: security, secure, lockdown, vulnerability, website security, wp-admin, login, hide login, rename login, http auth, 404, lockdown, srtfisher, secure
Requires at least: 3.3
Tested up to: 3.5.1
Stable tag: 2.0.2
Tested up to: 3.6
Stable tag: 2.1

Lockdown WP Admin conceals the administration and login screen from intruders. It can hide WordPress Admin (/wp-admin/) and and login (/wp-login.php) as well as add HTTP authentication to the login system. We can also change the login URL from wp-login.php to whatever you'd like: /login, /log-in-here, etc.

Expand Down Expand Up @@ -97,3 +97,8 @@ A very late update, sorry! Worked to fix many issues with the admin bar and the
= 2.0.2 =
* Query string detection bug fix by [James Bonham](http://wordpress.org/support/profile/jamesbonham)
* Issues with WordPress in a sub-directory

= 2.1 =
* Unit Testing! Unit Testing ensure more reliable code going forward
* Support for WordPress 3.6
* General Cleaning

0 comments on commit e8b3525

Please sign in to comment.