Thread: Admin Password?
View Single Post
  #39  
Old 08-21-2015, 02:11 PM
Warkral
Sarnak
 
Join Date: May 2011
Posts: 56
Default

UPDATE: Ok, I was using the incorrect query to register the server. Posting this here for anyone in the future who has this issue. The correct query is:
Quote:
Originally Posted by Uleat
Quote:
Originally Posted by Warkral
Well, its going through with no errors, but still no love, not working:

Ok..I think I see what you need here.

You're looking to create a server admin account..but, the script you are using is for world server creation.


On this table you have linked, I would just enter the information manually at this point.

Right-click and add a new row..then start with `AccountName` and move right.

To edit a cell, you have to hit enter.

Account Name/Password must be valid since these will be used in the config file.

First/Last Name and Email can be anything (Tom Wilson?) since this is for admin use and I hope you wouldn't need to send yourself an email telling you something is wrong :P

RegistrationDate, just hit enter and the current date should appear.

RegistrationIPAddress, enter the server's LAN IP address.


If you prefer queries:
Code:
INSERT INTO `tblserveradminregistration` (`AccountName`, `AccountPassword`, `FirstName`, `LastName`, `Email`, `RegistrationDate`, `RegistrationIPAddr`) VALUES ('Ack', 'Ack', 'Mars', 'Attacks', 'mars.attacks@ackack.com', now(), '127.0.0.1')
Reply With Quote