WPIntell

Source evidence

make password not case sensitive?

Very Simple Password for WordPress · support · 2017-04-29T23:08:00+00:00

mixedsentiment
lowseverity
0.51relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 36 rows with source links

19.4% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
user10101 resolved
Hello – I have a password with letters and numbers. I am trying to make it not case sensitive so if someone enters tEst or test it will still work. Is this possible? Yes, you can set your password to “test” and edit the script file. wp-content/plugins/very-simple-password-for-wordpress/very-simple-password-for-wordpress.php Around line 467, replace this line: $pw = sanitize_text_field($_POST['vspfw_password']); With this: $pw = strtolower(sanitize_text_field($_POST['vspfw_password']));

Comments

1 shown
lucasbustamante 2017-05-04T17:35:00+00:00

Yes, you can set your password to “test” and edit the script file. wp-content/plugins/very-simple-password-for-wordpress/very-simple-password-for-wordpress.php Around line 467, replace this line: $pw = sanitize_text_field($_POST['vspfw_password']); With this: $pw = strtolower(sanitize_text_field($_POST['vspfw_password']));