WordPress.org Forums » [Lockdown WP Admin] Support https://wordpress.org/support/plugin/lockdown-wp-admin/feed/ Sat, 25 Jan 2025 16:46:32 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://wordpress.org/support/topic/technical-issue-on-plugin/ <![CDATA[Technical Issue on Plugin]]> https://wordpress.org/support/topic/technical-issue-on-plugin/ Wed, 11 Jan 2023 20:19:11 +0000 axengine Replies: 0

since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email.

/home/domainname.com/public_html/wp-content/plugins/lockdown-wp-admin/src/Lockdown/Application.php(126): require(‘/home/domainname…’)

/home/domainname.com/public_html/wp-content/plugins/lockdown-wp-admin/src/Lockdown/Application.php(177): Lockdown_Application->throw404()

/home/domainname.com/public_html/wp-content/plugins/lockdown-wp-admin/src/Lockdown/Manager.php(83): Lockdown_Application->__construct()

/home/domainname.com/public_html/wp-content/plugins/lockdown-wp-admin/src/Lockdown/Manager.php(93): Lockdown_Manager->__construct()

  • This topic was modified 2 years ago by axengine.
]]>
https://wordpress.org/support/topic/uninstall-lock-down-plugin/ <![CDATA[Uninstall Lock down plugin]]> https://wordpress.org/support/topic/uninstall-lock-down-plugin/ Sat, 29 Feb 2020 08:47:51 +0000 bcvcbhqyxcgakhh Replies: 0

I have deleted plugin and need to know if there is any table which should be also deleted. I can see all files are already deleted. Need help.

]]>
https://wordpress.org/support/topic/how-to-hide-this-on-other-pages/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>How to hide this on other pages]]> https://wordpress.org/support/topic/how-to-hide-this-on-other-pages/ Mon, 04 Nov 2019 08:47:57 +0000 reckez Replies: 1

You did something amazing with your plugin and I would love to do the same thing across all pages on my website!!! You hid all information about the website. No one can know it’s running on wordpress, I’d love to know how you did this and how wappalyzer couldn’t detect site technology on the new login page. Please reply

]]>
https://wordpress.org/support/topic/404-file-not-found-error-2/ <![CDATA[404 File Not Found Error]]> https://wordpress.org/support/topic/404-file-not-found-error-2/ Fri, 17 May 2019 19:18:06 +0000 nateluis429wo Replies: 0

Other people have reported this problem, and I thought I’d do a writeup of what I found.

First, the decision of whether or not to serve the login page is made in this file:
plugins\lockdown-wp-admin\src\Lockdown\Application.wp
Line 182. It returns False IF it doesn’t think that the url you entered matches the url for the login page that you entered into the options page.

That’s the 1st place you should start troubleshooting if you page “404 Error” or “Page Not Found”.

SPECIFICALLY, for me, the problem was caused by lines 164, 165. It’s testing the url in a case-sensitive way. So, for example, if your login page is
https://www.myTestSite.com/MyLoginPage,
but the user enters
https://www.mytestsite.com/myloginpage,

The code looks like this:

$request_url = str_replace( $blog_url, '', $current_url );
$request_url = str_replace( 'index.php/', '', $request_url );

You’re not going to get the login page. This is a problem, especially now that many browsers will take whatever you enter into your browser and automatically convert it to lowercase for you.

In the example above, myTestSite.com is set in WordPress:
Settings->General

You should set that url to all lower case (https://www.mytestsite.com). That way, when your browser auto-converts your address bar to lowercase, it’ll match.

The other solution is to fix those two lines of code (add the letter ‘i’ in str_ireplace). That’ll make the login urls NOT case sensitive.

$request_url = str_ireplace( $blog_url, '', $current_url );
$request_url = str_ireplace( 'index.php/', '', $request_url );
]]>
https://wordpress.org/support/topic/plugin-is-2-years-old/ <![CDATA[Plugin is 2 years old]]> https://wordpress.org/support/topic/plugin-is-2-years-old/ Tue, 23 Jan 2018 15:00:20 +0000 Melkham Replies: 0

