Okey, ich werde mich da mal Schlau machen. Melde mich denke ich heute noch mit der Lösung, sofern ich eine bekomme.
P.s. Ich behaupte jetzt mal so es liegt in der t_lc_time (newproject_db)
Hier der Code von meinem Testserver.
Löscht mal eure alte t_lc_time & fügt den mal in eure _db ein.
Code:
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50516
Source Host : localhost:3306
Source Database : newproject_db
Target Server Type : MYSQL
Target Server Version : 50516
File Encoding : 65001
Date: 2012-07-19 16:47:25
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `t_lc_time`
-- ----------------------------
DROP TABLE IF EXISTS `t_lc_time`;
CREATE TABLE `t_lc_time` (
`a_server` int(3) NOT NULL DEFAULT '0',
`a_time` bigint(10) DEFAULT '0',
PRIMARY KEY (`a_server`),
UNIQUE KEY `a_server` (`a_server`),
KEY `a_server_2` (`a_server`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of t_lc_time
-- ----------------------------
INSERT INTO `t_lc_time` VALUES ('1', '1406850');
INSERT INTO `t_lc_time` VALUES ('2', '0');
INSERT INTO `t_lc_time` VALUES ('3', '0');
INSERT INTO `t_lc_time` VALUES ('4', '0');
INSERT INTO `t_lc_time` VALUES ('5', '0');
INSERT INTO `t_lc_time` VALUES ('6', '0');
INSERT INTO `t_lc_time` VALUES ('7', '0');
INSERT INTO `t_lc_time` VALUES ('8', '0');
INSERT INTO `t_lc_time` VALUES ('9', '0');
INSERT INTO `t_lc_time` VALUES ('10', '0');
Mfg Akine