Jump to content

Recommended Posts

Hy metin2dev!

I have a problem in syserr channel1,game99,db

SYSERR: Aug 26 03:37:48 :: ChildLoop: AsyncSQL: query failed: Table 'log.invalid_server_log' doesn't exist (query: INSERT INTO invalid_server_log(locale_type, log_date, ip, revision) VALUES(25, NOW(), '192.168.16.100', 40250) errno: 1146)

Please help me

Sorry for my bad english.

Link to comment
https://metin2.dev/topic/2706-error-log/
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
  `locale_type` int(11) DEFAULT NULL,
  `log_date` timestamp NULL DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `revision` int(11) DEFAULT NULL 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=big5_bin;

Try this :)

Link to comment
https://metin2.dev/topic/2706-error-log/#findComment-18174
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
  `locale_type` int(11) DEFAULT NULL,
  `log_date`  timestamp DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `revision` int(11) DEFAULT NULL 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=big5_bin;

Try this :)

 

[Err] 1067 - Invalid default value for 'log_date'

Link to comment
https://metin2.dev/topic/2706-error-log/#findComment-18175
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
  `locale_type` int(11) DEFAULT NULL,
  `log_date` timestamp NULL DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `revision` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1;
 

Try it now..

Link to comment
https://metin2.dev/topic/2706-error-log/#findComment-18177
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
  `locale_type` int(11) DEFAULT NULL,
  `log_date` timestamp NULL DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `revision` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=big5_bin;

Try it now..

 

[Err] 1253 - COLLATION 'big5_bin' is not valid for CHARACTER SET 'latin1'

Link to comment
https://metin2.dev/topic/2706-error-log/#findComment-18178
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
`locale_type` int(11) DEFAULT NULL,
`log_date` timestamp NULL DEFAULT NULL,
`ip` varchar(32) DEFAULT NULL,
`revision` int(11) DEFAULT NULL
)ENGINE=MyISAM DEFAULT CHARSET=latin1;

My bad , now it works perfectly.

  • Love 2
Link to comment
https://metin2.dev/topic/2706-error-log/#findComment-18179
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
`locale_type` int(11) DEFAULT NULL,
`log_date` timestamp NULL DEFAULT NULL,
`ip` varchar(32) DEFAULT NULL,
`revision` int(11) DEFAULT NULL
)ENGINE=MyISAM DEFAULT CHARSET=latin1;

My bad , now it works perfectly.

 

Thanks man,it works perfectly now.

Link to comment
https://metin2.dev/topic/2706-error-log/#findComment-18180
Share on other sites

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.