is there any updates for this plugin or any new features to support insert new logo in admin page. when someone checking this old plugin , getting some doubts to install it.

Plugin is still working good even in 4.9.2

]]>
https://wordpress.org/support/topic/not-able-to-access-admin-page/ <![CDATA[not able to access admin page]]> https://wordpress.org/support/topic/not-able-to-access-admin-page/ Tue, 05 Dec 2017 12:31:32 +0000 piyam Replies: 0

hi
i have wordpress in a folder like
abc.com/folder
now i have change by this plugin admin url to
abc.com/zyz
when i access it open
admin page
i enter user name and password then it take me to
abc.com/folder/zyz
and give error
Oops! That page can’t be found.

how to access my admin page now
plz help

]]>
https://wordpress.org/support/topic/how-to-disable-http-auth-when-locked-out-private-usernamespassword-security/ <![CDATA[How to disable HTTP Auth when locked out Private Usernames/password security]]> https://wordpress.org/support/topic/how-to-disable-http-auth-when-locked-out-private-usernamespassword-security/ Fri, 10 Feb 2017 07:00:33 +0000 nextstep Replies: 1

While it seems a good idea to have HTTP Authentication and use Private Usernames /Passwords, when you lock your self out it seems impossible to get back in.

You can delete the plugin but while that allows access your admin, you lose the benefit of hide WP-Admin and changing the login URL. (But considering the plugin appears to be no longer supported it might be wiser to delete it anyway.)

However, as long as you have FTP or Cpanel access you can access to remove the Private Username/password options.

The procedure is in the readme.tx file, but is not explicit. Try this, It worked for me, I hope it works for you.

1. Login to Cpanel file manager / FTP and navigate to: wp-content/plugins/lockdown-wp-admin
2. In lockdown-wp-admin directory create / upload a blank text file called disable_auth.txt
3.You can now login without the additional security.
4. In your wordpress admin navigate to Lockdown WP and under HTTP Authentication select Disable HTTP Auth.
5. Check Private Users and if there is a Private User under username delete that person.
5. Return to the Plugin directory and delete the file: disable_auth.txt

All should be good! Logout and login to check (through your secret login link if it was left unchanged). Admin and the plugin should still be accessible. Phew…

FYI Here’s the text from the readme.txt file:

= How can I get back in if Lockdown WP Admin locked me out? =
You can create a .txt file named ‘disable_auth.txt’ in your wp-content/plugins/lockdown-wp-admin/ folder (The file location would be /wp-content/plugins/lockdown-wp-admin/disable_auth.txt). We don’t care about the content but that will disable the HTTP Auth and whatever was locking you out of your site.

]]>
https://wordpress.org/support/topic/the-plugin-here-is-no-longer-up-to-date/ <![CDATA[The plugin here is no longer up to date?]]> https://wordpress.org/support/topic/the-plugin-here-is-no-longer-up-to-date/ Tue, 10 Jan 2017 17:19:29 +0000 kingteamdunet Replies: 0

Hello,

The plugin here is no longer up to date https://wordpress.org/plugins/lockdown-wp-admin/
Why not create a plugin update ?

Or add the functions of the plugin on the theme’s funtion.php

That’s what I’m looking for as a plugin?
But if we want to change the url but make sure that login.php or wp-admin is no longer accessible (for hackers)? , Has an extension (plugin) modifying the login address (wp-login.php) and (wp-admin) in order to block attempts to access the administration of a WordPress site and it will return a 404. Plugin can hide WordPress Admin (/ wp-admin /) and (wp-login.php) when a user is not logged in. If a user is not logged in and they try to access WP Admin directly, they can not and will return a 404.

