Title: make password not case sensitive?
Last modified: April 29, 2017

---

# make password not case sensitive?

 *  Resolved [user10101](https://wordpress.org/support/users/user10101/)
 * (@user10101)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/make-password-not-case-sensitive/)
 * 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?

Viewing 1 replies (of 1 total)

 *  Plugin Author [lucasbustamante](https://wordpress.org/support/users/lucasbustamante/)
 * (@lucasbustamante)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/make-password-not-case-sensitive/#post-9097997)
 * 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']));`

Viewing 1 replies (of 1 total)

The topic ‘make password not case sensitive?’ is closed to new replies.

 * ![](https://ps.w.org/very-simple-password/assets/icon-256x256.png?rev=1582108)
 * [Very Simple Password for Wordpress](https://wordpress.org/plugins/very-simple-password/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/very-simple-password/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/very-simple-password/)
 * [Active Topics](https://wordpress.org/support/plugin/very-simple-password/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/very-simple-password/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/very-simple-password/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [lucasbustamante](https://wordpress.org/support/users/lucasbustamante/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/make-password-not-case-sensitive/#post-9097997)
 * Status: resolved