Hello, update and edit the latest version tested.
This message is now showing: This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
It would add the credibility plugin. ??
]]>Hi,
Seems to be a great idea this plugin. However, since I’ve implemented it on my support forum website powered with bbPress, (potential) users reported they can’t register to support forum.
I went ahead to test the issue and tried to register a new user account and indeed, after clicking the register/submit button, the page throws “error 500” code and I haven’t received any email confirming my registration and for setting up password.
Installing “Password bcrypt” was the only significant change I’ve done in last week to my support website, so I deleted the plugin from my mu-plugins
folder and registration starter working again.
Please check this issue as this plugin would be pretty great to use on forums, e-commerce websites, but there should be no registration issues.
Here are additional plugins I use that may (I’m not sure about this) also interfere with WP user registration process:
Other plugins have different points of interests ??
Thanks for looking at this issue!
Regards,
Oliver
]]>Do I have to change the password after installing the plugin? I am looking at the user password hash in phpmyadmin and it doesn’t change after installing the plugin, it remains the same MD5 hash.
]]>Thanks for taking security serious and for making this plugin available!
I’ve been using WP Hash Password for some time, and I am wondering how it compares to Password bcrypt.
The following is WP Hash Password‘s complete code:
if( !function_exists('wp_hash_password') )
{
function wp_hash_password($password)
{
global $wp_hasher;
if(empty($wp_hasher))
{
require_once(ABSPATH . 'wp-includes/class-phpass.php');
$wp_hasher = new PasswordHash(16, false);
}
return $wp_hasher->HashPassword($password);
}
}
I see that your plugin is doing a lot more than that, but as an encryption ignoramus I really don’t see through it. Could you share some of the details of what Password bcrypt is doing differently, and why?
Also, is it safe to simply replace WP Hash Password with Password bcrypt?
Thanks.
]]>