thank you in advance

]]>
https://wordpress.org/support/topic/admin-page-not-working-4/ <![CDATA[Admin page not working]]> https://wordpress.org/support/topic/admin-page-not-working-4/ Sun, 25 Dec 2016 23:06:03 +0000 ajarn Replies: 1

I’ve enabled the lockdown wp admin plugin on this website www perfectlyfit.co.uk and I can’t log back in.

Help please.

]]>
https://wordpress.org/support/topic/private-password/ <![CDATA[Private password]]> https://wordpress.org/support/topic/private-password/ Thu, 26 May 2016 01:18:44 +0000 adisakboo Replies: 1

i can’t create the user and password but i selected private password already. After reconnect the website show Authentication Required.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/im-locked-out-even-after-deleting-files/ <![CDATA[I'm locked out even after deleting files]]> https://wordpress.org/support/topic/im-locked-out-even-after-deleting-files/ Mon, 04 Apr 2016 17:46:22 +0000 htmanning Replies: 0

I’m completely locked out of my admin. I enabled the http auth with a private login. I’m positive I entered the right credentials but it locked me out. I tried the disable_auth.txt file and that doesn’t work. I removed the files from the plugins folder and I’m still being prompted for a http auth when I try to access the admin. Help!

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/error-occurs-when-using-wp-admin-link/ <![CDATA[Error occurs when using wp-admin link]]> https://wordpress.org/support/topic/error-occurs-when-using-wp-admin-link/ Mon, 28 Mar 2016 16:37:31 +0000 vincecongini Replies: 0

Hello,

I am seeing the below issue only when using the http://mysite/wp-admin/ url after setting up lockdown. It correctly displays a 404 page when using the http://mysite/wp-admin.php/ url. I’m not terribly efficient at correcting the issue myself, but it looks like my wp_gistpen plugin wants to load up prism as part of the menu setup, but it shouldn’t be attempting this if it’s supposed to put up a 404? Any help would be great.

Fatal error: Call to undefined function WP_Gistpen\Register\Assets\get_current_screen() in /home2/vincecongini/public_html/wp-content/plugins/wp-gistpen/app/Register/Assets/Prism.php on line 88

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/hide-wp-admin-checkbox-getting-unchecked-automatically/ <![CDATA['Hide WP Admin' Checkbox Getting Unchecked Automatically]]> https://wordpress.org/support/topic/hide-wp-admin-checkbox-getting-unchecked-automatically/ Thu, 24 Mar 2016 08:22:59 +0000 checkinglive Replies: 0

Hi,

I have been using this Plugin from longer time and there seems to be some security issues now. Recently, some hackers tried to login into Admin Panel by using default URL ‘wp-admin’ and its looking like the ‘Hide WP Admin’ checkbox getting automatically unchecked in some way. Can you please let us know whether there is any incompatibility with latest WordPress version or any other?

Thanks.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/is-this-plugin-still-supported-41/ <![CDATA[Is this plugin still supported]]> https://wordpress.org/support/topic/is-this-plugin-still-supported-41/ Wed, 23 Mar 2016 15:56:39 +0000 ann98 Replies: 1

It doesn’t look like it to me, it appears the author hasn’t been around for a while?

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/notice-undefined-index-http_authentication/ <![CDATA[Notice: Undefined index: HTTP_AUTHENTICATION]]> https://wordpress.org/support/topic/notice-undefined-index-http_authentication/ Sat, 06 Feb 2016 16:11:37 +0000 araviski Replies: 0

Hello,

Thank you for this great plugin.

Here is a small error that you could easily fix:
Notice: Undefined index: HTTP_AUTHENTICATION in wp-content/plugins/lockdown-wp-admin/src/Lockdown/Application.php on line 454

The error occurs when I do not try to authenticate and use cancel key.

Best regards,

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/more-admins-on-the-site/ <![CDATA[More admins on the site]]> https://wordpress.org/support/topic/more-admins-on-the-site/ Fri, 15 Jan 2016 13:45:02 +0000 snubbi Replies: 0

What if there are five admins on the website. Does it actually works with five admins.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/error-404-and-even-the-wp-loginphp-not-working/ <![CDATA[Error 404 and even the wp-login.php not working]]> https://wordpress.org/support/topic/error-404-and-even-the-wp-loginphp-not-working/ Wed, 13 Jan 2016 01:12:59 +0000 carlosoctavio Replies: 0

Hello.
I installed the plugin few minutes ago.
I chosed the custom url for the login. But i have error.
It is not working even with the /mycustomlogin or wp-login.php

So i can´t login in any way.

What can I do ?

Thanks in advance!

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/changing-login-url-doesnt-work-anymore/ <![CDATA[changing login URL doesn't work anymore]]> https://wordpress.org/support/topic/changing-login-url-doesnt-work-anymore/ Thu, 24 Dec 2015 15:11:02 +0000 rommeke Replies: 0

doesn’t work: changing wp-admin login URL (shows standard 404 error)
works: hiding wp-admin URL (shows wordpress 404 error)

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/remove-wp-lockdown-from-menu/ <![CDATA[Remove WP LOCKDOWN from menu]]> https://wordpress.org/support/topic/remove-wp-lockdown-from-menu/ Thu, 17 Dec 2015 21:32:44 +0000 lazyworks Replies: 0

Hi everyone I would just like to know if is there any way on how I can hide WP LOCKDOWN from menu without using any plugin?

Thanks in advance

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/error-with-redirecting-on-dashboard-page/ <![CDATA[Error with redirecting on dashboard page]]> https://wordpress.org/support/topic/error-with-redirecting-on-dashboard-page/ Thu, 19 Nov 2015 03:22:52 +0000 Dvelop IT Replies: 1

I have installed this plugin on a Multisite setup, however whenever I click the Lockdown WP from the dashboard it redirects to /wp-admin/profile.php for some reason. Anyone else had this problem before?

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/how-are-hackers-still-finding-the-login-page/ <![CDATA[How are hackers still finding the login page?]]> https://wordpress.org/support/topic/how-are-hackers-still-finding-the-login-page/ Fri, 13 Nov 2015 16:22:57 +0000 wyclef Replies: 0

Hi, I’ve been using Lockdown WP Admin with much success and wp-admin and wp-login.php are both successfully hidden but it seems people are still finding a way to attempt to login. I’m wondering how this might be.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/wp-loginphp-is-still-showing-with-www/ <![CDATA[<span class="resolved" aria-label="Resolved" title="Topic is resolved."></span>wp-login.php is still showing with www]]> https://wordpress.org/support/topic/wp-loginphp-is-still-showing-with-www/ Wed, 21 Oct 2015 22:12:13 +0000 iMandala Replies: 2

Hi

This is the reverse problem in the thread
https://wordpress.org/support/topic/former-admin-page-still-being-accessed which was posted about a year ago.

I am currently running the latest version of WP (4.3.1) and Lockdown WP Admin (2.3.2). I am having one issue with the plugin. If WP is set to http://www.example.com and I go to http://www.example.com/wp-login.php I still get to the login page, which is a problem. However, if I go to http://example.com/wp-login.php (Without the www), the page can’t be found which is as expected.

Any suggestions?

Thanks!

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/wordpress-multisite-support-2/ <![CDATA[WordPress Multisite support?]]> https://wordpress.org/support/topic/wordpress-multisite-support-2/ Fri, 16 Oct 2015 22:55:41 +0000 angrywarrior Replies: 0

As the subject says. Does this plugin support wordpress multisite?

Thanks a lot for the answer.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/my-wp-admin-page-shows-as-a-404-page-but-with-no-css/ <![CDATA[My /wp-admin page shows as a 404 page but with no css]]> https://wordpress.org/support/topic/my-wp-admin-page-shows-as-a-404-page-but-with-no-css/ Mon, 12 Oct 2015 08:58:38 +0000 Hugo.Silva Replies: 0

Hello,

I’ve used your plugging in some websites, but in my last one i found out that my /wp-admin it just shows as a 404 page with no css. this is the first time it is happening.

Hope you can help.

Thank you

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/test-cookie-message/ <![CDATA[Test Cookie Message]]> https://wordpress.org/support/topic/test-cookie-message/ Fri, 04 Sep 2015 13:48:10 +0000 srpatterson Replies: 1

After installing Lockdown WP Admin on the latest wordpress version I get an error about cookies not being enabled when it tries to set the test cookie. Second login works.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/my-own-page-instead-of-404-page/ <![CDATA[My own page instead of 404 page]]> https://wordpress.org/support/topic/my-own-page-instead-of-404-page/ Mon, 27 Jul 2015 05:16:42 +0000 legrand158 Replies: 1

How to display your URL instead of a 404 page when trying to access /wp-admin?

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/call-to-undefined-method-lockdown_applicationpassed/ <![CDATA[Call to undefined method Lockdown_Application::passed()]]> https://wordpress.org/support/topic/call-to-undefined-method-lockdown_applicationpassed/ Mon, 15 Jun 2015 11:06:05 +0000 gautamarya Replies: 0

I’m using this plug-in since around a year.

Suddenly, one day my site has been broken. When I looked into log file I found above error message. I removed the plug-in directory and site was working fine.

Can anyone please tell me how to solve this error?

Thanks,
Regards.

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/using-htpasswd-to-protect-wp-loginphp-with-lockdown-wp-admin/ <![CDATA[Using htpasswd to protect wp-login.php with Lockdown WP Admin]]> https://wordpress.org/support/topic/using-htpasswd-to-protect-wp-loginphp-with-lockdown-wp-admin/ Wed, 13 May 2015 23:33:11 +0000 wyclef Replies: 0

Does using htpasswd to protect wp-login.php interfere or conflict with using Lockdown WP Admin in anyway? Is this the same as setting a private user and using HTTP Authentication?

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/login-screen-redisplayed-after-error/ <![CDATA[Login Screen Redisplayed After Error]]> https://wordpress.org/support/topic/login-screen-redisplayed-after-error/ Sat, 09 May 2015 04:26:54 +0000 Art Lewis Replies: 0

The WordPress login screen when displayed the first time, the URL is http://members.presbyterianchurchingenevanewyork.org/secureadmin?redirect_to=http%3A%2F%2Fmembers.presbyterianchurchingenevanewyork.org%2F. When valid login credentials are entered, the WordPress login screen is redisplayed with the message “ERROR: Incorrect username or password.” displayed. The url of the login screen is changed to http://members.presbyterianchurchingenevanewyork.org/secureadmin. After re-entering the login credentials they are accepted

The plugin is installed in the members subdomain of http://www.presbyterianchurchingenevanewyork.org and the WP Super Cache plugin is installed. In an attempt to add the secureadmin page to the whitelist, I have added “secureadmin\.php” to “Add here strings (not a filename) that forces a page not to be cached.” (Is there a primer on building templates for these templates?)

https://wordpress.org/plugins/lockdown-wp-admin/

]]>
https://wordpress.org/support/topic/wp-login-lockdown-fail/ <![CDATA[wp-login lockdown fail, plugin dead ?]]> https://wordpress.org/support/topic/wp-login-lockdown-fail/ Sun, 03 May 2015 22:52:56 +0000 huberte Replies: 0

Hi,

Like others if you delete www in front of your site, you’re still able to enter the login page.

Moreover on some install : wp-login?action=lostpassword

is still accessible.

any solution ?

thanks

https://wordpress.org/plugins/lockdown-wp-admin/

Seems that this plugin is dead, better go to Protect Your Admin plugin, up to date

]]>