11-23-2012, 07:23 PM
I had this very same problem when I setup ep2 for the first time but found looking in the guides helped xD
This post fixed my connection passed server list:
Insert into _auth db: / In die _auth db einfügen:
-- ----------------------------
-- Table structure for `t_iplist`
-- ----------------------------
DROP TABLE IF EXISTS `t_iplist`;
CREATE TABLE `t_iplist` (
`a_index` int(11) NOT NULL AUTO_INCREMENT,
`a_ipstart_N` bigint(13) NOT NULL DEFAULT '0',
`a_ipend_N` bigint(13) NOT NULL DEFAULT '0',
`a_nation_S` varchar(50) NOT NULL DEFAULT '',
`a_nationcode` int(11) NOT NULL DEFAULT '-1',
PRIMARY KEY (`a_index`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_iplist
-- ----------------------------
INSERT INTO `t_iplist` VALUES ('6', '0', '9999999999', 'US', '-1');
INSERT INTO `t_iplist` VALUES ('7', '0', '9999999999', 'DE', '-1');
Also change this mysql variable "lower_case_table_names" to 2, to fix some problems. (Only OpenSuse)
Und ändert diese mysql variable "lower_case_table_names" auf 2 um ein paar probleme zu beheben. (Nur OpenSuse)
Cretis Falo

