jon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lock outThis appears to be a Permissions issue on your entire domain, i.e. – above and beyond WordPress. You could probably solve it with FTP or other means, but it is probably best to contact your web host’s support folks as it sounds like something they did.
Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisGreat to hear that you found a solution!
Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisBefore I dig any deeper, it suddenly occurs to me that an easier way to solve your problem would be to use the ‘wp_login_errors’ Filter on Line 861 of wp-login.php and modify the $errors parameter which contains the WP Error object. Do a little testing of the
$errors->get_error_code()values and change the ones that you don’t like to ‘incorrect_password’, which will populate the User Name field on line 870.Let me know if that won’t solve your problem. Thanks!
Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisGive me an hour or two, and I’ll figure it out. I know that I’ve modified login HTML before, and I just need to check my old code and do a little research.
Forum: Fixing WordPress
In reply to: visual composer question for beginnerAs explained here http://codex.wordpress.org/Forum_Welcome#Commercial_Products
we cannot help with paid plugins such as Visual Composer in this support forum.Please contact the folks you bought the plugin from for Support. It was part of your purchase price.
The reason behind this is that we don’t have access to the plugin for our own testing without buying our own copy, so there is no way to help you here.
Forum: Fixing WordPress
In reply to: Changing Adminatrator to my real name?In the Admin panels, go to Users-Your Profile while logged on as Administrator, and change Nickname and Display Name Publicly As to your own name.
As for your second question, I think you’ll need a Plugin to change what is displayed. Assuming you don’t want to learn and write a bunch of PHP using WordPress hooks.
Some Themes might also provide that functionality, too.
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache installation error, Time Stamp does not matchI’m not a Forum Moderator so I cannot do this for you, but you really need to post this here: https://wordpress.org/support/plugin/wp-super-cache
If you haven’t already, but sure to look through the Support questions and answers there, as well as FAQ and other info for the plugin.
Forum: Fixing WordPress
In reply to: Display Google Map shortcode, not the map itselfUse double square brackets:
[[su_gmap width=”350″ height=”250″ responsive=”no” address=””]]Forum: Fixing WordPress
In reply to: Can't reuse page URL after deleting page with same nameBeen there, done that.
Just took a minute to test and I have confirmed that if you delete the Page from Trash, you can then create a new architecture slug.
Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisBecause you have experience with Filters and Actions, is it enough just to say: if it were me, I would be using a Filter to modify the HTML in the Login Form at the point shown in the previous post?
The big question, however, is how to most easily determine incorrect user name to insert in the value= field.
Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisMore confusing than I thought. In the testing I just did, the user name can come from either the browser or WordPress. Here are the three common scenarios:
<p> <label for="user_login">Username or Email<br /> <input type="text" name="log" id="user_login" aria-describedby="login_error" class="input" value="jon" size="20" /></label> </p> <p> <label for="user_login">Username or Email<br /> <input type="text" name="log" id="user_login" aria-describedby="login_error" class="input" value="" size="20" /></label> </p> <p> <label for="user_login">Username or Email<br /> <input type="text" name="log" id="user_login" class="input" value="" size="20" /></label> </p>Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisSorry, the plugins won’t handle things the way that you want. I was merely suggesting what I believe to be a more effective security solution: banning IPs on repeated failed login attempts.
I’ll look further and see if I can answer your original question.
Forum: Themes and Templates
In reply to: How to copy my "dynamic" homepage over to a static one?Two possible answers. I’m not familiar with the Optimizer theme, but this works with most themes: change the Reading Settings to a Static Front Page. https://codex.wordpress.org/Settings_Reading_Screen
If that doesn’t work, post your question here: https://wordpress.org/support/theme/optimizer
as this would become a Theme-specific issue.Forum: Fixing WordPress
In reply to: How to copy my "dynamic" homepage over to a static one?Please do not duplicate post: http://codex.wordpress.org/Forum_Welcome#Where_To_Post
I will answer your other post: https://wordpress.org/support/topic/how-to-copy-my-dynamic-homepage-over-to-a-static-one-1?replies=1
Forum: Fixing WordPress
In reply to: Login Pre-populates Valid Usernames – How to Prevent ThisLooking back, I see that I have not really answered your question. I should also mention that I think I have been wrestling with the same issue that you are: brute force login attempts.
I initially tried this plugin: https://wordpress.org/plugins/wp-cerber/
It actually does a nice job, but I had to remove it to avoid confusion to other developers on my sites with WP_DEBUG set to TRUE, as it issues some warnings.I then switched to https://wordpress.org/plugins/wp-fail2ban/
Wanting full coverage of all my sites, I ended up writing my own equivalent of fail2ban because I have some of my Production web sites on shared hosting where I did not have access to fail2ban as I do on my VPS.