Guest User

Untitled

a guest
Apr 23rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /*
  2. * Topic: Reset Admin User Password By Executing the following Query in X2CRM's MySQL Database
  3. * Website: www.roigap.com
  4. */
  5.  
  6. UPDATE x2_users
  7. SET
  8. password = md5('<YOUR_NEW_PASSWORD_STRING_HERE>')
  9. WHERE
  10. username = '<YOUR_X2CRM_USERNAME_HERE>';
Add Comment
Please, Sign In to add comment