- This topic has 2 replies, 2 voices, and was last updated 1 year, 2 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › Username, first name, last name are showing as encrypted in the backend
Tagged: encrypted username
Hi, I have installed and set up the plugin. I see that all the usernames, first name, last name are showing as encrypted in the backend on Members page. Below is a screenshot of the page.
You need to post a link to any screenshots; you cannot directly insert them in your post.
Only the passwords are encrypted.
Perhaps you have incorrectly encoded the MySQL tables? The correct encoding type is utf8mb4 (AKA utf8). Also, the utf8mb4_unicode_ci collation should be used. Check the wp-config.php file for the following lines:
define( 'DB_CHARSET', 'utf8mb4' );
define( 'DB_COLLATE', 'utf8mb4_unicode_ci' );
Thank you 🙂