Omegatcu
New Pleskian
So this is a little specific - so I hope somebody can help
I installed PLESK for dev purposes only. So please keep in mind when i ask here for help this is NOT a production installation and PLESK is not accessible over the Internet!
I try to insert the user root with a specific password so my Projects from my old dev machine can be working without changing the credentials in every project.
The following query is whats giving me a headache and I'm sure somebody can tell me the solution.
Now the root user exists (yes i added him via SQL because PLESK doesn't let me), but there is probbably something wrong how I set the password here - I'm sure its just another Function or some arguments the PASSWORD('xxxx') function needs.
I installed PLESK for dev purposes only. So please keep in mind when i ask here for help this is NOT a production installation and PLESK is not accessible over the Internet!
I try to insert the user root with a specific password so my Projects from my old dev machine can be working without changing the credentials in every project.
The following query is whats giving me a headache and I'm sure somebody can tell me the solution.
Code:
UPDATE db_users SET passwd=PASSWORD('xxxx') where login LIKE 'root';
Now the root user exists (yes i added him via SQL because PLESK doesn't let me), but there is probbably something wrong how I set the password here - I'm sure its just another Function or some arguments the PASSWORD('xxxx') function needs.