Alphanumeric usernames and error message for it

Check for alphanumeric For more details, look at the regex Q on SO. $name=”input string 123″; // Doesn”t allow: // Pre-/Appending white space // Not more than one space in between // Non-alphanumeric characters (lower case) if( ! preg_match( “/^[a-z0-9]+([\\s]{1}[a-z0-9]|[a-z0-9])+$/i”, $name ) ) { // Output Error Message } // Or: Does only allow // … Read more

How to add @ symbol to user url

There’s no such thing as a literal @ in that part of a URL, you have to URL encode it. Sometimes browsers will decode it for you so it looks ok but it’s just being helpful. The only time you can use it without encoding is when specifying the username and password in a URL … Read more

How to recover lost username?

There are a few easy steps to take: Go to your host management panel (GoDaddy docs here) and open phpMyAdmin. Navigate to your WordPress installation database Navigate to the wp_users table and you will see all of your users and email information Go to your WP installation login screen and reset your password there with … Read more

Reset admin and password

If you have access to the database via your hosting phpMyAdmin, you can edit the wp_users table in the database. Find the record for the admin user in the wp_users table. Change the name, email to the new values. Enter the password you want to use, then use the MD5 in the dropdown for that … Read more

How to retrieve lost username/ email log- in ?

Without the email it will be hard, WordPress likely will not be willing to release that info. You will have a few options: Try any email you would have used in the forgot password function. Search all your emails for the emails you got initially. WordPress sends update emails periodically so whichever one has gotten … Read more