LoginType is the type of EQEmulator server that the person is running. This field is part of the variables table in your database. Presently the only server type that uses this field is
MiniLogin.
Once you have set up mini login for the first time as described in
MiniLoginSetup, you can change types with these queries:
Changing your server to use minilogin:
| UPDATE variables SET value='Minilogin' WHERE varname='LoginType'; |
And change the values in your
LoginServer.ini file to those described on the
LoginServer page for minilogin.
Changing your server to use public login:
| UPDATE variables SET value='Public' WHERE varname='LoginType'; |
And change the values in your
LoginServer.ini file to those described on the
LoginServer page for minilogin.
If you get a 'Query OK, 0 rows affected', then you have not completed the original minilogin setup correctly. If you get 'Query OK, 1 row affected', then it was successful.
Back to MiniLogin Category