locked out
-
Hello I’ve been lock out by your plugin. I even tryed to rename the plugin folder but the setting were in the htaccess file.
Anyway now i resolved but i’m not using the plugin for this problem.
Possible solutions?
I get a 404 error after i login in from the custom url.
-
Hello,
There is no modifications of the htaccess with this plugin, everything is stored in the database, as instructed in the FAQ of the plugin.
Your problem can come from various sources, we need more data to be able to resolve it :
– what is your permalink structure ?
– what slug are you using for your custom url ?Hello Remy:
The same problem here.
I have WordPress Multisite with permalink structure: %postname%
Suddenly today I can’t to enter to login page. I deleted the plugin folder and tried to change the configuration of the whl_page settings in the options table as you say in the readme.txt but nothing happens.
I can see my url structure was changed without my permission to: /blog/%postname%I hope you can help us to solve this at soon as possible.
Thank you very much Remy.
Hello:
I have deleted the tables whl_page and custom_wpadmin_slug, located in wp_options, but I still can’t log into dashboard.
Have you tried to go to blog/wp-login.php to see if the login page shows up ?
custom_wpadmin_slug is not created by our plugin, so I don’t know where it’s coming from
Thanks for the answer Remy.
Yes, I tried, but it redirect me to /wp-admin
and I see a 404 error again.Is it possible that despite disable the plugin, it continues to block access to wp-admin?
Since you’re on a multisite, did you delete the whl_page option in both the sitemeta table and the option table of the sub website concerned ?
Well, the sitemeta table does not contain the whl_page Remy, so I do not needed delete anything there.
It seems the problem is with my .htaccess configuration.
Can you make the plugin works with this?:RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]Sorry, that was my .htaccess:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# add a trailing slash to /wp-admin
#RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]With the help of http://www.2mhost.com guys I found that I was started using WordPress with WordPress MU (WPMU) and then migrated to a newer version of WordPress multisite, so the .htaccess rules are more complex.
There is more information about that here:
https://codex.ww.wp.xz.cn/htaccessSo, my site finnaly works with this .htaccess configuration:
RewriteEngine On RewriteBase / # BEGIN WordPress #uploaded files RewriteRule ^(.*/)?files/$ index.php [L] RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteCond %{REQUEST_URI} ^.*/wp-admin$ RewriteRule ^(.+)$ $1/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule . - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] # END WordPressThank you for your support Remy.
Glad it works now, did you reactivate the plugin too to see if it’s all working good ?
Yes! All works ok now.
I found out there was a plugin (Brute Force Login Protection) that changed the configuration of .htaccess leaving it with malfunctioning.Best regards.
I’ve been locked out and can not get to the Dashboard. I have checked my htaccess files and all is fine. I also tried the ideas above but with no success.
Any ideas how I can disable the plug-in so I can login? Perhaps you have some ideas on how to disable at a file system OR database level?
Any ideas?
Please disregard my last post. My issue was fixed by renaming the plugin folder.
The topic ‘locked out’ is closed to new replies.