View Single Post
  #1  
Old 11-15-2004, 05:42 PM
wontonjoe
Fire Beetle
 
Join Date: Oct 2004
Posts: 9
Default help with minilogin

apparently im doing something wrong, but i keep getting this error

Code:
143186 New client from ip: 216.207.xxx.xxx port: 4571
Login with '10516' and 'QMV1I7HNG7'
216.207.xxx.xxx: Wrong name/pass: name='10516'
Removing client from ip:216.207.xxx.xxx port:4571
i have done everything in the readme, with no errors, and i also tried everything in every post i could find about minilogin configure

any help will be appreciated





Code:
DROP TABLE IF EXISTS account;
CREATE TABLE account (
  id int(11) NOT NULL auto_increment,
  name varchar(30) NOT NULL default '',
  charname varchar(64) NOT NULL default '',
  packencrypt blob NOT NULL,
  password varchar(50) NOT NULL default '',
  status int(5) NOT NULL default '0',
  lsaccount_id int(11) unsigned default NULL,
  gmspeed tinyint(3) unsigned NOT NULL default '0',
  sharedbank int(11) NULL default '0',
  minilogin_ip varchar(32) NOT NULL default '0',
  PRIMARY KEY  (id),
  UNIQUE KEY name (name),
  UNIQUE KEY lsaccount_id (lsaccount_id)
) TYPE=MyISAM;

INSERT INTO account VALUES (1,'username','','','password','250','','0','','127.0.0.1');

is this wrong?
Reply With Quote