-
Notifications
You must be signed in to change notification settings - Fork 1
/
hucai.sql
executable file
·3253 lines (2854 loc) · 380 KB
/
hucai.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.5.35, for Win32 (x86)
--
-- Host: localhost Database: hucai
-- ------------------------------------------------------
-- Server version 5.5.35
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `hc_admin`
--
DROP TABLE IF EXISTS `hc_admin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_admin` (
`userid` mediumint(6) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(20) DEFAULT NULL,
`password` varchar(32) DEFAULT NULL,
`roleid` smallint(5) DEFAULT '0',
`encrypt` varchar(6) DEFAULT NULL,
`lastloginip` varchar(15) DEFAULT NULL,
`lastlogintime` int(10) unsigned DEFAULT '0',
`email` varchar(40) DEFAULT NULL,
`realname` varchar(50) NOT NULL DEFAULT '',
`card` varchar(255) NOT NULL,
`lang` varchar(6) NOT NULL,
PRIMARY KEY (`userid`),
KEY `username` (`username`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_admin`
--
LOCK TABLES `hc_admin` WRITE;
/*!40000 ALTER TABLE `hc_admin` DISABLE KEYS */;
INSERT INTO `hc_admin` VALUES (1,'admin','4fd4bf489527bb06ed821d66bdcf5626',1,'8dmgi7','127.0.0.1',1430112868,'[email protected]','管理员','','zh-cn');
/*!40000 ALTER TABLE `hc_admin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_admin_panel`
--
DROP TABLE IF EXISTS `hc_admin_panel`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_admin_panel` (
`menuid` mediumint(8) unsigned NOT NULL,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`name` char(32) DEFAULT NULL,
`url` char(255) DEFAULT NULL,
`datetime` int(10) unsigned DEFAULT '0',
UNIQUE KEY `userid` (`menuid`,`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_admin_panel`
--
LOCK TABLES `hc_admin_panel` WRITE;
/*!40000 ALTER TABLE `hc_admin_panel` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_admin_panel` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_admin_role`
--
DROP TABLE IF EXISTS `hc_admin_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_admin_role` (
`roleid` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`rolename` varchar(50) NOT NULL,
`description` text NOT NULL,
`listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
`disabled` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`roleid`),
KEY `listorder` (`listorder`),
KEY `disabled` (`disabled`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_admin_role`
--
LOCK TABLES `hc_admin_role` WRITE;
/*!40000 ALTER TABLE `hc_admin_role` DISABLE KEYS */;
INSERT INTO `hc_admin_role` VALUES (1,'超级管理员','超级管理员',0,0),(2,'站点管理员','站点管理员',0,0),(3,'运营总监','运营总监',1,0),(4,'总编','总编',5,0),(5,'编辑','编辑',1,0),(7,'发布人员','发布人员',0,0);
/*!40000 ALTER TABLE `hc_admin_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_admin_role_priv`
--
DROP TABLE IF EXISTS `hc_admin_role_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_admin_role_priv` (
`roleid` tinyint(3) unsigned NOT NULL DEFAULT '0',
`m` char(20) NOT NULL,
`c` char(20) NOT NULL,
`a` char(20) NOT NULL,
`data` char(30) NOT NULL DEFAULT '',
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
KEY `roleid` (`roleid`,`m`,`c`,`a`,`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_admin_role_priv`
--
LOCK TABLES `hc_admin_role_priv` WRITE;
/*!40000 ALTER TABLE `hc_admin_role_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_admin_role_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_announce`
--
DROP TABLE IF EXISTS `hc_announce`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_announce` (
`aid` smallint(4) unsigned NOT NULL AUTO_INCREMENT,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` char(80) NOT NULL,
`content` text NOT NULL,
`starttime` date NOT NULL DEFAULT '0000-00-00',
`endtime` date NOT NULL DEFAULT '0000-00-00',
`username` varchar(40) NOT NULL,
`addtime` int(10) unsigned NOT NULL DEFAULT '0',
`hits` smallint(5) unsigned NOT NULL DEFAULT '0',
`passed` tinyint(1) unsigned NOT NULL DEFAULT '0',
`style` char(15) NOT NULL,
`show_template` char(30) NOT NULL,
PRIMARY KEY (`aid`),
KEY `siteid` (`siteid`,`passed`,`endtime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_announce`
--
LOCK TABLES `hc_announce` WRITE;
/*!40000 ALTER TABLE `hc_announce` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_announce` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_attachment`
--
DROP TABLE IF EXISTS `hc_attachment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_attachment` (
`aid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`module` char(15) NOT NULL,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`filename` char(50) NOT NULL,
`filepath` char(200) NOT NULL,
`filesize` int(10) unsigned NOT NULL DEFAULT '0',
`fileext` char(10) NOT NULL,
`isimage` tinyint(1) unsigned NOT NULL DEFAULT '0',
`isthumb` tinyint(1) unsigned NOT NULL DEFAULT '0',
`downloads` mediumint(8) unsigned NOT NULL DEFAULT '0',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`uploadtime` int(10) unsigned NOT NULL DEFAULT '0',
`uploadip` char(15) NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`authcode` char(32) NOT NULL,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`aid`),
KEY `authcode` (`authcode`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_attachment`
--
LOCK TABLES `hc_attachment` WRITE;
/*!40000 ALTER TABLE `hc_attachment` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_attachment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_attachment_index`
--
DROP TABLE IF EXISTS `hc_attachment_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_attachment_index` (
`keyid` char(30) NOT NULL,
`aid` char(10) NOT NULL,
KEY `keyid` (`keyid`),
KEY `aid` (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_attachment_index`
--
LOCK TABLES `hc_attachment_index` WRITE;
/*!40000 ALTER TABLE `hc_attachment_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_attachment_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_badword`
--
DROP TABLE IF EXISTS `hc_badword`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_badword` (
`badid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`badword` char(20) NOT NULL,
`level` tinyint(5) NOT NULL DEFAULT '1',
`replaceword` char(20) NOT NULL DEFAULT '0',
`lastusetime` int(10) unsigned NOT NULL DEFAULT '0',
`listorder` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`badid`),
UNIQUE KEY `badword` (`badword`),
KEY `usetimes` (`replaceword`,`listorder`),
KEY `hits` (`listorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_badword`
--
LOCK TABLES `hc_badword` WRITE;
/*!40000 ALTER TABLE `hc_badword` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_badword` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_block`
--
DROP TABLE IF EXISTS `hc_block`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_block` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`siteid` smallint(5) unsigned DEFAULT '0',
`name` char(50) DEFAULT NULL,
`pos` char(30) DEFAULT NULL,
`type` tinyint(1) DEFAULT '0',
`data` text,
`template` text,
PRIMARY KEY (`id`),
KEY `pos` (`pos`),
KEY `type` (`type`),
KEY `siteid` (`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_block`
--
LOCK TABLES `hc_block` WRITE;
/*!40000 ALTER TABLE `hc_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_block_history`
--
DROP TABLE IF EXISTS `hc_block_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_block_history` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`blockid` int(10) unsigned DEFAULT '0',
`data` text,
`creat_at` int(10) unsigned DEFAULT '0',
`userid` mediumint(8) unsigned DEFAULT '0',
`username` char(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_block_history`
--
LOCK TABLES `hc_block_history` WRITE;
/*!40000 ALTER TABLE `hc_block_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_block_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_block_priv`
--
DROP TABLE IF EXISTS `hc_block_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_block_priv` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`roleid` tinyint(3) unsigned DEFAULT '0',
`siteid` smallint(5) unsigned DEFAULT '0',
`blockid` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`id`),
KEY `blockid` (`blockid`),
KEY `roleid` (`roleid`,`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_block_priv`
--
LOCK TABLES `hc_block_priv` WRITE;
/*!40000 ALTER TABLE `hc_block_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_block_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_cache`
--
DROP TABLE IF EXISTS `hc_cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_cache` (
`filename` char(50) NOT NULL,
`path` char(50) NOT NULL,
`data` mediumtext NOT NULL,
PRIMARY KEY (`filename`,`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_cache`
--
LOCK TABLES `hc_cache` WRITE;
/*!40000 ALTER TABLE `hc_cache` DISABLE KEYS */;
INSERT INTO `hc_cache` VALUES ('mood_program.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n 1 => \n array (\n \'use\' => \'1\',\n \'name\' => \'震惊\',\n \'pic\' => \'mood/a1.gif\',\n ),\n 2 => \n array (\n \'use\' => \'1\',\n \'name\' => \'不解\',\n \'pic\' => \'mood/a2.gif\',\n ),\n 3 => \n array (\n \'use\' => \'1\',\n \'name\' => \'愤怒\',\n \'pic\' => \'mood/a3.gif\',\n ),\n 4 => \n array (\n \'use\' => \'1\',\n \'name\' => \'杯具\',\n \'pic\' => \'mood/a4.gif\',\n ),\n 5 => \n array (\n \'use\' => \'1\',\n \'name\' => \'无聊\',\n \'pic\' => \'mood/a5.gif\',\n ),\n 6 => \n array (\n \'use\' => \'1\',\n \'name\' => \'高兴\',\n \'pic\' => \'mood/a6.gif\',\n ),\n 7 => \n array (\n \'use\' => \'1\',\n \'name\' => \'支持\',\n \'pic\' => \'mood/a7.gif\',\n ),\n 8 => \n array (\n \'use\' => \'1\',\n \'name\' => \'超赞\',\n \'pic\' => \'mood/a8.gif\',\n ),\n 9 => \n array (\n \'use\' => NULL,\n \'name\' => \'\',\n \'pic\' => \'\',\n ),\n 10 => \n array (\n \'use\' => NULL,\n \'name\' => \'\',\n \'pic\' => \'\',\n ),\n ),\n);\n?>'),('sitelist.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'siteid\' => \'1\',\n \'name\' => \'默认站点\',\n \'dirname\' => \'\',\n \'domain\' => \'http://www.hc.com/\',\n \'site_title\' => \'虎彩 - 让印刷走进千家万户\',\n \'keywords\' => \'虎彩·印艺专家,中国最具特色的创新型印艺企业,拥有亚洲规模最大的数字印刷机群。为您提供包装印刷、安全印务、个性影像、个性包装、按需出版等个性化定制服务\',\n \'description\' => \'虎彩是全球最优秀的高端奢侈品纸包装解决方案供应商,名列中国印刷百强第九名。我们致力于让印刷走进千家万户,围绕客户的需求持续创新,为企业提供具有竞争力整体印刷解决方案,为用户提供优质的个性化定制服务,持续提升客户体验,为客户创造最大价值。虎彩人的使命正在于将千家万户的幸福、美好回忆,用先进的印刷技术和个性化印品将其永久珍藏,让其触手可及。\',\n \'release_point\' => \'\',\n \'default_style\' => \'hucai\',\n \'template\' => \'hucai\',\n \'setting\' => \'array (\n \\\'upload_maxsize\\\' => \\\'2048\\\',\n \\\'upload_allowext\\\' => \\\'jpg|jpeg|gif|bmp|png|doc|docx|xls|xlsx|ppt|pptx|pdf|txt|rar|zip|swf\\\',\n \\\'watermark_enable\\\' => \\\'1\\\',\n \\\'watermark_minwidth\\\' => \\\'300\\\',\n \\\'watermark_minheight\\\' => \\\'300\\\',\n \\\'watermark_img\\\' => \\\'statics/images/water//mark.png\\\',\n \\\'watermark_pct\\\' => \\\'85\\\',\n \\\'watermark_quality\\\' => \\\'80\\\',\n \\\'watermark_pos\\\' => \\\'9\\\',\n)\',\n \'uuid\' => \'d6ecd476-e199-11e4-acca-00ac488648d9\',\n \'url\' => \'http://www.hc.com/\',\n ),\n 2 => \n array (\n \'siteid\' => \'2\',\n \'name\' => \'英文站点\',\n \'dirname\' => \'en\',\n \'domain\' => \'http://www.hc.com/en/\',\n \'site_title\' => \'Hucais Printing\',\n \'keywords\' => \'keywords\',\n \'description\' => \'descptions\',\n \'release_point\' => \'\',\n \'default_style\' => \'hucai_en\',\n \'template\' => \'hucai_en\',\n \'setting\' => \'array (\n \\\'upload_maxsize\\\' => \\\'2000\\\',\n \\\'upload_allowext\\\' => \\\'jpg|jpeg|gif|bmp|png|doc|docx|xls|xlsx|ppt|pptx|pdf|txt|rar|zip|swf\\\',\n \\\'watermark_enable\\\' => \\\'1\\\',\n \\\'watermark_minwidth\\\' => \\\'300\\\',\n \\\'watermark_minheight\\\' => \\\'300\\\',\n \\\'watermark_img\\\' => \\\'http://www.hc.com/statics/images/water/mark.gif\\\',\n \\\'watermark_pct\\\' => \\\'100\\\',\n \\\'watermark_quality\\\' => \\\'80\\\',\n \\\'watermark_pos\\\' => \\\'9\\\',\n)\',\n \'uuid\' => \'\',\n \'url\' => \'http://www.hc.com/en/\',\n ),\n);\n?>'),('modules.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n \'admin\' => \n array (\n \'module\' => \'admin\',\n \'name\' => \'admin\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'array (\n \\\'admin_email\\\' => \\\'[email protected]\\\',\n \\\'adminaccessip\\\' => \\\'0\\\',\n \\\'maxloginfailedtimes\\\' => \\\'8\\\',\n \\\'maxiplockedtime\\\' => \\\'15\\\',\n \\\'minrefreshtime\\\' => \\\'2\\\',\n \\\'mail_type\\\' => \\\'1\\\',\n \\\'mail_server\\\' => \\\'smtp.qq.com\\\',\n \\\'mail_port\\\' => \\\'25\\\',\n \\\'mail_user\\\' => \\\'[email protected]\\\',\n \\\'mail_auth\\\' => \\\'1\\\',\n \\\'mail_from\\\' => \\\'[email protected]\\\',\n \\\'mail_password\\\' => \\\'\\\',\n \\\'errorlog_size\\\' => \\\'20\\\',\n)\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-10-18\',\n \'updatedate\' => \'2010-10-18\',\n ),\n \'member\' => \n array (\n \'module\' => \'member\',\n \'name\' => \'会员\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'array (\n \\\'allowregister\\\' => \\\'1\\\',\n \\\'choosemodel\\\' => \\\'1\\\',\n \\\'enablemailcheck\\\' => \\\'0\\\',\n \\\'registerverify\\\' => \\\'0\\\',\n \\\'showapppoint\\\' => \\\'0\\\',\n \\\'rmb_point_rate\\\' => \\\'10\\\',\n \\\'defualtpoint\\\' => \\\'0\\\',\n \\\'defualtamount\\\' => \\\'0\\\',\n \\\'showregprotocol\\\' => \\\'0\\\',\n \\\'regprotocol\\\' => \\\' 欢迎您注册成为phpcms用户\r\n请仔细阅读下面的协议,只有接受协议才能继续进行注册。 \r\n1.服务条款的确认和接纳\r\n phpcms用户服务的所有权和运作权归phpcms拥有。phpcms所提供的服务将按照有关章程、服务条款和操作规则严格执行。用户通过注册程序点击“我同意” 按钮,即表示用户与phpcms达成协议并接受所有的服务条款。\r\n2. phpcms服务简介\r\n phpcms通过国际互联网为用户提供新闻及文章浏览、图片浏览、软件下载、网上留言和BBS论坛等服务。\r\n 用户必须: \r\n 1)购置设备,包括个人电脑一台、调制解调器一个及配备上网装置。 \r\n 2)个人上网和支付与此服务有关的电话费用、网络费用。\r\n 用户同意: \r\n 1)提供及时、详尽及准确的个人资料。 \r\n 2)不断更新注册资料,符合及时、详尽、准确的要求。所有原始键入的资料将引用为注册资料。 \r\n 3)用户同意遵守《中华人民共和国保守国家秘密法》、《中华人民共和国计算机信息系统安全保护条例》、《计算机软件保护条例》等有关计算机及互联网规定的法律和法规、实施办法。在任何情况下,phpcms合理地认为用户的行为可能违反上述法律、法规,phpcms可以在任何时候,不经事先通知终止向该用户提供服务。用户应了解国际互联网的无国界性,应特别注意遵守当地所有有关的法律和法规。\r\n3. 服务条款的修改\r\n phpcms会不定时地修改服务条款,服务条款一旦发生变动,将会在相关页面上提示修改内容。如果您同意改动,则再一次点击“我同意”按钮。 如果您不接受,则及时取消您的用户使用服务资格。\r\n4. 服务修订\r\n phpcms保留随时修改或中断服务而不需知照用户的权利。phpcms行使修改或中断服务的权利,不需对用户或第三方负责。\r\n5. 用户隐私制度\r\n 尊重用户个人隐私是phpcms的 基本政策。phpcms不会公开、编辑或透露用户的注册信息,除非有法律许可要求,或phpcms在诚信的基础上认为透露这些信息在以下三种情况是必要的: \r\n 1)遵守有关法律规定,遵从合法服务程序。 \r\n 2)保持维护phpcms的商标所有权。 \r\n 3)在紧急情况下竭力维护用户个人和社会大众的隐私安全。 \r\n 4)符合其他相关的要求。 \r\n6.用户的帐号,密码和安全性\r\n 一旦注册成功成为phpcms用户,您将得到一个密码和帐号。如果您不保管好自己的帐号和密码安全,将对因此产生的后果负全部责任。另外,每个用户都要对其帐户中的所有活动和事件负全责。您可随时根据指示改变您的密码,也可以结束旧的帐户重开一个新帐户。用户同意若发现任何非法使用用户帐号或安全漏洞的情况,立即通知phpcms。\r\n7. 免责条款\r\n 用户明确同意网站服务的使用由用户个人承担风险。 \r\n phpcms不作任何类型的担保,不担保服务一定能满足用户的要求,也不担保服务不会受中断,对服务的及时性,安全性,出错发生都不作担保。用户理解并接受:任何通过phpcms服务取得的信息资料的可靠性取决于用户自己,用户自己承担所有风险和责任。 \r\n8.有限责任\r\n phpcms对任何直接、间接、偶然、特殊及继起的损害不负责任。\r\n9. 不提供零售和商业性服务 \r\n 用户使用网站服务的权利是个人的。用户只能是一个单独的个体而不能是一个公司或实体商业性组织。用户承诺不经phpcms同意,不能利用网站服务进行销售或其他商业用途。\r\n10.用户责任 \r\n 用户单独承担传输内容的责任。用户必须遵循: \r\n 1)从中国境内向外传输技术性资料时必须符合中国有关法规。 \r\n 2)使用网站服务不作非法用途。 \r\n 3)不干扰或混乱网络服务。 \r\n 4)不在论坛BBS或留言簿发表任何与政治相关的信息。 \r\n 5)遵守所有使用网站服务的网络协议、规定、程序和惯例。\r\n 6)不得利用本站危害国家安全、泄露国家秘密,不得侵犯国家社会集体的和公民的合法权益。\r\n 7)不得利用本站制作、复制和传播下列信息: \r\n 1、煽动抗拒、破坏宪法和法律、行政法规实施的;\r\n 2、煽动颠覆国家政权,推翻社会主义制度的;\r\n 3、煽动分裂国家、破坏国家统一的;\r\n 4、煽动民族仇恨、民族歧视,破坏民族团结的;\r\n 5、捏造或者歪曲事实,散布谣言,扰乱社会秩序的;\r\n 6、宣扬封建迷信、淫秽、色情、赌博、暴力、凶杀、恐怖、教唆犯罪的;\r\n 7、公然侮辱他人或者捏造事实诽谤他人的,或者进行其他恶意攻击的;\r\n 8、损害国家机关信誉的;\r\n 9、其他违反宪法和法律行政法规的;\r\n 10、进行商业广告行为的。\r\n 用户不能传输任何教唆他人构成犯罪行为的资料;不能传输长国内不利条件和涉及国家安全的资料;不能传输任何不符合当地法规、国家法律和国际法 律的资料。未经许可而非法进入其它电脑系统是禁止的。若用户的行为不符合以上的条款,phpcms将取消用户服务帐号。\r\n11.网站内容的所有权\r\n phpcms定义的内容包括:文字、软件、声音、相片、录象、图表;在广告中全部内容;电子邮件的全部内容;phpcms为用户提供的商业信息。所有这些内容受版权、商标、标签和其它财产所有权法律的保护。所以,用户只能在phpcms和广告商授权下才能使用这些内容,而不能擅自复制、篡改这些内容、或创造与内容有关的派生产品。\r\n12.附加信息服务\r\n 用户在享用phpcms提供的免费服务的同时,同意接受phpcms提供的各类附加信息服务。\r\n13.解释权\r\n 本注册协议的解释权归phpcms所有。如果其中有任何条款与国家的有关法律相抵触,则以国家法律的明文规定为准。 \\\',\n \\\'registerverifymessage\\\' => \\\' 欢迎您注册成为phpcms用户,您的账号需要邮箱认证,点击下面链接进行认证:{click}\r\n或者将网址复制到浏览器:{url}\\\',\n \\\'forgetpassword\\\' => \\\' phpcms密码找回,请在一小时内点击下面链接进行操作:{click}\r\n或者将网址复制到浏览器:{url}\\\',\n)\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'pay\' => \n array (\n \'module\' => \'pay\',\n \'name\' => \'支付\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'digg\' => \n array (\n \'module\' => \'digg\',\n \'name\' => \'顶一下\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'special\' => \n array (\n \'module\' => \'special\',\n \'name\' => \'专题\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'content\' => \n array (\n \'module\' => \'content\',\n \'name\' => \'内容模块\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'search\' => \n array (\n \'module\' => \'search\',\n \'name\' => \'全站搜索\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'array (\n \\\'fulltextenble\\\' => \\\'1\\\',\n \\\'relationenble\\\' => \\\'1\\\',\n \\\'suggestenable\\\' => \\\'1\\\',\n \\\'sphinxenable\\\' => \\\'0\\\',\n \\\'sphinxhost\\\' => \\\'10.228.134.102\\\',\n \\\'sphinxport\\\' => \\\'9312\\\',\n)\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'scan\' => \n array (\n \'module\' => \'scan\',\n \'name\' => \'木马扫描\',\n \'url\' => \'scan\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'attachment\' => \n array (\n \'module\' => \'attachment\',\n \'name\' => \'附件\',\n \'url\' => \'attachment\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'block\' => \n array (\n \'module\' => \'block\',\n \'name\' => \'碎片\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'collection\' => \n array (\n \'module\' => \'collection\',\n \'name\' => \'采集模块\',\n \'url\' => \'collection\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'dbsource\' => \n array (\n \'module\' => \'dbsource\',\n \'name\' => \'数据源\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'template\' => \n array (\n \'module\' => \'template\',\n \'name\' => \'模板风格\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'release\' => \n array (\n \'module\' => \'release\',\n \'name\' => \'发布点\',\n \'url\' => \'\',\n \'iscore\' => \'1\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-01\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'video\' => \n array (\n \'module\' => \'video\',\n \'name\' => \'视频库\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2012-09-28\',\n \'updatedate\' => \'2012-09-28\',\n ),\n \'announce\' => \n array (\n \'module\' => \'announce\',\n \'name\' => \'公告\',\n \'url\' => \'announce/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'公告\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2015-04-13\',\n \'updatedate\' => \'2015-04-13\',\n ),\n \'comment\' => \n array (\n \'module\' => \'comment\',\n \'name\' => \'评论\',\n \'url\' => \'comment/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'评论\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2015-04-13\',\n \'updatedate\' => \'2015-04-13\',\n ),\n \'link\' => \n array (\n \'module\' => \'link\',\n \'name\' => \'友情链接\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'array (\n 1 => \n array (\n \\\'is_post\\\' => \\\'1\\\',\n \\\'enablecheckcode\\\' => \\\'0\\\',\n ),\n)\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'vote\' => \n array (\n \'module\' => \'vote\',\n \'name\' => \'投票\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'array (\r\n 1 => \r\n array (\r\n \\\'default_style\\\' => \\\'default\\\',\r\n \\\'vote_tp_template\\\' => \\\'vote_tp\\\',\r\n \\\'allowguest\\\' => \\\'1\\\',\r\n \\\'enabled\\\' => \\\'1\\\',\r\n \\\'interval\\\' => \\\'1\\\',\r\n \\\'credit\\\' => \\\'1\\\',\r\n ),\r\n)\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'message\' => \n array (\n \'module\' => \'message\',\n \'name\' => \'短消息\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-09-06\',\n \'updatedate\' => \'2010-09-06\',\n ),\n \'mood\' => \n array (\n \'module\' => \'mood\',\n \'name\' => \'新闻心情\',\n \'url\' => \'mood/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'新闻心情\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2015-04-13\',\n \'updatedate\' => \'2015-04-13\',\n ),\n \'poster\' => \n array (\n \'module\' => \'poster\',\n \'name\' => \'广告模块\',\n \'url\' => \'poster/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'广告模块\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2015-04-13\',\n \'updatedate\' => \'2015-04-13\',\n ),\n \'formguide\' => \n array (\n \'module\' => \'formguide\',\n \'name\' => \'表单向导\',\n \'url\' => \'formguide/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'formguide\',\n \'setting\' => \'array (\n \\\'allowmultisubmit\\\' => \\\'1\\\',\n \\\'interval\\\' => \\\'30\\\',\n \\\'allowunreg\\\' => \\\'0\\\',\n \\\'mailmessage\\\' => \\\'用户向我们提交了表单数据,赶快去看看吧。\\\',\n)\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2010-10-20\',\n \'updatedate\' => \'2010-10-20\',\n ),\n \'wap\' => \n array (\n \'module\' => \'wap\',\n \'name\' => \'手机门户\',\n \'url\' => \'wap/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'手机门户\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2015-04-13\',\n \'updatedate\' => \'2015-04-13\',\n ),\n \'upgrade\' => \n array (\n \'module\' => \'upgrade\',\n \'name\' => \'在线升级\',\n \'url\' => \'\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2011-05-18\',\n \'updatedate\' => \'2011-05-18\',\n ),\n \'tag\' => \n array (\n \'module\' => \'tag\',\n \'name\' => \'标签向导\',\n \'url\' => \'tag/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'标签向导\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2015-04-13\',\n \'updatedate\' => \'2015-04-13\',\n ),\n \'sms\' => \n array (\n \'module\' => \'sms\',\n \'name\' => \'短信平台\',\n \'url\' => \'sms/\',\n \'iscore\' => \'0\',\n \'version\' => \'1.0\',\n \'description\' => \'短信平台\',\n \'setting\' => \'\',\n \'listorder\' => \'0\',\n \'disabled\' => \'0\',\n \'installdate\' => \'2011-09-02\',\n \'updatedate\' => \'2011-09-02\',\n ),\n);\n?>'),('category_content.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \'1\',\n 6 => \'1\',\n 2 => \'1\',\n 7 => \'1\',\n 3 => \'1\',\n 8 => \'1\',\n 4 => \'1\',\n 5 => \'1\',\n);\n?>'),('category_content_1.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'catid\' => \'1\',\n \'siteid\' => \'1\',\n \'type\' => \'1\',\n \'modelid\' => \'0\',\n \'parentid\' => \'0\',\n \'arrparentid\' => \'0\',\n \'child\' => \'1\',\n \'arrchildid\' => \'1,2,3,5,162\',\n \'catname\' => \'网站介绍\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'\',\n \'catdir\' => \'about\',\n \'url\' => \'http://www.hc.com/html/about/\',\n \'items\' => \'0\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'ishtml\\\' => \\\'1\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'page_template\\\' => \\\'page\\\',\n \\\'meta_title\\\' => \\\'\\\',\n \\\'meta_keywords\\\' => \\\'\\\',\n \\\'meta_description\\\' => \\\'\\\',\n \\\'category_ruleid\\\' => \\\'1\\\',\n \\\'show_ruleid\\\' => \\\'\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n)\',\n \'listorder\' => \'1\',\n \'ismenu\' => \'0\',\n \'sethtml\' => \'0\',\n \'letter\' => \'wangzhanjieshao\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => NULL,\n \'ishtml\' => \'1\',\n \'content_ishtml\' => NULL,\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'workflowid\' => NULL,\n \'isdomain\' => \'0\',\n ),\n 2 => \n array (\n \'catid\' => \'2\',\n \'siteid\' => \'1\',\n \'type\' => \'1\',\n \'modelid\' => \'0\',\n \'parentid\' => \'1\',\n \'arrparentid\' => \'0,1\',\n \'child\' => \'0\',\n \'arrchildid\' => \'2\',\n \'catname\' => \'关于我们\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'about/\',\n \'catdir\' => \'aboutus\',\n \'url\' => \'http://www.hc.com/html/about/aboutus/\',\n \'items\' => \'0\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'ishtml\\\' => \\\'1\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'page_template\\\' => \\\'page\\\',\n \\\'meta_title\\\' => \\\'关于我们\\\',\n \\\'meta_keywords\\\' => \\\'关于我们\\\',\n \\\'meta_description\\\' => \\\'关于我们\\\',\n \\\'category_ruleid\\\' => \\\'1\\\',\n \\\'show_ruleid\\\' => \\\'\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n)\',\n \'listorder\' => \'1\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'guanyuwomen\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => NULL,\n \'ishtml\' => \'1\',\n \'content_ishtml\' => NULL,\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'workflowid\' => NULL,\n \'isdomain\' => \'0\',\n ),\n 6 => \n array (\n \'catid\' => \'6\',\n \'siteid\' => \'1\',\n \'type\' => \'0\',\n \'modelid\' => \'1\',\n \'parentid\' => \'0\',\n \'arrparentid\' => \'0\',\n \'child\' => \'0\',\n \'arrchildid\' => \'6\',\n \'catname\' => \'国内\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'\',\n \'catdir\' => \'guonei\',\n \'url\' => \'http://www.hc.com\',\n \'items\' => \'4\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'workflowid\\\' => \\\'\\\',\n \\\'ishtml\\\' => \\\'0\\\',\n \\\'content_ishtml\\\' => \\\'0\\\',\n \\\'create_to_html_root\\\' => \\\'0\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'category_template\\\' => \\\'category\\\',\n \\\'list_template\\\' => \\\'list\\\',\n \\\'show_template\\\' => \\\'show\\\',\n \\\'meta_title\\\' => \\\'\\\',\n \\\'meta_keywords\\\' => \\\'\\\',\n \\\'meta_description\\\' => \\\'\\\',\n \\\'presentpoint\\\' => \\\'1\\\',\n \\\'defaultchargepoint\\\' => \\\'0\\\',\n \\\'paytype\\\' => \\\'0\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n \\\'category_ruleid\\\' => \\\'6\\\',\n \\\'show_ruleid\\\' => \\\'16\\\',\n)\',\n \'listorder\' => \'1\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'guonei\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => \'0\',\n \'ishtml\' => \'0\',\n \'content_ishtml\' => \'0\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'16\',\n \'workflowid\' => \'\',\n \'isdomain\' => \'0\',\n ),\n 3 => \n array (\n \'catid\' => \'3\',\n \'siteid\' => \'1\',\n \'type\' => \'1\',\n \'modelid\' => \'0\',\n \'parentid\' => \'1\',\n \'arrparentid\' => \'0,1\',\n \'child\' => \'0\',\n \'arrchildid\' => \'3\',\n \'catname\' => \'联系方式\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'about/\',\n \'catdir\' => \'contactus\',\n \'url\' => \'http://www.hc.com/html/about/contactus/\',\n \'items\' => \'0\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'ishtml\\\' => \\\'1\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'page_template\\\' => \\\'page\\\',\n \\\'meta_title\\\' => \\\'联系方式\\\',\n \\\'meta_keywords\\\' => \\\'联系方式\\\',\n \\\'meta_description\\\' => \\\'联系方式\\\',\n \\\'category_ruleid\\\' => \\\'1\\\',\n \\\'show_ruleid\\\' => \\\'\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n)\',\n \'listorder\' => \'2\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'lianxifangshi\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => NULL,\n \'ishtml\' => \'1\',\n \'content_ishtml\' => NULL,\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'workflowid\' => NULL,\n \'isdomain\' => \'0\',\n ),\n 7 => \n array (\n \'catid\' => \'7\',\n \'siteid\' => \'1\',\n \'type\' => \'0\',\n \'modelid\' => \'2\',\n \'parentid\' => \'0\',\n \'arrparentid\' => \'0\',\n \'child\' => \'0\',\n \'arrchildid\' => \'7\',\n \'catname\' => \'下载\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'\',\n \'catdir\' => \'down\',\n \'url\' => \'http://www.hc.com\',\n \'items\' => \'1\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'workflowid\\\' => \\\'\\\',\n \\\'ishtml\\\' => \\\'0\\\',\n \\\'content_ishtml\\\' => \\\'0\\\',\n \\\'create_to_html_root\\\' => \\\'0\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'category_template\\\' => \\\'category_download\\\',\n \\\'list_template\\\' => \\\'list_download\\\',\n \\\'show_template\\\' => \\\'show_download\\\',\n \\\'meta_title\\\' => \\\'\\\',\n \\\'meta_keywords\\\' => \\\'\\\',\n \\\'meta_description\\\' => \\\'\\\',\n \\\'presentpoint\\\' => \\\'1\\\',\n \\\'defaultchargepoint\\\' => \\\'0\\\',\n \\\'paytype\\\' => \\\'0\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n \\\'category_ruleid\\\' => \\\'6\\\',\n \\\'show_ruleid\\\' => \\\'16\\\',\n)\',\n \'listorder\' => \'2\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'xiazai\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => \'0\',\n \'ishtml\' => \'0\',\n \'content_ishtml\' => \'0\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'16\',\n \'workflowid\' => \'\',\n \'isdomain\' => \'0\',\n ),\n 4 => \n array (\n \'catid\' => \'4\',\n \'siteid\' => \'1\',\n \'type\' => \'1\',\n \'modelid\' => \'0\',\n \'parentid\' => \'1\',\n \'arrparentid\' => \'0,1\',\n \'child\' => \'0\',\n \'arrchildid\' => \'4\',\n \'catname\' => \'版权声明\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'about/\',\n \'catdir\' => \'copyright\',\n \'url\' => \'http://test.phpcms.cn/index.php?m=content&c=index&a=lists&catid=4\',\n \'items\' => \'0\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'ishtml\\\' => \\\'0\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'page_template\\\' => \\\'page\\\',\n \\\'meta_title\\\' => \\\'版权声明\\\',\n \\\'meta_keywords\\\' => \\\'版权声明\\\',\n \\\'meta_description\\\' => \\\'版权声明\\\',\n \\\'category_ruleid\\\' => \\\'6\\\',\n \\\'show_ruleid\\\' => \\\'\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n)\',\n \'listorder\' => \'3\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'banquanshengming\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => NULL,\n \'ishtml\' => \'0\',\n \'content_ishtml\' => NULL,\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'\',\n \'workflowid\' => NULL,\n \'isdomain\' => \'0\',\n ),\n 8 => \n array (\n \'catid\' => \'8\',\n \'siteid\' => \'1\',\n \'type\' => \'0\',\n \'modelid\' => \'3\',\n \'parentid\' => \'0\',\n \'arrparentid\' => \'0\',\n \'child\' => \'0\',\n \'arrchildid\' => \'8\',\n \'catname\' => \'图片\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'\',\n \'catdir\' => \'pps\',\n \'url\' => \'http://www.hc.com\',\n \'items\' => \'2\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'workflowid\\\' => \\\'\\\',\n \\\'ishtml\\\' => \\\'0\\\',\n \\\'content_ishtml\\\' => \\\'0\\\',\n \\\'create_to_html_root\\\' => \\\'0\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'category_template\\\' => \\\'category_picture\\\',\n \\\'list_template\\\' => \\\'list_picture\\\',\n \\\'show_template\\\' => \\\'show_picture\\\',\n \\\'meta_title\\\' => \\\'\\\',\n \\\'meta_keywords\\\' => \\\'\\\',\n \\\'meta_description\\\' => \\\'\\\',\n \\\'presentpoint\\\' => \\\'1\\\',\n \\\'defaultchargepoint\\\' => \\\'0\\\',\n \\\'paytype\\\' => \\\'0\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n \\\'category_ruleid\\\' => \\\'6\\\',\n \\\'show_ruleid\\\' => \\\'16\\\',\n)\',\n \'listorder\' => \'3\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'tupian\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => \'0\',\n \'ishtml\' => \'0\',\n \'content_ishtml\' => \'0\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'16\',\n \'workflowid\' => \'\',\n \'isdomain\' => \'0\',\n ),\n 5 => \n array (\n \'catid\' => \'5\',\n \'siteid\' => \'1\',\n \'type\' => \'1\',\n \'modelid\' => \'0\',\n \'parentid\' => \'1\',\n \'arrparentid\' => \'0,1\',\n \'child\' => \'0\',\n \'arrchildid\' => \'5\',\n \'catname\' => \'招聘信息\',\n \'style\' => \'\',\n \'image\' => \'\',\n \'description\' => \'\',\n \'parentdir\' => \'about/\',\n \'catdir\' => \'hr\',\n \'url\' => \'http://www.hc.com/html/about/hr/\',\n \'items\' => \'0\',\n \'hits\' => \'0\',\n \'setting\' => \'array (\n \\\'ishtml\\\' => \\\'1\\\',\n \\\'template_list\\\' => \\\'default\\\',\n \\\'page_template\\\' => \\\'page\\\',\n \\\'meta_title\\\' => \\\'\\\',\n \\\'meta_keywords\\\' => \\\'\\\',\n \\\'meta_description\\\' => \\\'\\\',\n \\\'category_ruleid\\\' => \\\'1\\\',\n \\\'show_ruleid\\\' => \\\'\\\',\n \\\'repeatchargedays\\\' => \\\'1\\\',\n)\',\n \'listorder\' => \'4\',\n \'ismenu\' => \'1\',\n \'sethtml\' => \'0\',\n \'letter\' => \'zhaopinxinxi\',\n \'usable_type\' => \'\',\n \'create_to_html_root\' => NULL,\n \'ishtml\' => \'1\',\n \'content_ishtml\' => NULL,\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'workflowid\' => NULL,\n \'isdomain\' => \'0\',\n ),\n);\n?>'),('downservers.cache.php','caches_commons/caches_data/','<?php\nreturn NULL;\n?>'),('badword.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>'),('ipbanned.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>'),('keylink.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>'),('position.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 2 => \n array (\n \'posid\' => \'2\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'首页头条推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'4\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 1 => \n array (\n \'posid\' => \'1\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'首页焦点图推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'1\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 16 => \n array (\n \'posid\' => \'16\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'视频首页每日热点\',\n \'maxnum\' => \'20\',\n \'extention\' => \'\',\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 15 => \n array (\n \'posid\' => \'15\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'视频首页头条推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => \'\',\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 14 => \n array (\n \'posid\' => \'14\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'视频首页焦点图\',\n \'maxnum\' => \'20\',\n \'extention\' => \'\',\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 12 => \n array (\n \'posid\' => \'12\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'首页图片推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 10 => \n array (\n \'posid\' => \'10\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'栏目首页推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 9 => \n array (\n \'posid\' => \'9\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'网站顶部推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 8 => \n array (\n \'posid\' => \'8\',\n \'modelid\' => \'30\',\n \'catid\' => \'54\',\n \'name\' => \'图片频道首页焦点图\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 5 => \n array (\n \'posid\' => \'5\',\n \'modelid\' => \'69\',\n \'catid\' => \'0\',\n \'name\' => \'推荐下载\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 13 => \n array (\n \'posid\' => \'13\',\n \'modelid\' => \'82\',\n \'catid\' => \'0\',\n \'name\' => \'栏目页焦点图\',\n \'maxnum\' => \'20\',\n \'extention\' => NULL,\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n 17 => \n array (\n \'posid\' => \'17\',\n \'modelid\' => \'0\',\n \'catid\' => \'0\',\n \'name\' => \'视频栏目精彩推荐\',\n \'maxnum\' => \'20\',\n \'extention\' => \'\',\n \'listorder\' => \'0\',\n \'siteid\' => \'1\',\n \'thumb\' => \'\',\n ),\n);\n?>'),('role_siteid.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>'),('role.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \'超级管理员\',\n 2 => \'站点管理员\',\n 3 => \'运营总监\',\n 4 => \'总编\',\n 5 => \'编辑\',\n 7 => \'发布人员\',\n);\n?>'),('urlrules_detail.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'urlruleid\' => \'1\',\n \'module\' => \'content\',\n \'file\' => \'category\',\n \'ishtml\' => \'1\',\n \'urlrule\' => \'{$categorydir}{$catdir}/index.html|{$categorydir}{$catdir}/{$page}.html\',\n \'example\' => \'news/china/1000.html\',\n ),\n 6 => \n array (\n \'urlruleid\' => \'6\',\n \'module\' => \'content\',\n \'file\' => \'category\',\n \'ishtml\' => \'0\',\n \'urlrule\' => \'index.php?m=content&c=index&a=lists&catid={$catid}|index.php?m=content&c=index&a=lists&catid={$catid}&page={$page}\',\n \'example\' => \'index.php?m=content&c=index&a=lists&catid=1&page=1\',\n ),\n 11 => \n array (\n \'urlruleid\' => \'11\',\n \'module\' => \'content\',\n \'file\' => \'show\',\n \'ishtml\' => \'1\',\n \'urlrule\' => \'{$year}/{$catdir}_{$month}{$day}/{$id}.html|{$year}/{$catdir}_{$month}{$day}/{$id}_{$page}.html\',\n \'example\' => \'2010/catdir_0720/1_2.html\',\n ),\n 12 => \n array (\n \'urlruleid\' => \'12\',\n \'module\' => \'content\',\n \'file\' => \'show\',\n \'ishtml\' => \'1\',\n \'urlrule\' => \'{$categorydir}{$catdir}/{$year}/{$month}{$day}/{$id}.html|{$categorydir}{$catdir}/{$year}/{$month}{$day}/{$id}_{$page}.html\',\n \'example\' => \'it/product/2010/0720/1_2.html\',\n ),\n 16 => \n array (\n \'urlruleid\' => \'16\',\n \'module\' => \'content\',\n \'file\' => \'show\',\n \'ishtml\' => \'0\',\n \'urlrule\' => \'index.php?m=content&c=index&a=show&catid={$catid}&id={$id}|index.php?m=content&c=index&a=show&catid={$catid}&id={$id}&page={$page}\',\n \'example\' => \'index.php?m=content&c=index&a=show&catid=1&id=1\',\n ),\n 17 => \n array (\n \'urlruleid\' => \'17\',\n \'module\' => \'content\',\n \'file\' => \'show\',\n \'ishtml\' => \'0\',\n \'urlrule\' => \'show-{$catid}-{$id}-{$page}.html\',\n \'example\' => \'show-1-2-1.html\',\n ),\n 18 => \n array (\n \'urlruleid\' => \'18\',\n \'module\' => \'content\',\n \'file\' => \'show\',\n \'ishtml\' => \'0\',\n \'urlrule\' => \'content-{$catid}-{$id}-{$page}.html\',\n \'example\' => \'content-1-2-1.html\',\n ),\n 30 => \n array (\n \'urlruleid\' => \'30\',\n \'module\' => \'content\',\n \'file\' => \'category\',\n \'ishtml\' => \'0\',\n \'urlrule\' => \'list-{$catid}-{$page}.html\',\n \'example\' => \'list-1-1.html\',\n ),\n);\n?>'),('urlrules.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \'{$categorydir}{$catdir}/index.html|{$categorydir}{$catdir}/{$page}.html\',\n 6 => \'index.php?m=content&c=index&a=lists&catid={$catid}|index.php?m=content&c=index&a=lists&catid={$catid}&page={$page}\',\n 11 => \'{$year}/{$catdir}_{$month}{$day}/{$id}.html|{$year}/{$catdir}_{$month}{$day}/{$id}_{$page}.html\',\n 12 => \'{$categorydir}{$catdir}/{$year}/{$month}{$day}/{$id}.html|{$categorydir}{$catdir}/{$year}/{$month}{$day}/{$id}_{$page}.html\',\n 16 => \'index.php?m=content&c=index&a=show&catid={$catid}&id={$id}|index.php?m=content&c=index&a=show&catid={$catid}&id={$id}&page={$page}\',\n 17 => \'show-{$catid}-{$id}-{$page}.html\',\n 18 => \'content-{$catid}-{$id}-{$page}.html\',\n 30 => \'list-{$catid}-{$page}.html\',\n);\n?>'),('model.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'modelid\' => \'1\',\n \'siteid\' => \'1\',\n \'name\' => \'文章模型\',\n \'description\' => \'\',\n \'tablename\' => \'news\',\n \'setting\' => \'\',\n \'addtime\' => \'0\',\n \'items\' => \'0\',\n \'enablesearch\' => \'1\',\n \'disabled\' => \'0\',\n \'default_style\' => \'default\',\n \'category_template\' => \'category\',\n \'list_template\' => \'list\',\n \'show_template\' => \'show\',\n \'js_template\' => \'\',\n \'admin_list_template\' => \'\',\n \'member_add_template\' => \'\',\n \'member_list_template\' => \'\',\n \'sort\' => \'0\',\n \'type\' => \'0\',\n ),\n 2 => \n array (\n \'modelid\' => \'2\',\n \'siteid\' => \'1\',\n \'name\' => \'下载模型\',\n \'description\' => \'\',\n \'tablename\' => \'download\',\n \'setting\' => \'\',\n \'addtime\' => \'0\',\n \'items\' => \'0\',\n \'enablesearch\' => \'1\',\n \'disabled\' => \'0\',\n \'default_style\' => \'default\',\n \'category_template\' => \'category_download\',\n \'list_template\' => \'list_download\',\n \'show_template\' => \'show_download\',\n \'js_template\' => \'\',\n \'admin_list_template\' => \'\',\n \'member_add_template\' => \'\',\n \'member_list_template\' => \'\',\n \'sort\' => \'0\',\n \'type\' => \'0\',\n ),\n 3 => \n array (\n \'modelid\' => \'3\',\n \'siteid\' => \'1\',\n \'name\' => \'图片模型\',\n \'description\' => \'\',\n \'tablename\' => \'picture\',\n \'setting\' => \'\',\n \'addtime\' => \'0\',\n \'items\' => \'0\',\n \'enablesearch\' => \'1\',\n \'disabled\' => \'0\',\n \'default_style\' => \'default\',\n \'category_template\' => \'category_picture\',\n \'list_template\' => \'list_picture\',\n \'show_template\' => \'show_picture\',\n \'js_template\' => \'\',\n \'admin_list_template\' => \'\',\n \'member_add_template\' => \'\',\n \'member_list_template\' => \'\',\n \'sort\' => \'0\',\n \'type\' => \'0\',\n ),\n 11 => \n array (\n \'modelid\' => \'11\',\n \'siteid\' => \'1\',\n \'name\' => \'视频模型\',\n \'description\' => \'\',\n \'tablename\' => \'video\',\n \'setting\' => \'\',\n \'addtime\' => \'0\',\n \'items\' => \'0\',\n \'enablesearch\' => \'1\',\n \'disabled\' => \'0\',\n \'default_style\' => \'default\',\n \'category_template\' => \'category_video\',\n \'list_template\' => \'list_video\',\n \'show_template\' => \'show_video\',\n \'js_template\' => \'\',\n \'admin_list_template\' => \'\',\n \'member_add_template\' => \'\',\n \'member_list_template\' => \'\',\n \'sort\' => \'0\',\n \'type\' => \'0\',\n ),\n);\n?>'),('type_content.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>'),('workflow_1.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'workflowid\' => \'1\',\n \'siteid\' => \'1\',\n \'steps\' => \'1\',\n \'workname\' => \'一级审核\',\n \'description\' => \'审核一次\',\n \'setting\' => \'\',\n \'flag\' => \'0\',\n ),\n 2 => \n array (\n \'workflowid\' => \'2\',\n \'siteid\' => \'1\',\n \'steps\' => \'2\',\n \'workname\' => \'二级审核\',\n \'description\' => \'审核两次\',\n \'setting\' => \'\',\n \'flag\' => \'0\',\n ),\n 3 => \n array (\n \'workflowid\' => \'3\',\n \'siteid\' => \'1\',\n \'steps\' => \'3\',\n \'workname\' => \'三级审核\',\n \'description\' => \'审核三次\',\n \'setting\' => \'\',\n \'flag\' => \'0\',\n ),\n 4 => \n array (\n \'workflowid\' => \'4\',\n \'siteid\' => \'1\',\n \'steps\' => \'4\',\n \'workname\' => \'四级审核\',\n \'description\' => \'四级审核\',\n \'setting\' => \'\',\n \'flag\' => \'0\',\n ),\n);\n?>'),('member_model.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 10 => \n array (\n \'modelid\' => \'10\',\n \'siteid\' => \'1\',\n \'name\' => \'普通会员\',\n \'description\' => \'普通会员\',\n \'tablename\' => \'member_detail\',\n \'setting\' => \'\',\n \'addtime\' => \'0\',\n \'items\' => \'0\',\n \'enablesearch\' => \'1\',\n \'disabled\' => \'0\',\n \'default_style\' => \'\',\n \'category_template\' => \'\',\n \'list_template\' => \'\',\n \'show_template\' => \'\',\n \'js_template\' => \'\',\n \'admin_list_template\' => \'\',\n \'member_add_template\' => \'\',\n \'member_list_template\' => \'\',\n \'sort\' => \'0\',\n \'type\' => \'2\',\n ),\n);\n?>'),('vote.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'default_style\' => \'default\',\n \'vote_tp_template\' => \'vote_tp\',\n \'allowguest\' => \'1\',\n \'enabled\' => \'1\',\n \'interval\' => \'1\',\n \'credit\' => \'1\',\n ),\n);\n?>'),('link.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 1 => \n array (\n \'is_post\' => \'1\',\n \'enablecheckcode\' => \'0\',\n ),\n);\n?>'),('special.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>'),('common.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n \'admin_email\' => \'[email protected]\',\n \'adminaccessip\' => \'0\',\n \'maxloginfailedtimes\' => \'8\',\n \'maxiplockedtime\' => \'15\',\n \'minrefreshtime\' => \'2\',\n \'mail_type\' => \'1\',\n \'mail_server\' => \'smtp.qq.com\',\n \'mail_port\' => \'25\',\n \'mail_user\' => \'[email protected]\',\n \'mail_auth\' => \'1\',\n \'mail_from\' => \'[email protected]\',\n \'mail_password\' => \'\',\n \'errorlog_size\' => \'20\',\n);\n?>'),('category_items_1.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 6 => \'5\',\n);\n?>'),('category_items_2.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 7 => \'1\',\n);\n?>'),('category_items_3.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n 8 => \'2\',\n);\n?>'),('category_items_11.cache.php','caches_commons/caches_data/','<?php\nreturn array (\n);\n?>');
/*!40000 ALTER TABLE `hc_cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_category`
--
DROP TABLE IF EXISTS `hc_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_category` (
`catid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`module` varchar(15) NOT NULL,
`type` tinyint(1) unsigned NOT NULL DEFAULT '0',
`modelid` smallint(5) unsigned NOT NULL DEFAULT '0',
`parentid` smallint(5) unsigned NOT NULL DEFAULT '0',
`arrparentid` varchar(255) NOT NULL,
`child` tinyint(1) unsigned NOT NULL DEFAULT '0',
`arrchildid` mediumtext NOT NULL,
`catname` varchar(30) NOT NULL,
`style` varchar(5) NOT NULL,
`image` varchar(100) NOT NULL,
`description` mediumtext NOT NULL,
`parentdir` varchar(100) NOT NULL,
`catdir` varchar(30) NOT NULL,
`url` varchar(100) NOT NULL,
`items` mediumint(8) unsigned NOT NULL DEFAULT '0',
`hits` int(10) unsigned NOT NULL DEFAULT '0',
`setting` mediumtext NOT NULL,
`listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
`ismenu` tinyint(1) unsigned NOT NULL DEFAULT '1',
`sethtml` tinyint(1) unsigned NOT NULL DEFAULT '0',
`letter` varchar(30) NOT NULL,
`usable_type` varchar(255) NOT NULL,
PRIMARY KEY (`catid`),
KEY `module` (`module`,`parentid`,`listorder`,`catid`),
KEY `siteid` (`siteid`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_category`
--
LOCK TABLES `hc_category` WRITE;
/*!40000 ALTER TABLE `hc_category` DISABLE KEYS */;
INSERT INTO `hc_category` VALUES (1,1,'content',1,0,0,'0',1,'1,2,3,5,162','网站介绍','','','','','about','/html/about/',0,0,'array (\n \'ishtml\' => \'1\',\n \'template_list\' => \'default\',\n \'page_template\' => \'page\',\n \'meta_title\' => \'\',\n \'meta_keywords\' => \'\',\n \'meta_description\' => \'\',\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'repeatchargedays\' => \'1\',\n)',1,0,0,'wangzhanjieshao',''),(2,1,'content',1,0,1,'0,1',0,'2','关于我们','','','','about/','aboutus','/html/about/aboutus/',0,0,'array (\n \'ishtml\' => \'1\',\n \'template_list\' => \'default\',\n \'page_template\' => \'page\',\n \'meta_title\' => \'关于我们\',\n \'meta_keywords\' => \'关于我们\',\n \'meta_description\' => \'关于我们\',\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'repeatchargedays\' => \'1\',\n)',1,1,0,'guanyuwomen',''),(3,1,'content',1,0,1,'0,1',0,'3','联系方式','','','','about/','contactus','/html/about/contactus/',0,0,'array (\n \'ishtml\' => \'1\',\n \'template_list\' => \'default\',\n \'page_template\' => \'page\',\n \'meta_title\' => \'联系方式\',\n \'meta_keywords\' => \'联系方式\',\n \'meta_description\' => \'联系方式\',\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'repeatchargedays\' => \'1\',\n)',2,1,0,'lianxifangshi',''),(4,1,'content',1,0,1,'0,1',0,'4','版权声明','','','','about/','copyright','http://test.phpcms.cn/index.php?m=content&c=index&a=lists&catid=4',0,0,'array (\n \'ishtml\' => \'0\',\n \'template_list\' => \'default\',\n \'page_template\' => \'page\',\n \'meta_title\' => \'版权声明\',\n \'meta_keywords\' => \'版权声明\',\n \'meta_description\' => \'版权声明\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'\',\n \'repeatchargedays\' => \'1\',\n)',3,1,0,'banquanshengming',''),(5,1,'content',1,0,1,'0,1',0,'5','招聘信息','','','','about/','hr','/html/about/hr/',0,0,'array (\n \'ishtml\' => \'1\',\n \'template_list\' => \'default\',\n \'page_template\' => \'page\',\n \'meta_title\' => \'\',\n \'meta_keywords\' => \'\',\n \'meta_description\' => \'\',\n \'category_ruleid\' => \'1\',\n \'show_ruleid\' => \'\',\n \'repeatchargedays\' => \'1\',\n)',4,1,0,'zhaopinxinxi',''),(6,1,'content',0,1,0,'0',0,'6','国内','','','','','guonei','',5,0,'array (\n \'workflowid\' => \'\',\n \'ishtml\' => \'0\',\n \'content_ishtml\' => \'0\',\n \'create_to_html_root\' => \'0\',\n \'template_list\' => \'default\',\n \'category_template\' => \'category\',\n \'list_template\' => \'list\',\n \'show_template\' => \'show\',\n \'meta_title\' => \'\',\n \'meta_keywords\' => \'\',\n \'meta_description\' => \'\',\n \'presentpoint\' => \'1\',\n \'defaultchargepoint\' => \'0\',\n \'paytype\' => \'0\',\n \'repeatchargedays\' => \'1\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'16\',\n)',1,1,0,'guonei',''),(7,1,'content',0,2,0,'0',0,'7','下载','','','','','down','',1,0,'array (\n \'workflowid\' => \'\',\n \'ishtml\' => \'0\',\n \'content_ishtml\' => \'0\',\n \'create_to_html_root\' => \'0\',\n \'template_list\' => \'default\',\n \'category_template\' => \'category_download\',\n \'list_template\' => \'list_download\',\n \'show_template\' => \'show_download\',\n \'meta_title\' => \'\',\n \'meta_keywords\' => \'\',\n \'meta_description\' => \'\',\n \'presentpoint\' => \'1\',\n \'defaultchargepoint\' => \'0\',\n \'paytype\' => \'0\',\n \'repeatchargedays\' => \'1\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'16\',\n)',2,1,0,'xiazai',''),(8,1,'content',0,3,0,'0',0,'8','图片','','','','','pps','',2,0,'array (\n \'workflowid\' => \'\',\n \'ishtml\' => \'0\',\n \'content_ishtml\' => \'0\',\n \'create_to_html_root\' => \'0\',\n \'template_list\' => \'default\',\n \'category_template\' => \'category_picture\',\n \'list_template\' => \'list_picture\',\n \'show_template\' => \'show_picture\',\n \'meta_title\' => \'\',\n \'meta_keywords\' => \'\',\n \'meta_description\' => \'\',\n \'presentpoint\' => \'1\',\n \'defaultchargepoint\' => \'0\',\n \'paytype\' => \'0\',\n \'repeatchargedays\' => \'1\',\n \'category_ruleid\' => \'6\',\n \'show_ruleid\' => \'16\',\n)',3,1,0,'tupian','');
/*!40000 ALTER TABLE `hc_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_category_priv`
--
DROP TABLE IF EXISTS `hc_category_priv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_category_priv` (
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`roleid` smallint(5) unsigned NOT NULL DEFAULT '0',
`is_admin` tinyint(1) unsigned NOT NULL DEFAULT '0',
`action` char(30) NOT NULL,
KEY `catid` (`catid`,`roleid`,`is_admin`,`action`),
KEY `siteid` (`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_category_priv`
--
LOCK TABLES `hc_category_priv` WRITE;
/*!40000 ALTER TABLE `hc_category_priv` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_category_priv` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_collection_content`
--
DROP TABLE IF EXISTS `hc_collection_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_collection_content` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nodeid` int(10) unsigned NOT NULL DEFAULT '0',
`siteid` mediumint(5) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`url` char(255) NOT NULL,
`title` char(100) NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (`id`),
KEY `nodeid` (`nodeid`,`siteid`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_collection_content`
--
LOCK TABLES `hc_collection_content` WRITE;
/*!40000 ALTER TABLE `hc_collection_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_collection_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_collection_history`
--
DROP TABLE IF EXISTS `hc_collection_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_collection_history` (
`md5` char(32) NOT NULL,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`md5`,`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_collection_history`
--
LOCK TABLES `hc_collection_history` WRITE;
/*!40000 ALTER TABLE `hc_collection_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_collection_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_collection_node`
--
DROP TABLE IF EXISTS `hc_collection_node`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_collection_node` (
`nodeid` smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`lastdate` int(10) unsigned NOT NULL DEFAULT '0',
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`sourcecharset` varchar(8) NOT NULL,
`sourcetype` tinyint(1) unsigned NOT NULL DEFAULT '0',
`urlpage` text NOT NULL,
`pagesize_start` tinyint(3) unsigned NOT NULL DEFAULT '0',
`pagesize_end` mediumint(8) unsigned NOT NULL DEFAULT '0',
`page_base` char(255) NOT NULL,
`par_num` tinyint(3) unsigned NOT NULL DEFAULT '1',
`url_contain` char(100) NOT NULL,
`url_except` char(100) NOT NULL,
`url_start` char(100) NOT NULL DEFAULT '',
`url_end` char(100) NOT NULL DEFAULT '',
`title_rule` char(100) NOT NULL,
`title_html_rule` text NOT NULL,
`author_rule` char(100) NOT NULL,
`author_html_rule` text NOT NULL,
`comeform_rule` char(100) NOT NULL,
`comeform_html_rule` text NOT NULL,
`time_rule` char(100) NOT NULL,
`time_html_rule` text NOT NULL,
`content_rule` char(100) NOT NULL,
`content_html_rule` text NOT NULL,
`content_page_start` char(100) NOT NULL,
`content_page_end` char(100) NOT NULL,
`content_page_rule` tinyint(1) unsigned NOT NULL DEFAULT '0',
`content_page` tinyint(1) unsigned NOT NULL DEFAULT '0',
`content_nextpage` char(100) NOT NULL,
`down_attachment` tinyint(1) unsigned NOT NULL DEFAULT '0',
`watermark` tinyint(1) unsigned NOT NULL DEFAULT '0',
`coll_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
`customize_config` text NOT NULL,
PRIMARY KEY (`nodeid`),
KEY `siteid` (`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_collection_node`
--
LOCK TABLES `hc_collection_node` WRITE;
/*!40000 ALTER TABLE `hc_collection_node` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_collection_node` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_collection_program`
--
DROP TABLE IF EXISTS `hc_collection_program`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_collection_program` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`nodeid` int(10) unsigned NOT NULL DEFAULT '0',
`modelid` mediumint(6) unsigned NOT NULL DEFAULT '0',
`catid` int(10) unsigned NOT NULL DEFAULT '0',
`config` text NOT NULL,
PRIMARY KEY (`id`),
KEY `siteid` (`siteid`),
KEY `nodeid` (`nodeid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_collection_program`
--
LOCK TABLES `hc_collection_program` WRITE;
/*!40000 ALTER TABLE `hc_collection_program` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_collection_program` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_comment`
--
DROP TABLE IF EXISTS `hc_comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_comment` (
`commentid` char(30) NOT NULL,
`siteid` smallint(5) NOT NULL DEFAULT '0',
`title` char(255) NOT NULL,
`url` char(255) NOT NULL,
`total` int(8) unsigned DEFAULT '0',
`square` mediumint(8) unsigned DEFAULT '0',
`anti` mediumint(8) unsigned DEFAULT '0',
`neutral` mediumint(8) unsigned DEFAULT '0',
`display_type` tinyint(1) DEFAULT '0',
`tableid` mediumint(8) unsigned DEFAULT '0',
`lastupdate` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`commentid`),
KEY `lastupdate` (`lastupdate`),
KEY `siteid` (`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_comment`
--
LOCK TABLES `hc_comment` WRITE;
/*!40000 ALTER TABLE `hc_comment` DISABLE KEYS */;
INSERT INTO `hc_comment` VALUES ('content_6-1-1',1,'sdfsdf','http://www.hc.com/index.php?m=content&c=index&a=show&catid=6&id=1',0,0,0,0,0,1,1428916792);
/*!40000 ALTER TABLE `hc_comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_comment_check`
--
DROP TABLE IF EXISTS `hc_comment_check`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_comment_check` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`comment_data_id` int(10) DEFAULT '0' COMMENT '论评ID号',
`siteid` smallint(5) NOT NULL DEFAULT '0' COMMENT '站点ID',
`tableid` mediumint(8) DEFAULT '0' COMMENT '数据存储表ID',
PRIMARY KEY (`id`),
KEY `siteid` (`siteid`),
KEY `comment_data_id` (`comment_data_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_comment_check`
--
LOCK TABLES `hc_comment_check` WRITE;
/*!40000 ALTER TABLE `hc_comment_check` DISABLE KEYS */;
INSERT INTO `hc_comment_check` VALUES (1,1,1,1);
/*!40000 ALTER TABLE `hc_comment_check` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_comment_data_1`
--
DROP TABLE IF EXISTS `hc_comment_data_1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_comment_data_1` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '评论ID',
`commentid` char(30) NOT NULL DEFAULT '' COMMENT '评论ID号',
`siteid` smallint(5) NOT NULL DEFAULT '0' COMMENT '站点ID',
`userid` int(10) unsigned DEFAULT '0' COMMENT '用户ID',
`username` varchar(20) DEFAULT NULL COMMENT '用户名',
`creat_at` int(10) DEFAULT NULL COMMENT '发布时间',
`ip` varchar(15) DEFAULT NULL COMMENT '用户IP地址',
`status` tinyint(1) DEFAULT '0' COMMENT '评论状态{0:未审核,-1:未通过审核,1:通过审核}',
`content` text COMMENT '评论内容',
`direction` tinyint(1) DEFAULT '0' COMMENT '评论方向{0:无方向,1:正文,2:反方,3:中立}',
`support` mediumint(8) unsigned DEFAULT '0' COMMENT '支持数',
`reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为回复',
PRIMARY KEY (`id`),
KEY `commentid` (`commentid`),
KEY `direction` (`direction`),
KEY `siteid` (`siteid`),
KEY `support` (`support`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_comment_data_1`
--
LOCK TABLES `hc_comment_data_1` WRITE;
/*!40000 ALTER TABLE `hc_comment_data_1` DISABLE KEYS */;
INSERT INTO `hc_comment_data_1` VALUES (1,'content_6-1-1',1,1,'linzq0507',1428916792,'127.0.0.1',0,'sdfffff',0,0,0);
/*!40000 ALTER TABLE `hc_comment_data_1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_comment_setting`
--
DROP TABLE IF EXISTS `hc_comment_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_comment_setting` (
`siteid` smallint(5) NOT NULL DEFAULT '0' COMMENT '站点ID',
`guest` tinyint(1) DEFAULT '0' COMMENT '是否允许游客评论',
`check` tinyint(1) DEFAULT '0' COMMENT '是否需要审核',
`code` tinyint(1) DEFAULT '0' COMMENT '是否开启验证码',
`add_point` tinyint(3) unsigned DEFAULT '0' COMMENT '添加的积分数',
`del_point` tinyint(3) unsigned DEFAULT '0' COMMENT '扣除的积分数',
PRIMARY KEY (`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_comment_setting`
--
LOCK TABLES `hc_comment_setting` WRITE;
/*!40000 ALTER TABLE `hc_comment_setting` DISABLE KEYS */;
INSERT INTO `hc_comment_setting` VALUES (1,0,1,0,0,0);
/*!40000 ALTER TABLE `hc_comment_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_comment_table`
--
DROP TABLE IF EXISTS `hc_comment_table`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_comment_table` (
`tableid` mediumint(8) NOT NULL AUTO_INCREMENT COMMENT '表ID号',
`total` int(10) unsigned DEFAULT '0' COMMENT '数据总量',
`creat_at` int(10) DEFAULT '0' COMMENT '创建时间',
PRIMARY KEY (`tableid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_comment_table`
--
LOCK TABLES `hc_comment_table` WRITE;
/*!40000 ALTER TABLE `hc_comment_table` DISABLE KEYS */;
INSERT INTO `hc_comment_table` VALUES (1,1,0);
/*!40000 ALTER TABLE `hc_comment_table` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_content_check`
--
DROP TABLE IF EXISTS `hc_content_check`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_content_check` (
`checkid` char(15) NOT NULL,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` char(80) NOT NULL,
`username` char(20) NOT NULL,
`inputtime` int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
KEY `username` (`username`),
KEY `checkid` (`checkid`),
KEY `status` (`status`,`inputtime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_content_check`
--
LOCK TABLES `hc_content_check` WRITE;
/*!40000 ALTER TABLE `hc_content_check` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_content_check` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_copyfrom`
--
DROP TABLE IF EXISTS `hc_copyfrom`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_copyfrom` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`sitename` varchar(30) NOT NULL,
`siteurl` varchar(100) NOT NULL,
`thumb` varchar(100) NOT NULL,
`listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_copyfrom`
--
LOCK TABLES `hc_copyfrom` WRITE;
/*!40000 ALTER TABLE `hc_copyfrom` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_copyfrom` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_datacall`
--
DROP TABLE IF EXISTS `hc_datacall`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_datacall` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` char(40) DEFAULT NULL,
`dis_type` tinyint(1) unsigned DEFAULT '0',
`type` tinyint(1) DEFAULT '0',
`module` char(20) DEFAULT NULL,
`action` char(20) DEFAULT NULL,
`data` text,
`template` text,
`cache` mediumint(8) DEFAULT NULL,
`num` smallint(6) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_datacall`
--
LOCK TABLES `hc_datacall` WRITE;
/*!40000 ALTER TABLE `hc_datacall` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_datacall` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_dbsource`
--
DROP TABLE IF EXISTS `hc_dbsource`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_dbsource` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
`name` varchar(50) NOT NULL,
`host` varchar(20) NOT NULL,
`port` int(5) NOT NULL DEFAULT '3306',
`username` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`dbname` varchar(50) NOT NULL,
`dbtablepre` varchar(30) NOT NULL,
`charset` varchar(10) NOT NULL,
PRIMARY KEY (`id`),
KEY `siteid` (`siteid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_dbsource`
--
LOCK TABLES `hc_dbsource` WRITE;
/*!40000 ALTER TABLE `hc_dbsource` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_dbsource` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_download`
--
DROP TABLE IF EXISTS `hc_download`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_download` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`catid` smallint(5) unsigned NOT NULL DEFAULT '0',
`typeid` smallint(5) unsigned NOT NULL,
`title` char(80) NOT NULL DEFAULT '',
`style` char(24) NOT NULL DEFAULT '',
`thumb` varchar(100) NOT NULL DEFAULT '',
`keywords` char(40) NOT NULL DEFAULT '',
`description` char(255) NOT NULL DEFAULT '',
`posids` tinyint(1) unsigned NOT NULL DEFAULT '0',
`url` char(100) NOT NULL,
`listorder` tinyint(3) unsigned NOT NULL DEFAULT '0',
`status` tinyint(2) unsigned NOT NULL DEFAULT '1',
`sysadd` tinyint(1) unsigned NOT NULL DEFAULT '0',
`islink` tinyint(1) unsigned NOT NULL DEFAULT '0',
`username` char(20) NOT NULL,
`inputtime` int(10) unsigned NOT NULL DEFAULT '0',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0',
`systems` varchar(100) NOT NULL DEFAULT 'Win2000/WinXP/Win2003',
`copytype` varchar(15) NOT NULL DEFAULT '',
`language` varchar(10) NOT NULL DEFAULT '',
`classtype` varchar(20) NOT NULL DEFAULT '',
`version` varchar(20) NOT NULL DEFAULT '',
`filesize` varchar(10) NOT NULL DEFAULT 'Unkown',
`stars` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `status` (`status`,`listorder`,`id`),
KEY `listorder` (`catid`,`status`,`listorder`,`id`),
KEY `catid` (`catid`,`status`,`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_download`
--
LOCK TABLES `hc_download` WRITE;
/*!40000 ALTER TABLE `hc_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_download` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_download_data`
--
DROP TABLE IF EXISTS `hc_download_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_download_data` (
`id` mediumint(8) unsigned DEFAULT '0',
`content` text NOT NULL,
`readpoint` smallint(5) unsigned NOT NULL DEFAULT '0',
`groupids_view` varchar(100) NOT NULL,
`paginationtype` tinyint(1) NOT NULL,
`maxcharperpage` mediumint(6) NOT NULL,
`template` varchar(30) NOT NULL,
`paytype` tinyint(1) unsigned NOT NULL DEFAULT '0',
`relation` varchar(255) NOT NULL DEFAULT '',
`allow_comment` tinyint(1) unsigned NOT NULL DEFAULT '1',
`downfiles` mediumtext NOT NULL,
`downfile` varchar(255) NOT NULL DEFAULT '',
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_download_data`
--
LOCK TABLES `hc_download_data` WRITE;
/*!40000 ALTER TABLE `hc_download_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_download_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_downservers`
--
DROP TABLE IF EXISTS `hc_downservers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_downservers` (
`id` mediumint(8) NOT NULL AUTO_INCREMENT,
`sitename` varchar(100) DEFAULT NULL,
`siteurl` varchar(255) DEFAULT NULL,
`listorder` smallint(5) unsigned NOT NULL DEFAULT '0',
`siteid` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_downservers`
--
LOCK TABLES `hc_downservers` WRITE;
/*!40000 ALTER TABLE `hc_downservers` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_downservers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_extend_setting`
--
DROP TABLE IF EXISTS `hc_extend_setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_extend_setting` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`key` char(30) NOT NULL,
`data` mediumtext,
PRIMARY KEY (`id`),
KEY `key` (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hc_extend_setting`
--
LOCK TABLES `hc_extend_setting` WRITE;
/*!40000 ALTER TABLE `hc_extend_setting` DISABLE KEYS */;
/*!40000 ALTER TABLE `hc_extend_setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hc_favorite`
--
DROP TABLE IF EXISTS `hc_favorite`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hc_favorite` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`title` char(100) NOT NULL,