View Single Post
  #2  
Old 10-22-2022, 10:05 AM
Vexyl
Hill Giant
 
Join Date: Oct 2009
Location: U.S.A.
Posts: 197
Default

Do you know how to log in to your SQL database? I don't know any other way to do it because I'm not familiar with Akka's tools, but you can source this into the DB: UPDATE account SET status=250 WHERE id=your_account_id;

where your_account_id is your numerical account ID in the database. You can find it by running this command in the SQL console: SELECT id,name FROM account;

Notice the semicolons at the end. Your account id should show up next to your account name column in the query result.

If you're unsure on how to get here, you can open a command prompt and run mysql -u root -p, assuming you set your SQL account name as root (change if not) and enter the password you set up in the beginning. Then type: USE eq;

if eq is not the name of your database, you can find it assuming you've logged into the SQL console by typing: SHOW databases;
Reply With Quote