| 感谢反馈,手工补充建表内容:(教程见导航栏“必看经验”:https://www.dz-x.net/collection/1/1.html) 
 
 复制代码DROP TABLE IF EXISTS `pre_tom_weixin_hook`;
CREATE TABLE `pre_tom_weixin_hook` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hook_type` tinyint(4) NOT NULL,
  `hook_script` varchar(255) DEFAULT NULL,
  `obj_id` varchar(255) DEFAULT NULL,
  `obj_type` tinyint(4) DEFAULT '1',
  `part1` varchar(255) DEFAULT NULL,
  `part2` varchar(255) DEFAULT NULL,
  `part3` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB;
INSERT INTO `pre_tom_weixin_hook` (`id`, `hook_type`, `hook_script`, `obj_id`, `obj_type`, `part1`, `part2`, `part3`) VALUES
(1,        12,        './source/plugin/tom_weixin/module/hook/apiHook.php',        'api',        1,        NULL,        NULL,        NULL),
(2,        3,        './source/plugin/tom_weixin/module/hook/helpHook.php',        'help',        1,        NULL,        NULL,        NULL),
(3,        1,        './source/plugin/tom_weixin/module/hook/kanjiaHook.php',        'kanjia',        1,        NULL,        NULL,        NULL),
(4,        15,        './source/plugin/tom_weixin/module/hook/noimageHook.php',        'noimage',        1,        NULL,        NULL,        NULL),
(5,        10,        './source/plugin/tom_weixin/module/hook/replyHook.php',        'reply',        1,        NULL,        NULL,        NULL),
(6,        13,        './source/plugin/tom_weixin/module/hook/searcharticleHook.php',        'searcharticle',        1,        NULL,        NULL,        NULL),
(7,        6,        './source/plugin/tom_weixin/module/hook/submenuHook.php',        'submenu',        1,        NULL,        NULL,        NULL),
(8,        7,        './source/plugin/tom_weixin/module/hook/tpexitHook.php',        'tpexit',        1,        NULL,        NULL,        NULL),
(9,        9,        './source/plugin/tom_weixin/module/hook/twmenuHook.php',        'twmenu',        1,        NULL,        NULL,        NULL),
(10,        1,        './source/plugin/tom_weixin/module/hook/voteHook.php',        'vote',        1,        NULL,        NULL,        NULL),
(11,        10,        './source/plugin/sgz_reply/tom_weixin_insert.php',        'reply',        1,        NULL,        NULL,        NULL),
(12,        11,        './source/plugin/sgz_reply/tom_weixin_serch_insert.php',        'reply',        1,        NULL,        NULL,        NULL);
 
 |