Bug -> Password didn't match

This topic contains 17 reply and 5 voices, and was last updated by ILya 10 years, 4 months ago
Viewing 15 Posts - 1 through 15 (of 17 total)
Author Posts
April 30, 2014 at 2:40 pm 19701
ILya Hello! It seems I found bug! I turn off "Require Password repeat" in registration form for my new user. I use 3 input-field only: name, password, e-mail. It's all. But when I push the submit-button -> alert "Password didn't match". Why??
April 30, 2014 at 3:46 pm 19704
Mahi Mahi

You sure you are not using any other registration plugin?

Also, from form setup area “Require Password repeat” tick off?

April 30, 2014 at 4:08 pm 19706
ILya ILya

Thank for the fast reply!

Yes, I’m sure i don’t use any other registration plugin.
“Require Password repeat” tick off.

I have plugin “sexy login”. But i use it for login users only (registration function is off).

April 30, 2014 at 4:14 pm 19707
Mahi Mahi

can you deactivate that plugin and check it error still exist?

April 30, 2014 at 5:27 pm 19709
ILya ILya

Of course I did it!
Deactivate that plugin and error still there.

I test your plugin on another absolutely clean (new) site and the same error too.

p.s. I use wordpress 3.9

May 1, 2014 at 2:09 pm 19753
ILya ILya

Excuse me. What about this problem?

May 2, 2014 at 2:55 am 19783
Mahi Mahi

Its a valid bug. Thank you for bringing this out. I forwarded this to Developer team. Should be fixed ASAP.

May 6, 2014 at 2:18 pm 19968
Mahi Mahi

Hello @ILya Goncharov,

Just letting you know this issue been fixed in next version which will be available soon.

Marking this topic as resolved.

May 6, 2014 at 3:15 pm 19970
ILya ILya

Buy the way, “password strength meter” it’s NOT password strength meter. It’s indicator matches ONLY. You know that? 🙂

May 6, 2014 at 4:51 pm 19978
ILya ILya

And one more.
Go to Forms -> Add form -> Post fields -> and “post body” button. Such field as “Size, Rows and Columns” are works when selected “Normal” (in textarea) only. And when selected “Rich textarea” or “Teeny Rich textarea” fields “Size, Rows and Columns” doesn’t works.
I hope you understand me.

May 22, 2014 at 9:22 pm 20844
Jeffrey Jeffrey

Hello,

I have the same problem with the Post Body field. The sizing settings seem to be ignored when using either Rich text option.

With any option, the Columns setting is having no effect.

I’m using the WP 2014 theme, updated, and the page is using the Full Width template.

May 23, 2014 at 5:35 am 20856
Mahi Mahi

It is a well known issue with Rich Text editor. Currently WPUF using default WordPress Rich editor. Dev Team is aware of this. Hopefully they will come up with a solution.

May 23, 2014 at 9:00 pm 20884
Jeffrey Jeffrey

Just a quick update. I switched through the themes that are included with WP, and with 2012 it works as expected. No issues setting rows and columns.

I installed a new theme (free) called WordPlus, and it also works just fine.

I’m trying to see what it is in the newer WP themes that is not allowing the sizing to work, but haven’t found anything specific yet. In all honesty, I’m not that good at troubleshooting CSS!

If someone who is a CSS guru would look at it, I’m pretty sure they’ll spot the issue pretty quickly.

May 24, 2014 at 12:03 am 20892
paul paul

Hi,

As Ilya first pointed out, the password strength indicator does not work when typing the first password. Only when you start to type the 2nd password it then activates the matching process.

Chrome Console flags the error as “Uncaught ReferenceError: zxcvbn is not defined”

Is this an error with the default password plugin or is it something to do with your plugin?

May 24, 2014 at 2:47 am 20907
paul paul

Ok it turns out the issue is that the password strength plugin (which is a default wordpress plugin and not WPUF’s) is not calling a required js file when used with WPUF

I managed to get it to work by adding the following to the “wp-content/plugins/wp-user-frontend-pro/wpuf-functions.php” file

/**
* Enqueue script for password strength meter
*/
function password_score_script() {
wp_enqueue_script( ‘zxcvbn-async’, ‘/wp-includes/js/zxcvbn-async$suffix.js’, array(), ‘1.0.0’, true );
}

add_action( ‘wp_enqueue_scripts’, ‘password_score_script’ );

Add the above to the end of the functions file and it should then work as expected.

May 24, 2014 at 2:57 am 20908
Tareq Hasan Tareq Hasan

I pushed an update of the plugin with this bug fix. The update notification should appear to your WordPress install automatically or you can download it from your account here.

Viewing 15 Posts - 1 through 15 (of 17 total)