Jump to content

remove password


Lefu

Recommended Posts

Update your username to have a blank password field.

 

Log in to mysql using your current username & password in command prompt:

 

mysql -u USERNAME -p PASSWORD

 

Select the mysql database

 

use mysql;

 

Then update the user that you want to have without a username (I'd advise against setting the root user to have no password)

 

UPDATE `user` SET `Password` = '' WHERE `User` = 'YOUR_USERNAME';

 

 

Link to comment
https://forums.phpfreaks.com/topic/93644-remove-password/#findComment-479813
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.