-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfapiatx9_www.sql
3147 lines (3055 loc) · 680 KB
/
fapiatx9_www.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
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50051
Source Host : localhost:3306
Source Database : fapiatx9_www
Target Server Type : MYSQL
Target Server Version : 50051
File Encoding : 65001
Date: 2016-05-12 17:04:47
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for www_access
-- ----------------------------
DROP TABLE IF EXISTS `www_access`;
CREATE TABLE `www_access` (
`role_id` smallint(6) unsigned NOT NULL default '0' COMMENT '角色id',
`app` varchar(20) NOT NULL default '' COMMENT '模块',
`controller` varchar(20) NOT NULL default '' COMMENT '控制器',
`action` varchar(20) NOT NULL default '' COMMENT '方法',
`status` tinyint(4) NOT NULL default '0' COMMENT '是否有效',
KEY `role_id` (`role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='角色权限表';
-- ----------------------------
-- Records of www_access
-- ----------------------------
-- ----------------------------
-- Table structure for www_addons
-- ----------------------------
DROP TABLE IF EXISTS `www_addons`;
CREATE TABLE `www_addons` (
`id` int(10) unsigned NOT NULL auto_increment COMMENT '主键',
`name` varchar(40) NOT NULL default '' COMMENT '插件名或标识,区分大小写',
`sign` varchar(255) NOT NULL default '' COMMENT '签名',
`title` varchar(20) NOT NULL default '' COMMENT '中文名',
`description` text COMMENT '插件描述',
`status` tinyint(1) NOT NULL default '1' COMMENT '状态 1-启用 0-禁用 -1-损坏',
`config` text COMMENT '配置 序列化存放',
`author` varchar(40) NOT NULL default '' COMMENT '作者',
`version` varchar(20) NOT NULL default '' COMMENT '版本号',
`create_time` int(10) unsigned NOT NULL default '0' COMMENT '安装时间',
`has_adminlist` tinyint(1) unsigned NOT NULL default '0' COMMENT '1-有后台列表 0-无后台列表',
PRIMARY KEY (`id`),
KEY `sign` (`sign`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='插件表';
-- ----------------------------
-- Records of www_addons
-- ----------------------------
-- ----------------------------
-- Table structure for www_admin_panel
-- ----------------------------
DROP TABLE IF EXISTS `www_admin_panel`;
CREATE TABLE `www_admin_panel` (
`mid` mediumint(8) unsigned NOT NULL default '0' COMMENT '菜单ID',
`userid` mediumint(8) unsigned NOT NULL default '0' COMMENT '用户ID',
`name` char(32) NOT NULL default '' COMMENT '菜单名',
`url` char(255) NOT NULL default '' COMMENT '菜单地址',
UNIQUE KEY `userid` (`mid`,`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='常用菜单';
-- ----------------------------
-- Records of www_admin_panel
-- ----------------------------
-- ----------------------------
-- Table structure for www_article
-- ----------------------------
DROP TABLE IF EXISTS `www_article`;
CREATE TABLE `www_article` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`catid` smallint(5) unsigned NOT NULL default '0',
`title` varchar(255) collate utf8_unicode_ci NOT NULL default '',
`style` char(24) collate utf8_unicode_ci NOT NULL default '',
`thumb` varchar(100) collate utf8_unicode_ci NOT NULL default '',
`keywords` varchar(128) collate utf8_unicode_ci NOT NULL default '',
`description` mediumtext collate utf8_unicode_ci,
`url` char(100) collate utf8_unicode_ci NOT NULL default '',
`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) collate utf8_unicode_ci NOT NULL default '',
`inputtime` int(10) unsigned NOT NULL default '0',
`updatetime` int(10) unsigned NOT NULL default '0',
`posid` tinyint(3) unsigned NOT NULL default '0',
`prefix` varchar(255) collate utf8_unicode_ci NOT NULL default '',
`tags` varchar(255) collate utf8_unicode_ci NOT NULL default '',
`views` int(11) NOT NULL default '0' COMMENT '点击总数',
`yesterdayviews` int(11) NOT NULL default '0' COMMENT '最日',
`dayviews` int(10) NOT NULL default '0' COMMENT '今日点击数',
`weekviews` int(10) NOT NULL default '0' COMMENT '本周访问数',
`monthviews` int(10) NOT NULL default '0' COMMENT '本月访问',
`viewsupdatetime` int(10) NOT NULL default '0' COMMENT '点击数更新时间',
PRIMARY KEY (`id`),
KEY `status` (`status`,`listorder`,`id`),
KEY `listorder` (`catid`,`status`,`listorder`,`id`),
KEY `catid` (`catid`,`weekviews`,`views`,`dayviews`,`monthviews`,`status`,`id`),
KEY `thumb` (`thumb`)
) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of www_article
-- ----------------------------
INSERT INTO `www_article` VALUES ('1', '21', '阿里封杀电商导购原因:分流淘宝 易被对手拉拢', '', '/d/160428/t0192f517982256c1c5.jpg', '电商,阿里巴巴,淘宝网,美丽说,马云', '写在前面的话:当阿里巴巴买百度关键字,封杀美丽说、蘑菇街之时,谁还曾记得,彼时,阿里还曾将美丽说、蘑菇街当作心头好。是什么原因使阿...', '/index.php?a=shows&catid=21&id=1', '0', '99', '1', '0', 'admin', '1371872761', '1371872761', '1', '', '马云', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('2', '21', '传网店将收5%营业税 淘宝卖家一年或缴税400亿', '', '/d/160428/t0192f517982256c1c5.jpg', '网店缴税,淘宝开店缴税,网店将收5%营业税', '山雨欲来风满楼。 5月30日,业界传出电商网店将被征收5%营业税的消息,在电商界犹如扔下了一颗原子弹。 日前,《每日经济新闻》记者就此事先后向国家工商总局市场司司长刘红亮、财政部财政科学研究所所长贾康、财政部财政科学研究所副所长刘尚希等求证,但或许基于话题', '/index.php?a=shows&catid=21&id=2', '0', '99', '1', '0', 'admin', '1371873012', '1371873012', '1', '', '淘宝', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('3', '21', '马云:菜鸟让我们对社会、未来有敬畏之心', '', '/d/160428/t0192f517982256c1c5.jpg', '马云,菜鸟,电子商务', '新浪科技讯 5月28日上午消息,由阿里巴巴集团牵头的物流项目中国智能骨干网(简称CSN)今日在深圳正式启动。马云在会上表示,这次出来并不是所谓的复出,而是为了实现四五年前的想法,只是今天选择了这个秀,今天的出台,是我们一代人的理想、梦想。 马云同时解释了为', '/index.php?a=shows&catid=21&id=3', '0', '99', '1', '0', 'admin', '1371873071', '1371873071', '1', '', '马云', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('4', '22', '为什么新浪微博广告屡遭骂名而豆瓣广告收获好评?', '', '/d/160428/t0192f517982256c1c5.jpg', '什么,新浪,微博,广告,屡遭,骂名,豆瓣,获好评,橘生,淮南,则为', '橘生淮南则为橘,生于淮北则为枳,这句话在社交网络的广告上同样适用。打开新浪微博和豆瓣,你会看到两种风格完全不同的广告,下面随便拿出一些对比。 前者为新浪微博上的推广广告,后者为豆瓣上的硬广推广。二者的差别?我想不用多做解释了吧。看了二者的广告,你可能', '/index.php?a=shows&catid=22&id=4', '0', '99', '1', '0', 'admin', '1371873289', '1371873289', '1', '', '新浪微博', '1', '0', '1', '1', '1', '1461664511');
INSERT INTO `www_article` VALUES ('5', '22', '大众点评网遭“黑”手:网页跳转至天猫', '', '/d/160428/t0192f517982256c1c5.jpg', '大众点评,大众点评被黑客攻击,网页跳转至天猫', '昨天凌晨,很多大众点评网的用户登录网站时发现无法打开网页,取而代之的是一个写着QQ号的弹窗,随后跳转至天猫页面,导致一些在点评网团购付款成功的用户订单延误。众多用户纷纷吐槽此次网站被黑事件,而QQ号指向的黑客helen则否认是其所为。', '/index.php?a=shows&catid=22&id=5', '0', '99', '1', '0', 'admin', '1371874073', '1371874073', '1', '', '大众点评', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('6', '22', '狗狗搜索宣布关站 版权问题难解', '', '/d/160428/t0192f517982256c1c5.jpg', '狗狗搜索,宣布关站,版权问题', '【搜狐IT消息】(小蕊)5月2日消息,狗狗搜索今日宣布暂停gougou.com网站服务,具体原因未知,版权问题恐怕依旧是难解之痛。 狗狗搜索是提供影视剧、电子书、软件、音乐下载的搜索引擎,2004年由李学凌创办,曾获得雷军100万人民币投资,2007年被卖给迅雷。', '/index.php?a=shows&catid=22&id=6', '0', '99', '1', '0', 'admin', '1371874160', '1371874160', '1', '', '狗狗搜索 迅雷', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('7', '22', '反击易迅 京东欲推一日四送', '', '/d/160428/t0192f517982256c1c5.jpg', '易迅 京东 一日四送', '一日四送 极速达一日四送服务,将实现三个小时商品送达,比之前的211限时达快出两倍 一日三送 早上订单在下午2时之前送达,中午订单在晚上6时之前送达,晚间订单在晚上10时之前送达 继价格战后,一对电商 冤家对头京东和易迅又将竞争的焦点对准到了物流速度上。', '/index.php?a=shows&catid=22&id=7', '0', '99', '1', '0', 'admin', '1371874216', '1371874216', '1', '', '易迅 京东', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('8', '16', '仿数字尾巴官网进度条jquery焦点图效果', '', '/d/160428/t0192f517982256c1c5.jpg', '进度条焦点图,时间轴焦点图,jquery焦点图,jquery插件', '仿数字尾巴官网进度条jquery焦点图效果 效果描述:jquery焦点图插件,带索引按钮,带进度条时间轴,支持自动切换,带入淡出的切换效果', '/index.php?a=shows&catid=16&id=8', '0', '99', '1', '0', 'admin', '1371875986', '1371875986', '0', '', 'jQuery', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('9', '16', 'jquery前后图片预览焦点图效果', '', '/d/160428/t0192f517982256c1c5.jpg', 'jquery焦点图,左右滚动幻灯片,前后图片预览焦点图,jquery插件', 'jquery前后图片预览焦点图效果 效果描述:jquery焦点图效果,鼠标经过左右两边半透明部分显示左右箭头,点击左右滚动切换,支持自动切换!', '/index.php?a=shows&catid=16&id=9', '0', '99', '1', '0', 'admin', '1371876048', '1371876048', '0', '', 'jQuery', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('10', '16', 'jquery全屏左右预览焦点图代码', '', '/d/160428/t0192f517982256c1c5.jpg', '全屏焦点图,jquery幻灯片,左右箭头焦点图,jquery焦点图', 'jquery全屏左右预览焦点图代码 效果描述:jquery全屏焦点图,带图片前后图片预览效果,鼠标经过左右两边半透明部分显示左右箭头,带索引按钮,支持自动切换!', '/index.php?a=shows&catid=16&id=10', '0', '99', '1', '0', 'admin', '1371876121', '1371876121', '1', '', 'jQuery', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('11', '17', 'zTree 一款基于jquery的超强树形菜单', '', '/d/160428/t0192f517982256c1c5.jpg', 'zTree,树形菜单,树状菜单,jquery树形菜单', 'zTree 一款基于jquery的超强树形菜单,支持无限级别扩展,含API说明!下面是 v3.5.12 的修改记录: * 【修改】由于 jquery 1.9 ...', '/index.php?a=shows&catid=17&id=11', '0', '99', '1', '0', 'admin', '1371876998', '1371876998', '0', '', 'zTree', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('16', '10', '初学必看:html+css小总结', '', '/d/160428/t0192f517982256c1c5.jpg', 'html+css小总结,html+css教程,div+css', '初学必看:html+css小总结经验教程!', '/index.php?a=shows&catid=10&id=16', '0', '99', '1', '0', 'admin', '1371881631', '1371881631', '0', '', '新浪微博', '1', '0', '1', '1', '1', '1403154346');
INSERT INTO `www_article` VALUES ('17', '10', '针对IE版本的if表达式', '', '/d/160428/t0192f517982256c1c5.jpg', '针对,版本,表达式,TML,注释,格式,HTML,做了,一些', 'TML 的注释格式是 , IE 对HTML注释做了一些扩展,使之可以支持条件判断表达式,如何让静态HTML代码在不同IE版本显示不同内容?和编程...', '/index.php?a=shows&catid=10&id=17', '0', '99', '1', '0', 'admin', '1371881683', '1371881683', '0', '', 'jQuery', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('18', '10', '关于input标签的一些小知识和技巧', '', '/d/160428/t0192f517982256c1c5.jpg', '关于,input,标签,些小,知识,技巧,分享,一些,常用,限制,input,', '分享一些常用限制input的方法,可能里面也有一些你需要用的,可能也有一些你值得学习的!1.取消按钮按下时的虚线框,在input里添加属性值 h...', '/index.php?a=shows&catid=10&id=18', '0', '99', '1', '0', 'admin', '1371881732', '1371881732', '0', '', '新浪微博', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('19', '10', '5种实现页面跳转到指定的地址的方法', '', '/d/160428/t0192f517982256c1c5.jpg', 'JS实现页面跳转,html实现页面跳转,实现页面跳转的方法', '下面列了五个例子来详细说明,这几个例子的主要功能是:在5秒后,自动跳转到同目录下的hello.html(根据自己需要自行修改)文件。1) html...', '/index.php?a=shows&catid=10&id=19', '0', '99', '1', '0', 'admin', '1371881773', '1371881773', '0', '', 'jQuery', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('20', '10', 'html注释条件语句!--[if IE]...![endif]--使用详细介绍', '', '/d/160428/t0192f517982256c1c5.jpg', 'html注释语句,条件注释,html教程,[if IE]', '代码如下: 用上面这段代码,只有使用IE时加载97zzw...', '/index.php?a=shows&catid=10&id=20', '0', '99', '1', '0', 'admin', '1371881819', '1371881819', '0', '', '新浪微博', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('25', '10', 'Nofollow标签是什么意思', '', '/d/160428/t0192f517982256c1c5.jpg', 'Nofollow,html标签,html教程,什么是Nofollow', 'nofollow 是一个HTML标签的属性值。这个标签的意义是告诉搜索引擎"不要追踪此网页上的链接"或"不要追踪此特定链接。 nofollow简介 n...', '/index.php?a=shows&catid=10&id=25', '0', '99', '1', '0', 'admin', '1371886048', '1371886048', '0', '', 'jQuery', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('21', '11', 'DreamWeaver文件保存时提示"发生共享违例"问题分析及解决方法', '', '/d/160428/t0192f517982256c1c5.jpg', '文件保存,共享违例,dreamweaver', '问题产生描述:DreamWeaver文件保存时,提示这样的问题"发生共享违例",具体如图:修改HTML文件后,就是保存不了,一保存就提示"路径+时发...', '/index.php?a=shows&catid=11&id=21', '0', '99', '1', '0', 'admin', '1371881885', '1371881885', '0', '', 'dreamweaver', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('22', '11', 'DreamWeaver中如何批量删除超级链接', '', '/d/160428/t0192f517982256c1c5.jpg', 'DreamWeaver,如何,批量,删除,超级链接,问题,提', '问题提出:在线问答网友提问,请问专家DreamWeaver 8中如何批量删除超级链接? 电脑软硬件应用网回答:解决办法,依次打开DreamWeaver...', '/index.php?a=shows&catid=11&id=22', '0', '99', '1', '0', 'admin', '1371881942', '1371881942', '0', '', 'DreamWeaver', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('23', '12', '分享前端开发JavaScript中常用的使用小技巧语句', '', '/d/160428/t0192f517982256c1c5.jpg', 'JavaScript语句,js技巧,前端开发,js教程,js常用语句', '前面我们分享过前端小技巧和JavaScript刷新页面及框架,里面也时不时的提到JavaScript。收集了一些JavaScript小技巧脚本代码。JavaScript是...', '/index.php?a=shows&catid=12&id=23', '0', '99', '1', '0', 'admin', '1371882423', '1371882423', '0', '', '新浪微博', '0', '0', '0', '0', '0', '0');
INSERT INTO `www_article` VALUES ('24', '14', 'PS结合AI制作钢铁侠面具模型教程', '', '/d/160428/t0192f517982256c1c5.jpg', 'PS教程,PS打造钢铁侠面具,PS结合AI教程,ps实例', '教程虽然用到AI,不过绘制的仅是线稿及简单的色块,没有这款软件的完全可以在PS中完成。面具构造并不复杂,不过质感部分刻画比较麻烦,想省...', '/index.php?a=shows&catid=14&id=24', '0', '99', '1', '0', 'admin', '1371882593', '1371882593', '0', '', '新浪微博', '2', '0', '1', '1', '1', '1435332393');
INSERT INTO `www_article` VALUES ('29', '10', '5种实现页面跳转到指定的地址的方法', '', '/d/160428/t0192f517982256c1c5.jpg', 'JS实现页面跳转,html实现页面跳转,实现页面跳转的方法', '下面列了五个例子来详细说明,这几个例子的主要功能是:在5秒后,自动跳转到同目录下的hello.html(根据自己需要自行修改)文件。1) html...', '/index.php?a=shows&catid=10&id=29', '0', '99', '1', '0', 'admin', '1371907845', '1371907845', '0', '', '新浪微博', '1', '0', '1', '1', '1', '1461819041');
INSERT INTO `www_article` VALUES ('30', '10', 'alt属性和title属性的区别与介绍', '', '/d/160428/t0192f517982256c1c5.jpg', 'alt,属性,title,性的,区别,介绍,alt,属性', 'alt属性 为不能显示图像、窗体或applets的用户代理(UA),alt属性用来指定替换文字。替换文字的语言由lang属性指定。来源:How to...', '/index.php?a=shows&catid=10&id=30', '0', '99', '1', '0', 'admin', '1371907945', '1371907945', '0', '', '新浪微博', '27', '0', '27', '27', '27', '1462867744');
INSERT INTO `www_article` VALUES ('34', '24', 'Digital Atelier创意网站开发工作室网站欣赏', '', '/d/160428/t0192f517982256c1c5.jpg', 'Digital Atelier,jquery酷站,国外酷站,交互设计酷站', 'Digital studio focused on web, mobile and facebook development', '/index.php?a=shows&catid=24&id=34', '0', '99', '1', '0', 'admin', '1371910261', '1371910261', '0', '', '新浪微博', '1', '0', '1', '1', '1', '1435332417');
INSERT INTO `www_article` VALUES ('35', '25', '26款以云为设计元素的logo欣赏', '', '/d/160428/t0192f517982256c1c5.jpg', '26款以云为设计元素的logo欣赏,云,logo,logo欣赏', '26款以云为设计元素的logo欣赏 logo数量:26款 logo所属分类:生活', '/index.php?a=shows&catid=25&id=35', '0', '99', '1', '0', 'admin', '1371910364', '1371910364', '0', '', '新浪微博', '17', '0', '9', '10', '10', '1462960074');
-- ----------------------------
-- Table structure for www_article_data
-- ----------------------------
DROP TABLE IF EXISTS `www_article_data`;
CREATE TABLE `www_article_data` (
`id` mediumint(8) unsigned NOT NULL default '0',
`content` mediumtext collate utf8_unicode_ci,
`paginationtype` tinyint(1) NOT NULL default '0',
`maxcharperpage` mediumint(6) NOT NULL default '0',
`template` varchar(30) collate utf8_unicode_ci NOT NULL default '',
`paytype` tinyint(1) unsigned NOT NULL default '0',
`allow_comment` tinyint(1) unsigned NOT NULL default '1',
`relation` varchar(255) collate utf8_unicode_ci NOT NULL default '',
`copyfrom` varchar(255) collate utf8_unicode_ci NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of www_article_data
-- ----------------------------
INSERT INTO `www_article_data` VALUES ('1', '<p style=\"text-align:center\"><img border=\"0\" class=\"flag_bigP\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c51df81df14.jpg\" style=\"border:1px solid #999999;max-width:680px;display:inline-block;\" /></p><p style=\"text-indent:2em;\">写在前面的话:当阿里巴巴买百度关键字,封杀美丽说、蘑菇街之时,谁还曾记得,彼时,阿里还曾将美丽说、蘑菇街当作心头好。是什么原因使阿里巴巴与他们反目?中间又隐藏了哪些腥风血雨抑或诡秘不为人知的纠纷?</p><p style=\"text-indent:2em;\">本文作者铁手观点如下:1,美丽说们最初小,而且能为淘宝带来交易量,所以被淘宝扶植。2,后来,他们长大了,开始分流淘宝用户和商家,淘宝难控制。3,更重要的是,美丽说们被反淘宝的百度、腾讯拉拢,特别是腾讯入股美丽说。4,美丽说们每月花数百万在新浪微博营销,阿里入股新浪微博也可以打击这些已变节的电商导购网站。5,当然,美丽说和蘑菇街也在自救,但能不能自救成功很难讲。(以上,by林丰蕾)</p><p style=\"text-indent:2em;\">文/铁手(搜狐IT独家特约作者)</p><p style=\"text-indent:2em;\">电商导购的末日是否已经来临?</p><p style=\"text-indent:2em;\">阿里巴巴入股新浪微博不到一个月内,与百度重修于好,并对导购网站蘑菇街、美丽说进行封杀、打压。</p><p style=\"text-indent:2em;\">据了解,阿里巴巴日前与百度达成一项2亿元的框架合作协议,通过百度搜索“男装”、“女装”等商品品类名称后,可以看到淘宝的推广链接,这是阿里巴巴自2008年停止投放百度广告后双方第一次恢复正常商业合作。除了推广链接外,在百度搜索蘑菇街或美丽说的关键词时,第一条也显示出淘宝的关键词推广。而在百度与阿里巴巴达成合作之前,蘑菇街与美丽说从百度获得了大量流量。</p><p style=\"text-indent:2em;\">此前业内也曾传出消息称,2012年中,马云曾在内部下达指示:一、阿里不能继续扶持蘑菇街、美丽说壮大;二、应该多做异业合作,少做同业合作。马云在内部的这一表达被外界解读为阿里巴巴对电商导购类网站的态度产生变化,由过去的扶持改为打压。不过由于电商导购类网站当时仍为淘宝带来巨大流量,因此打压的态势也主要通过私下运作,阿里巴巴方面甚至官方否认打压一说。</p><p style=\"text-indent:2em;\">不过,随着阿里巴巴入股新浪微博的成功,电商导购类网站对阿里巴巴的负面作用已经越发明显,凭借新浪微博的巨大流量,阿里巴巴方面已经可以不再依靠电商导购类网站,因此下重手也在情理之中。</p><p style=\"text-indent:2em;\">令阿里巴巴对蘑菇街、美丽说由扶持转变为打压的主要原因是,早期这类网站为淘宝带来了大量交易额和流量,淘宝推出淘宝客功能之后,两家凭借自身拥有的海量用户,刺激了淘宝的交易量。彼时淘宝高层认为蘑菇街、美丽说这种产品是淘宝的有益补充,淘宝自身不具备社交属性,而蘑菇街、美丽说则弥补了淘宝的这一缺陷。</p><p style=\"text-indent:2em;\">最火热的时候,蘑菇街、美丽说高层与淘宝高层几乎每周都有见面讨论未来的发展方向。不过这种好景没有持续太长时间。</p><p style=\"text-indent:2em;\">随着蘑菇街、美丽说的发展壮大,开始成为不依附于淘宝的第二股电商力量,并分流了淘宝的大量用户与商家,这导致马云对此产生警惕。而且除VC机构外,百度、腾讯曾经多次与蘑菇街、美丽说洽谈入股事宜。得知这些消息后的马云才于2012年中告诫高层需要打压此类网站。</p><p style=\"text-indent:2em;\">另一方面,脱离淘宝掌控的蘑菇街、美丽说也成为互联网上各种反淘宝力量拉拢的对象,例如美丽说就在D轮融资中引入了腾讯投资。</p><p style=\"text-indent:2em;\">阿里巴巴的思路是,自己不善于社交产品,电商导购类又需要依附自己,因此是淘宝的补充产品。但两家壮大之后反而养虎为患,因此又不得不打压这类网站并寻找新的社交突破口,而新浪微博正是这个时候开始被阿里巴巴所看重。</p><p style=\"text-indent:2em;\">未经证实的数据显示,新浪微博是蘑菇街、美丽说类网站两个主要用户来源中的一个,蘑菇街每月对新浪微博的投入在数十万至数百万不等,美丽说更是曾经投掷千万级广告费用在新浪微博的营销上来获取新用户。</p><p style=\"text-indent:2em;\">对看到这一情形的阿里巴巴,入股新浪微博既可以弥补自身社交软肋,又可以打击已变节的电商导购网站。</p><p style=\"text-indent:2em;\">当然,随着阿里巴巴态度的变化,电商导购类网站也并非坐以待毙,蘑菇街目前正在筹备转型,并计划自建商城。这一计划被媒体曝光后,蘑菇街为了掩人耳目,以这是团购项目引起了外界误解为由作为回复。但据我们了解,蘑菇街筹建商城的计划已经经过多次讨论,这家导购网站今年制定的重要KPI之一就是摆脱淘宝能够获得独立的生存空间。</p><p style=\"text-indent:2em;\">另一方面,美丽说虽然在业务转型上比蘑菇街迟缓,但该公司在D轮融资中获得了来自腾讯的巨额融资,通过捆绑腾讯,美丽说也计划脱离淘宝争取独立生存空间。另有信息显示,美丽说2011年已经邀请百度销售总监杜郭伟加盟担任销售副总裁,组建独立销售团队销售广告,或许是美丽说对抗淘宝打压的破解之道。</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('2', '<p style=\"text-align:center\"><img border=\"0\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c51ef3aaeca.jpg\" style=\"border:1px solid #999999;max-width:680px;display:inline-block;\" /></p><p style=\"text-indent:2em;\">山雨欲来风满楼。</p><p style=\"text-indent:2em;\">5月30日,业界传出电商网店将被征收5%营业税的消息,在电商界犹如扔下了一颗原子弹。</p><p style=\"text-indent:2em;\">日前,《每日经济新闻》记者就此事先后向国家工商总局市场司司长刘红亮、财政部财政科学研究所所长贾康、财政部财政科学研究所副所长刘尚希等求证,但或许基于话题本身的敏感性,上述人士基本以“不知情”回应。</p><p style=\"text-indent:2em;\">如果传闻为真,阿里巴巴生态中的C2C系将可能成为征税重点区。</p><p style=\"text-indent:2em;\">年内开征可能性不大</p><p style=\"text-indent:2em;\">今年“两会”期间,苏宁云商董事长张近东以及湖南步步高商业连锁董事长王填呼吁对网店交易实施征税。</p><p style=\"text-indent:2em;\">张近东对此解释说,由于电商发展速度太快,相应的配套措施未能跟上,直接导致年交易量中约有一半游离于法律之外。同时,电子商务行业非注册经营、非税销售、假冒产品充斥……等现象的出现,给行业带来不公平的竞争环境,不利于行业健康持续发展。建议工商、质检等相关部门加大产品质量监管、保护知识产权、合理征税等方面的管理。</p><p style=\"text-indent:2em;\">一时间,网店征税话题在电商界,甚至社会上掀起了数场舌战。</p><p style=\"text-indent:2em;\">据相关媒体援引消息人士言论称,国内网店征税一事目前进入倒计时,相关部委已开始商讨具体收税措施,年内有可能正式向网店征收5%营业税。</p><p style=\"text-indent:2em;\">此前,有媒体披露,在今年3月于北京召开的一次秘密会议上,商务部和财政部向有电商投资经验的投资机构征询征收税款的具体操作方法。</p><p style=\"text-indent:2em;\">种种信号似乎都在暗示着网店征税进程势不可挡。</p><p style=\"text-indent:2em;\">近日,《每日经济新闻》记者就此事先后向国家工商总局市场司司长刘红亮、财政部财政科学研究所所长贾康、财政部财政科学研究所副所长刘尚希等求证,但或许基于话题本身的敏感性,上述相关人士基本以“不知情”作为回应。</p><p style=\"text-indent:2em;\">对此现象,有业内人士向记者分析称,这些人士闭口不谈此事,可能主要基于两个原因:一是征税事宜仍处于讨论中,目前在政府未公布此事之前,提前泄露消息不妥;另一个原因可能在于,网店征税事宜,在讨论中仍存在不同声音,具体的相关事宜仍有变数,因此也不方便评论。</p><p style=\"text-indent:2em;\">4月1日正式施行的 《网络发票管理办法》,曾被认为是向电商征税的前兆。</p><p style=\"text-indent:2em;\">4月15日,发改委、财政部等13个部门联合发布的 《关于进一步促进电子商务健康快速发展有关工作的通知》中也再次提到了电商征税。</p><p style=\"text-indent:2em;\">电子商务行业独立分析师李成东向记者表示,网店征税已经是一股不可阻挡的潮流,区别只是时间早一点或晚一点的问题。</p><p style=\"text-indent:2em;\">不过李成东指出,“估计国家不会在年内实施相关的政策,因为对网店征税,仍需要进行一段时间的调查、研究,听取社会意见,同时还需要试行、反馈等流程,待实验成熟后再全面推广。”</p><p style=\"text-indent:2em;\">一位在互联网上从事与税务行业相关工作的业内人士向 《每日经济新闻》记者表示,如果国家真的对网店征税,可能建立一个专门的网络税收监控中心,将税收综合征管系统、内部发票管理系统与网络交易平台对接,通过获得网店经营者真实的网上交易数据,可以实现对每笔交易都有据可查,从而将税款应收尽收。</p><p style=\"text-indent:2em;\">对B2C网站将是明显利好</p><p style=\"text-indent:2em;\">目前,我国电商网站中,主流的B2C网站如天猫、京东等,均为正常纳税平台。目前所提到的电商征税,主要对象是以淘宝上为数众多的中小C2C卖家为代表的群体。</p><p style=\"text-indent:2em;\">对此,业界出现了两种不同的观点,观点的背后主要是基于各自的利益考量。</p><p style=\"text-indent:2em;\">以线下传统零售卖家为主要业务的群体,基本赞同网店征税事宜,比如苏宁等。而以线上电商为主的电商公司,则持保留意见或不赞同此举。</p><p style=\"text-indent:2em;\">而另外一种观点认为,现在就对网店征税有点操之过急,目前应该“放水养鱼”,在大部分中小网店都具备了一定风险抵御能力后,再向他们征税。此外,也有人从社会就业的角度反对向网店征税。这种观点认为,大量的网店目前解决了相当一部分人的就业,在目前中国就业形势不乐观的背景下,向网店征税可能导致不少网店倒闭,从而减少这个领域对社会就业的消化能力。</p><p style=\"text-indent:2em;\">赞同者认为,如果长时间只对实体征税,而不对网店征税,可能最终导致实体店的大量倒闭。</p><p style=\"text-indent:2em;\">如果征税事宜落实,中国C2C领域的老大淘宝可能会成为重点区。</p><p style=\"text-indent:2em;\">数据显示,2012年淘宝、天猫实现交易额突破万亿,其中天猫成交额大致为2000亿元,保守估计淘宝交易额约为8000亿元左右。如果不计算减免征税的额度而粗略计算,以5%的额度征税,淘宝上的商家一年下来将因此增加近400亿元的税收成本。</p><p style=\"text-indent:2em;\">上述从事与税务行业相关工作的业内人士指出,如果国家对网店征税,会给淘宝及中小卖家带来一定的经营风险。“首先就是一些货源渠道不正规的店铺,如果要征税的话,他们首先得出具相关的发票,而一些店主很难做到这点;此外,目前还不明晰的是,对网店征税是否将追溯到第一笔订单产生的时间点,如果那样,很多网店赚的钱都不够交税。而一旦开始施行这一政策,对于苏宁等B2C网站而言,将是明显的利好”。</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('3', '<p style=\"text-align:center\"><img alt=\"0e08e28aace06cc1364967483672abc9\" border=\"0\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c51f2eefb83.jpg\" style=\"border:1px solid #999999;max-width:680px;display:inline-block;\" /></p><p style=\"text-indent:2em;\">新浪科技讯 5月28日上午消息,由阿里巴巴集团牵头的物流项目“中国智能骨干网”(简称CSN)今日在深圳正式启动。马云在会上表示,这次出来并不是所谓的复出,而是为了实现四五年前的想法,只是今天选择了这个秀,今天的出台,是我们一代人的理想、梦想。</p><p style=\"text-indent:2em;\">马云同时解释了为什么取名“菜鸟网络”,“为什么取菜鸟的名字?我刚刚做互联网的时候,很多人说我是一只菜鸟,但是正因为我们这批菜鸟,马化腾、李彦宏,所有这些菜鸟今天变成不一样的鸟,今天700万淘宝卖家,中国无数小的卖家,所有在网上做电子商务的都是菜鸟,只有菜鸟才能飞向千家万户。笨鸟先飞,飞了半天还是笨鸟,而菜鸟还有机会变成好 鸟。我们取这个名字不断提醒自己我们要为对社会有敬畏之心,对未来有敬畏之心,我们希望自己成为一只勤奋、努力、不断学习、对未来有敬畏、对昨天有感恩的鸟。”</p><p style=\"text-indent:2em;\">以下为马云演讲全文:</p><p style=\"text-indent:2em;\">我本来以为当了董事长以后就不需要再出来,但是没想到当董事长最主要职责就是出台和走秀。但是今天这个走秀是我期待了很多年的,这是一个我们阿里巴巴集团思考了4、5年一直希望建立的事,筹划了很久,但是很遗憾这个是在我不当CEO后才正式把这么大一个项目落地。</p><p style=\"text-indent:2em;\">4、5年来我们一直在思考一个问题,我们到底能为中国物流做什么?其实国家在整个物流建设上投入了几十万亿,但是效益并不是很高,随着电子商务高速发展,我们必须在中国提升整个国家社会的效益,生产制造、小企业,如何能够帮所有的货达天下、货运天下。</p><p style=\"text-indent:2em;\">今天中国物流高速发展离不开我们在座的三通一达,顺丰以及不在的所有物流公司的发展,我记得去年淘宝双十一节做了191亿,这是一个奇迹,但是更大奇迹居然在一天内运出7800万件包裹,这个数字背后是无数人把自己全家老小发动起来,把这些货送出去,没有让中国物流搞瘫。</p><p style=\"text-indent:2em;\">但是长此以往中国未来怎么解决这个问题,因为现在中国每天2500万包裹左右,十年后预计每年2亿包,今天中国的物流体系没有办法支撑未来2亿。所以我们有一个大胆设想通过建设中国智能骨干网,让全中国2000个城市在任何一个地方能够24小时,只要你上网购物,24小时货一定送到你们家,这是一个伟大的理想。</p><p style=\"text-indent:2em;\">四年来我们一直不敢下手,这个理想太大,没有人干过,甚至想都不敢想,我们觉得这是一个国家项目。我们去考察了日本、欧洲、美国,今天在欧洲、美国、日本都没有这样的先例,日本的物流发展非常好,美国物流发展也非常好,但是他们基于IT。</p><p style=\"text-indent:2em;\">在中国基于互联网、基于电子商务,如何把国家已经投下的基础设施能够发挥作用,如何能够把今天全中国100多万快递人员能够支撑未来再增加的1000万快递人员。从小的来讲,我希望更多的快递人员有尊严,这是一个很好的工作,我希望中国的物流、中国的效率,大家知道中国整个GDP中18%来自物流。但是发达国家在12%,这6个点如果降下来对整个国家经济效益是非常高。</p><p style=\"text-indent:2em;\">这是一个理想主义项目,这个项目我们不是一年两年做出来,而是准备花十年时间,淘宝花了十年,支付宝花了9年,阿里巴巴花了14年,任何一个有理想色彩的公司必须花十年才能做下来。所以我特别高兴。</p><p style=\"text-indent:2em;\">我跟快递公司交流过程中,这张网络起来,我们不会抢快递公司的生意,阿里巴巴永远不会做快递,因为我们没有这个能力,我们相信中国有很多快递公司做快递可以做得比我们好。但是这个物流网起来可能会影响所有快递公司以后的商业模式,以前我们认为对的东西可能不对了,因为它完全基于互联网思考。</p><p style=\"text-indent:2em;\">所以这是我们希望做的,是人们没有做过的。直到今天为止到底是什么产品、方向怎么样、模式怎么样,一直争论不休,但是我们不争论的是这是一个理想主义项目,不仅仅对我们有影响,最主要对社会有影响,对十年以后消费有巨大影响。这是我的看法。</p><p style=\"text-indent:2em;\">为什么取菜鸟的名字?我刚刚做互联网的时候,很多人说我是一只菜鸟,但是正因为我们这批菜鸟,马化腾、李彦宏,所有这些菜鸟今天变成不一样的鸟,今天700万淘宝卖家,中国无数小的卖家,所有在网上做电子商务的都是菜鸟,只有菜鸟才能飞向千家万户。笨鸟先飞,飞了半天还是笨鸟,而菜鸟还有机会变成好鸟。我们取这个名字不断提醒自己我们要为对社会有敬畏之心,对未来有敬畏之心,我们希望自己成为一只勤奋、努力、不断学习、对未来有敬畏、对昨天有感恩的鸟。</p><p style=\"text-indent:2em;\">我们希望通过1000、2000亿的投资能够翘动几十万亿中国已经有的基础设施,能够把国家基础设施发挥出效应。让我们高速公路、机场、码头充分利用,承担起本来应该有的责任。昨天在股东会上讲也许十年里我们失败,谁都不能保证你一定不失败。但是万一被我们搞成了,我觉得今生无悔,终于作为民营企业参与国家基础设施的投资和建设。这是划时代意义。一直以来基础设施是国有企业做,今天我们这些民营企业联合起来希望为这个时代、为这个社会做,今天我们也看到很多国有企业,很多大型企业,像中国人寿、中信,很多金融机构对我们展示出了巨大信心和支持,在这儿表示衷心感谢,后面加入的企业会越来越多,因为这不是为一家企业做,这是为一个时代做。</p><p style=\"text-indent:2em;\">再次谢谢大家,我还是做董事长,网上说我复出了,做社会化物流不是今天的想法,而是四五年前的想法,只是今天选择了这个秀、今天的出台,这是我们一代人的理想、梦想,谢谢大家!</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('4', '<p style=\"text-indent:2em;\">橘生淮南则为橘,生于淮北则为枳,这句话在社交网络的广告上同样适用。打开新浪微博和豆瓣,你会看到两种风格完全不同的广告,下面随便拿出一些对比。</p><p><br/></p><p><img border=\"0\" height=\"427\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c52009459ad.jpg\" width=\"520\" style=\"border:1px solid #999999;max-width:680px;display:block;margin-left:auto;margin-right:auto;\" /></p><p style=\"text-indent:2em;\">前者为新浪微博上的推广广告,后者为豆瓣上的硬广推广。二者的差别?我想不用多做解释了吧。看了二者的广告,你可能会顿生感慨:在新浪微博这个粗暴发展的地方,连广告也是粗暴的,而在豆瓣这个文艺的地方,连广告也是文艺的。</p><p style=\"text-indent:2em;\">作为一个公关人,虽然我对新浪微博的广告持理解态度,但偶尔也会对它的推广感到反感,比如上面那个淘宝广告,这广告真的是对我——一名男士的精准投放吗?与新浪微博广告相比,豆瓣的广告并不惹人反感,相反,有时候还很讨人喜欢。这不只是我一个人的体验,很多身边经常上豆瓣的人,也多表示没有受到豆瓣广告的什么干扰。</p><p style=\"text-indent:2em;\">那么为什么豆瓣的广告很少有人否定,而新浪微博广告却一直背负骂名呢?</p><p style=\"text-indent:2em;\">粗暴的新浪微博广告与精准的豆瓣广告</p><p style=\"text-indent:2em;\">新浪微博的主要广告类别有微博顶部广告、底部广告、侧栏广告等形式,其中最粗暴的是微博推广(包括粉丝通和橱窗硬广广告),如果说顶部、底部和侧栏广告还类似于电视剧开播前的广告的话,那微博推广就像是直接在电视剧中插播广告了,话说现在电视剧都不在播放途中插播广告了,而微博却反其道而行之,这种“粗暴插播”的广告形式,严重影响了用户体验,遭来骂名也是必然的。</p><p style=\"text-indent:2em;\">豆瓣的广告与微博差别显著,它的主要类别有豆瓣读书右侧的电商购买网站(如亚马逊、当当等),豆瓣电影关联的在线选座购票链接(其中有各大电影院的电影票网上购买),豆瓣同城中的活动购票链接(包括演唱会、沙龙等),以及豆瓣电台中的广播广告和各个页面的硬广推广等。</p><p style=\"text-indent:2em;\">这其中前三种(豆瓣图书、电影、同城中的购买链接)广告形式,丝毫不会影响用户的体验,相反,它们通过这种形式,使想购买产品的人快捷方便地找到产品的购买链接并完成购买,有效地提升了用户的体验。</p><p style=\"text-indent:2em;\">豆瓣电台中的广播广告是相对比较硬的广告,它类似于收音机中的插播广告。但有三点决定用户并不会对这种广告耿耿于怀。第一是用户在收听豆瓣电台的30分钟内不会听到广告,这基本上是可以让部分用户接受的时间。第二是付费用户(每月10元)可以收听它的高音质+无广告版。第三是豆瓣电台是个优秀的产品,它推荐音乐的精准度是非常高的,以听点广告的代价,换来豆瓣电台精准的音乐推荐服务,这对大多数人来说是一个划算的买卖。</p><p style=\"text-indent:2em;\">豆瓣的硬广推广可能是所有广告形式中最硬的,相对来说也是对用户影响最大的。但它与新浪微博硬广不同的地方有两点。第一是广告统一置于页面的右上侧,这使得豆瓣的页面看起来至少是整洁的。第二是广告的整体风格清新、文艺,总体符合豆瓣的调性,基本上毫无违和感。看了豆瓣广告,再看新浪微博广告,会让人感觉是从设计精致的商场来到了卖地摊货的地下通道。豆瓣硬广的这两个特点使其并没有受到用户的大面积反感,相反不少用户还对这些广告称赞有加。</p><p style=\"text-indent:2em;\">新浪微博广告与豆瓣广告对比</p><p style=\"text-indent:2em;\">名称形式广告位特点</p><p style=\"text-indent:2em;\">新浪微博广告页面硬广+微博推广多处粗暴展示+插入</p><p style=\"text-indent:2em;\">豆瓣广告页面硬广+购买链接+电台硬广统一置于右侧温和展示+需要时提供</p><p style=\"text-indent:2em;\">通过以上分析可以发现豆瓣广告与新浪微博广告最大的差别有两个,其一为二者属性不同,豆瓣广告是在需要时提供,而新浪微博广告是强行提供,有人可能要说在大数据时代,精准广告推送是未来的趋势,但不管未来怎样,现在新浪微博的广告完全谈不上精准;其二为二者的视觉效果不同,豆瓣广告形式整洁、有序、文艺,符合豆瓣调性,而新浪微博广告杂乱、无序,不一定符合新浪微博调性。</p><p style=\"text-indent:2em;\">所以总体来说,新浪微博是在用传统广告的思维做广告,而豆瓣是在用社会化广告的思维做广告(关于此点可以参看之前的文章《像做产品一样做广告》。</p><p style=\"text-indent:2em;\">新浪微博广告应将步伐放慢一点</p><p style=\"text-indent:2em;\">吴军曾在《浪潮之巅》中提出一个适用互联网公司的基因决定论,豆瓣广告之所以与新浪微博广告差别明显,本质上也是因为二者基因不同,豆瓣是一家拥有文艺范的慢公司,而新浪是一家拥有媒体属性的快公司。</p><p style=\"text-indent:2em;\">豆瓣这一拥有8年多历史的公司,<span style=\"color:#222222;font-size:14px;line-height:26px;text-indent:28px;background-color:#ffffff;\"></span>仅仅在3年前才推出了展示类广告,从这不难看出豆瓣对用户体验的极端重视,它不会像新浪微博那样因为急于盈利而在许多方面忽视用户的体验。广告门在对于豆瓣的一篇报道中写道:豆瓣对广告客户有着坚持——要用豆瓣的语言与用户交流。</p><p style=\"text-indent:2em;\">慢基因决定了豆瓣对于广告客户的苛求,决定了豆瓣的广告没有偏离豆瓣轨迹且没有影响用户体验的结果。</p><p style=\"text-indent:2em;\">而快基因使新浪微博行走的步伐一直很快,但有时行走的太快容易忘掉出发时的初衷。新浪或许应该停下来思考一些问题,比如:为什么自己的广告被无数人骂,而豆瓣的广告却没人骂?</p><p><br /><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('5', '<p style=\"text-align:center\"><img alt=\"大众点评网遭“黑”手:helen否认与其有关\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c523191dbf4.jpg\" style=\"font-family:arial, verdana, sans-serif;border:0px;max-width:680px;width:409px;height:173px;\" /></p><p style=\"text-align:center\"><img alt=\"大众点评网遭“黑”手:helen否认与其有关\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5231984627.jpg\" style=\"border:0px;max-width:680px;\" /></p><p style=\"text-indent:2em;\">昨天凌晨,很多大众点评网的用户登录网站时发现无法打开网页,取而代之的是一个写着QQ号的弹窗,随后跳转至“天猫”页面,导致一些在点评网团购付款成功的用户订单延误。众多用户纷纷吐槽此次网站被黑事件,而QQ号指向的黑客helen则否认是其所为。</p><p style=\"text-indent:2em;\">用户上网卡壳</p><p style=\"text-indent:2em;\">“大概晚上11点40多,我打开大众点评网,但是浏览器马上就报错了,弹出了一个对话框上面写着四字:‘凛冬将至’。网页上还有署名‘Helen’的黑客留下了一个QQ号。”大众点评网的用户王先生称自己看见后一时有点蒙,不知道是什么情况。“我上网一搜,原来大家都在说大众点评上不去的事情,有些人跳转完直接出现网址导航网站。”</p><p style=\"text-indent:2em;\">使用手机客户端的用户也同样遭遇了应用瘫痪的悲剧。“我手机上的大众点评网应用打开之后一直在内容载入中,登录也反复失败,我用手机号找回密码后收到的短信是乱码。”用户孙女士称自己本以为是手机出了问题,打开了其他应用程序才知道是大众点评网的问题。</p><p style=\"text-indent:2em;\">直到昨天清晨7点多,大众点评网站和手机客户端才恢复正常使用。</p><p style=\"text-indent:2em;\">网友订单延误</p><p style=\"text-indent:2em;\">由于网页的突然瘫痪,许多用户在提交订单付款后却无法再次确定付款成功和领取认证码。直到昨天清晨网页恢复正常后,用户再次登录成功却发现订单上没有付款成功的提示。“交了钱却没有给商户提供的验证码,在订单上也写着未付款成功,这是怎么回事?”王先生称自己的网银短信提示扣款成功,的确已经付款。</p><p style=\"text-indent:2em;\">“我给大众点评网的客服打电话,40分钟没有打进去,一直是线路忙,等待。”王先生无奈下使用了俗称“呼死你”的电话软件,却一直没有能打通热线电话。直到昨天上午9点半左右,大众点评客服官方微博称:“热线繁忙,电话排队中。烦请各位小点友耐心等待,如有问题可以私信给@大众点评网客服。”记者尝试拨打客服热线发现,直到中午11点多,客服热线基本恢复正常。</p><p style=\"text-indent:2em;\">helen否认与其有关</p><p style=\"text-indent:2em;\">对于网站的瘫痪,大众点评官方微博在昨天凌晨称:“因域名注册商出现系统漏洞,导致大众点评域名指向出现错误,这不会对用户造成任何信息安全方面的影响,广大用户可以放心。目前我们正努力联系域名注册商尽快修复他们的系统漏洞,以便尽快恢复大众点评的服务。对给用户造成的不便,我们深表歉意!”</p><p style=\"text-indent:2em;\">记者访问了网页中留下QQ号的黑客helen的空间,却发现他在昨天发布了一条声明,称自己并不是制造此次事故的黑客。“本人再次申明一点,在圈内我的名气很大,哥确实黑了国内不少安全小组的网站,也得罪了非常多的人,但是哥在国内只弄黑客站,基本不去碰其他网站的。哥专注国外网络安全已多年,所以很少在去关注国内网络安全。那些诬陷我的人,小心了。”记者随后联系helen,但其一直未予回应。</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('6', '<p style=\"text-align:center\"><img border=\"0\" height=\"262\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c52370829ae.png\" width=\"600\" style=\"border:1px solid #999999;max-width:680px;display:inline-block;\" /></p><p style=\"text-indent:2em;\">【搜狐IT消息】(小蕊)5月2日消息,狗狗搜索今日宣布暂停gougou.com网站服务,具体原因未知,版权问题恐怕依旧是难解之痛。</p><p style=\"text-indent:2em;\">狗狗搜索是提供影视剧、电子书、软件、音乐下载的搜索引擎,2004年由李学凌创办,曾获得雷军100万人民币投资,2007年被卖给迅雷。</p><p style=\"text-indent:2em;\">狗狗搜索给迅雷带来了不小的版权麻烦,2010年迅雷筹划上市前期,狗狗搜索被迅雷以1万元卖给非关联第三方。</p><p style=\"text-indent:2em;\">狗狗搜索曾经多次关站,又多次重开。2011年4月,文化部联合广告总局下令狗狗搜索下令关闭整改;2011年11月,狗狗搜索公告因系统调整暂停网站服务;2011年12月初恢复访问之后,当月底又再次宣布停止服务。</p><p style=\"text-indent:2em;\">狗狗搜索官方并未对本次关站的原因做出说明,未来是否会再次重开也尚不清楚。</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('7', '<p style=\"text-align:center\"><img alt=\"京东反击易迅欲推一日四送 易迅回应:欢迎竞争\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c523a819ded.jpg\" style=\"border:0px;max-width:680px;\" /></p><p style=\"text-indent:2em;\">一日四送</p><p style=\"text-indent:2em;\">“极速达”一日四送服务,将实现三个小时商品送达,比之前的“211限时达”快出两倍</p><p style=\"text-indent:2em;\">一日三送</p><p style=\"text-indent:2em;\">早上订单在下午2时之前送达,中午订单在晚上6时之前送达,晚间订单在晚上10时之前送达</p><p style=\"text-indent:2em;\">继价格战后,一对电商 “冤家对头”——京东和易迅又将竞争的焦点对准到了物流速度上。继去年12月易迅大举杀入京东大本营北京,并将“一日三送”服务扩展到北京市场后,昨日又传出消息称,京东近期正在紧锣密鼓地筹备“极速达”的一日四送服务,号称将实现三个小时商品送达,比之前的“211限时达”快出两倍。此举被业内认为是针对易迅的直接挑战。</p><p style=\"text-indent:2em;\">易迅网负责人表示,“电商的物流不仅要快速,更关键的还在于稳定和准时,我们期待和更多的企业一起不断提升面向消费者的服务,易迅非常欢迎竞争。”</p><p style=\"text-indent:2em;\">事件</p><p style=\"text-indent:2em;\">京东欲在京推“一日四送”</p><p style=\"text-indent:2em;\">配送速度一直是电商差异化竞争的焦点,从最早的三日送达,到隔日达,再到京东的“211”,以及目前易迅所保持的一日三送,电商巨头们在物流速度上进行的是内功的比拼。</p><p style=\"text-indent:2em;\">去年底,易迅高调宣布杀入京东大本营北京市场,一时间北京地铁公交上“在北京,谁比易迅更快”的广告铺天盖地,短期内带动了易迅在北京订单量的快速上扬,此举也使得京东颇为紧张,甚至在年初的内部会议上提出了“防易迅”的说法。</p><p style=\"text-indent:2em;\">京东公关媒介总监康健透露,目前“一日四送”服务只在北京试运行,即商品3小时送到。不过,对于该“一日四送”服务是否覆盖所有品类以及扩张到其他的城市,他表示由于是试运行,在品类和范围肯定有一定的限制,具体相关细节信息将会在下周公布。最后他还表示,目前试运行的品类包括有电脑类的,在北京可以到达一日四送。</p><p style=\"text-indent:2em;\">据悉,京东“极速达”配送服务已在北京地区开始试运行。之前京东依靠自有物流网络已经在一些城市先后推出211限时达、隔日达、晚间配送等服务升级措施,不过京东并没有说明在北京市场推出的一日四送服务,是否涵盖所有品类,以及是否会扩展到其他地区。</p><p style=\"text-indent:2em;\">回应</p><p style=\"text-indent:2em;\">易迅称欢迎直面竞争</p><p style=\"text-indent:2em;\">对于京东挑起的速度竞争,此前一直在国内电商物流领域领先的易迅网反应却比较平淡。</p><p style=\"text-indent:2em;\">其相关负责人在接受记者采访时表示,“电商的物流不仅要快速,更关键的还在于稳定和准时,我们期待更多的企业一起不断提升面向消费者的服务,易迅非常欢迎竞争。”</p><p style=\"text-indent:2em;\">此次京东和易迅在物流上的竞争并非首次。2005年易迅在上海推出了次日达服务,后来在京东进军上海市场后,易迅又先后将配送升级为“当日送达”,“一日两送”;在2009年京东也在上海跟进“一日两送”后,2010年易迅又果断地将配送升级为“一日三送”。2011年京东在上海也升级为“一日三送”。不过在试行一段时间后,京东取消“一日三送”服务,回归“一日两送”。</p><p style=\"text-indent:2em;\">解读</p><p style=\"text-indent:2em;\">或是针对竞争对手的炒作</p><p style=\"text-indent:2em;\">在自己大本营经营多年的京东能否通过“一日四送”来完成对易迅配送速度上的赶超?对此不少电商和物流行业专家表示了怀疑。</p><p style=\"text-indent:2em;\">中国电子商务协会物流专家、汉森世纪供应链总经理黄刚称,“京东‘一日四送’很可能是个噱头。”在他看来,易迅的一日三送已经是电商客户对于配送速度的最高需求,除非针对个别对配送速度特殊需求的商品。</p><p style=\"text-indent:2em;\">从易迅的“一日三送”来看,早上11点前的订单,过客服审单、财务出单、分区捡货,库房总拣,二次分拣到打包约需要1小时,而货车从仓库到市内配送点约需要1个小时,分单和送到快递员手中又需要40分钟的时间,这样最快的订单配送约需要3个小时的时间。而整个配送过程的不可控因素也很多,比如说仓库要离市中心足够近,即便如此道路堵塞也会影响到从仓库到配送点和从配送员到订户的速度,显然对于仓库分散而且离市区普遍较远的京东是无法具备这样的速度的。</p><p style=\"text-indent:2em;\">此外,京东目前的“211”一日两送,与其装车量、分拨量和送货量三个数据正好匹配,如果要满足“一日四送”,这些成本将大幅增加,这或是正在追求盈利的京东不愿意增加的成本。有业内人士指出,京东这次尝试的“一日四送”更多是针对竞争对手的一次炒作。 沈婷婷天府早报记者龚琼</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('8', '<p><span style=\"color:#666666;background-color:#ffffff;\">仿数字尾巴官网进度条jquery焦点图效果<br /><br />效果描述:jquery焦点图插件,带索引按钮,带进度条时间轴,支持自动切换,带入淡出的切换效果<br style=\"color:#666666;font-size:12px;line-height:18px;background-color:#ffffff;\" /><br style=\"color:#666666;font-size:12px;line-height:18px;background-color:#ffffff;\" /></span></p><div><p style=\"text-align:center\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c52a921a436.jpg\" style=\"border-style:none;max-width:680px;\" /></p></div><div><br /></div><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('9', '<p>jquery前后图片预览焦点图效果<br /><br />效果描述:jquery焦点图效果,鼠标经过左右两边半透明部分显示左右箭头,点击左右滚动切换,支持自动切换!<br style=\"color:#666666;font-size:12px;line-height:18px;background-color:#ffffff;\" /><br style=\"color:#666666;font-size:12px;line-height:18px;background-color:#ffffff;\" /></p><div><p style=\"text-align:center\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c52ad03bc3f.jpg\" style=\"border-style:none;max-width:680px;\" /></p></div><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('10', '<p>jquery全屏左右预览焦点图代码<br/><br/>效果描述:jquery全屏焦点图,带图片前后图片预览效果,鼠标经过左右两边半透明部分显示左右箭头,带索引按钮,支持自动切换!<br style=\"color:#666666;font-size:12px;line-height:18px;background-color:#ffffff;\"/><br style=\"color:#666666;font-size:12px;line-height:18px;background-color:#ffffff;\"/></p><p style=\"text-align:center\"><img src=\"/d/file/content/2016/04/57217c9398989.jpg\" style=\"border-style:none;max-width:680px;\"/></p><p><br/></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('11', '<p style=\"text-indent:2em;\">zTree 一款基于jquery的超强树形菜单,支持无限级别扩展,含API说明!<br /></p><p style=\"text-align:center\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c52e859571e.jpg\" style=\"border-style:none;max-width:680px;width:650px;height:427px;\" /></p><p style=\"text-indent:2em;\">下面是 v3.5.12 的修改记录:</p><p style=\"text-indent:2em;\"> * 【修改】由于 jquery 1.9 中移除 event.srcElement 导致的 js 报错的bug。</p><p style=\"text-indent:2em;\"> * 【修改】在异步加载模式下,使用 moveNode 方法,且 moveType != "inner" 时,也会导致 targetNode 自动加载子节点的 bug</p><p style=\"text-indent:2em;\"> * 【修改】对已经显示的节点(nochecked=true)使用 showNodes 或 showNode 方法后,导致勾选框出现的bug。</p><p style=\"text-indent:2em;\"> * 【修改】对已经隐藏的节点(nochecked=false)使用 hideNodes 或 hideNode 方法后,导致勾选框消失的bug。</p><p style=\"text-indent:2em;\"> * 【修改】getNodesByParamFuzzy 支持 大小写模糊。</p><p style=\"text-indent:2em;\"> * 【修改】className 结构,提取 _consts.className.BUTTON / LEVEL / ICO_LOADING / SWITCH,便于快速修改 css 冲突。</p><p style=\"text-indent:2em;\"> 例如:与 WordPress 产生冲突后,直接修改 core 中的 "button" 和 "level" 即可。</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('16', '<p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><strong style=\"font-weight:bolder;\">1、块级元素</strong></p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><div> <h1> <hr /> <p> <pre> <ol> <ul> <li> <dl> <dt> <dd> <table> <tr> <td> <colgroup> <col> <form>等<br/>会换行,想在同一行显示需浮动或者display: inline</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><strong style=\"font-weight:bolder;\">2、行内元素</strong></p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><span> <var> <a> <em> <img> <b> <i> <sub> <textarea> <select> <strong> <br />等<br/>多个可以并排显示,默认设置宽度是不起作用的,需设置 display: inline-block或者block才行,或者加padding-left和padding-right。</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><strong style=\"font-weight:bolder;\">3、常用符号</strong></p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">双引号"(&quot;) &(&amp;) >(&gt;) <(&lt;) 空格(&nbsp;) 版权 (&copy;) 注册商标 (&reg;) 乘号 (&times;)除号 (&divide;)</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><strong style=\"font-weight:bolder;\">4、选择器</strong></p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">类选择器:<div class="a"></div> css中: .a{…;}</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">ID选择器:<div id="a"></div> css中: #a{…;}</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">后代选择器:<div class="a"><br/> <div class="b"></div><br/> </div> css中: .a空格.b{…;}</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">群组选择器:<div class="a"></div></p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"> <div class="b"></div> css中: .a,.b{…;}</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">标签选择器:<a>sds</a> css中: a{…;}</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\"><strong style=\"font-weight:bolder;\">5、css样式写法及优先级</strong><br/>外部样式表<strong style=\"font-weight:bolder;\">:</strong><br/><head><link rel="stylesheet" type="text/css" href="mystyle.css" /></head><br/>内部样式表<strong style=\"font-weight:bolder;\">:</strong><br/><head><style type="text/css"> hr {color: sienna;} </style></head><br/>内联样式<strong style=\"font-weight:bolder;\">:</strong><br/><p style="color: sienna; margin-left: 20px"> This is a paragraph</p></p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">样式的继承:<br/>子标记会继承父标记的样式</p><p style=\"padding:0.5em 0px;color:#222222;font-size:14px;background-color:#ffffff;line-height:24px;margin-top:0px;margin-bottom:0px;\">样式的优先级:<br/>内联样式>内部样式>外部样式<br/>浏览器内部也有一个默认的样式</p><p><br/></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('17', '<p style=\"text-indent:2em;\">TML 的注释格式是 , IE 对HTML注释做了一些扩展,使之可以支持条件判断表达式,如何让静态HTML代码在不同IE版本显示不同内容?<br /></p><p style=\"text-indent:2em;\">和编程语言类似,这里的表达式还支持大于(gt)、小于(lt)、 与或非 等操作符,条件注释是 IE5.0 以上版本所特有的一种对注释的扩展,其它浏览器不支持。<br /></p><p style=\"text-indent:2em;\">[if IE] 判断是否IE<br /></p><p style=\"text-indent:2em;\">[if IE 7] 判断是否是IE7<br /></p><p style=\"text-indent:2em;\">[if !IE] 判断是否不是IE<br /></p><p style=\"text-indent:2em;\">[if lt IE 5.5] 判断是否是IE5.5 以下版本。 (<)<br /></p><p style=\"text-indent:2em;\">[if lte IE 6] 判断是否等于IE6 版本或者以下 (<=)<br /></p><p style=\"text-indent:2em;\">[if gt IE 5] 判断是否IE5以上版本 (> )<br /></p><p style=\"text-indent:2em;\">[if gte IE 7] 判断是否 IE7 版本或者以上<br /></p><p style=\"text-indent:2em;\">[if !(IE 7)] 判断是否不是IE7<br /></p><p style=\"text-indent:2em;\">[if (gt IE 5)&(lt IE 7)] 判断是否大于IE5, 小于IE7<br /></p><p style=\"text-indent:2em;\">[if (IE 6)|(IE 7)] 判断是否IE6 或者 IE7<br /></p><p style=\"text-indent:2em;\">下面是判断IE版本的综合示例代码:<br /></p><pre><p style=\"text-indent:2em;\"><!--[if IE]>\r\nYou are using Internet Explorer.\r\n<![endif]-->\r\n\r\n\r\n<!--[if !IE]-->\r\nYou are not using Internet Explorer.\r\n<!--[endif]-->\r\n\r\n\r\n<!--[if IE 7]>\r\nWelcome to Internet Explorer 7!\r\n<![endif]-->\r\n\r\n\r\n<!--[if !(IE 7)]>\r\nYou are not using version 7.\r\n<![endif]-->\r\n\r\n\r\n<!--[if gte IE 7]>\r\nYou are using IE 7 or greater.\r\n<![endif]-->\r\n\r\n\r\n<!--[if (IE 5)]>\r\nYou are using IE 5 (any version).\r\n<![endif]-->\r\n\r\n\r\n<!--[if (gte IE 5.5)&(lt IE 7)]>\r\nYou are using IE 5.5 or IE 6.\r\n<![endif]-->\r\n\r\n\r\n<!--[if lt IE 5.5]>\r\nPlease upgrade your version of Internet Explorer.\r\n<![endif]-->\r\n\r\n</p></pre><p style=\"text-indent:2em;\">对于<!–[if expression]> HTML <![endif]–>,非 IE 浏览器会当作注释内容,不显示;对于 <!–[if expression]–> HTML <!–[endif]–>,非 IE 浏览器浏览器会当作普通代码段显示。<br /></p><pre><p style=\"text-indent:2em;\"><!--[if expression]--> HTML <!--[endif]--> <!--[if expression]> HTML <![endif]--></p></pre><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('18', '<p style=\"text-indent:0em;\">分享一些常用限制input的方法,可能里面也有一些你需要用的,可能也有一些你值得学习的!</p><p style=\"text-indent:0em;\">1.取消按钮按下时的虚线框,在input里添加属性值 hideFocus 或者 HideFocus=true <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="submit" value="提交" hidefocus="true" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />2.只读文本框内容,在input里添加属性值 readonly <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" readonly /> <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />3.防止退后清空的TEXT文档(可把style内容做做为类引用) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" style="behavior:url(#default#savehistory);" /> <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />4.ENTER键可以让光标移到下一个输入框 <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" onkeydown="if(event.keyCode==13)event.keyCode=9" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />5.只能为中文(有闪动) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" onkeyup="value=value.replace(/[ -~]/g,'')" onkeydown="if(event.keyCode==13)event.keyCode=9" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />6.只能为数字(有闪动) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" onkeyup="value=value.replace(/[^\\d]/g,'') " onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\\d]/g,''))" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />7.只能为数字(无闪动) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" style="ime-mode:disabled" onkeydown="if(event.keyCode==13)event.keyCode=9" onkeypress="if ((event.keyCode<48 || event.keyCode>57)) event.returnValue=false" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />8.只能输入英文和数字(有闪动) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" onkeyup="value=value.replace(/[\\W]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\\d]/g,''))" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />9.屏蔽输入法 <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" name="url" style="ime-mode:disabled" onkeydown="if(event.keyCode==13)event.keyCode=9" /> <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />10. 只能输入 数字,小数点,减号(-) 字符(无闪动) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input onkeypress="if (event.keyCode!=46 && event.keyCode!=45 && (event.keyCode<48 || event.keyCode>57)) event.returnValue=false" /> <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" />11. 只能输入两位小数,三位小数(有闪动) <br style=\"font-family:宋体;background-color:#ffffff;color:#666666;font-size:14px;line-height:24px;\" /><input type="text" maxlength="9" onkeyup="if(value.match(/^\\d{3}$/))value=value.replace(value,parseInt(value/10)) ;value=value.replace(/\\.\\d*\\./g,'.')" onkeypress="if((event.keyCode<48 || event.keyCode>57) && event.keyCode!=46 && event.keyCode!=45 || value.match(/^\\d{3}$/) || /\\.\\d{3}$/.test(value)) {event.returnValue=false}" /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('19', '<p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\">下面列了五个例子来详细说明,这几个例子的主要功能是:在5秒后,自动跳转到同目录下的hello.html(根据自己需要自行修改)文件。<br /><br /><strong>1) html的实现</strong></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><head> <br /><meta http-equiv="refresh" content="10"><br /><meta http-equiv="refresh" content="5;url="http://www.97zzw.com"> <br /></head><br /><br />优点:简单<br /><br />缺点:Struts Tiles中无法使用</p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong>2) javascript的实现</strong></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><script language="javascript" type="text/javascript"> <br />window.location.href='hello.html'; <br />setTimeout("javascript:location.href='http://www.97zzw.com'", 5000); <br /></script><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\">优点:灵活,可以结合更多的其他功能<br /><br />缺点:受到不同浏览器的影响</p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><br /><strong>3) 结合了倒数的javascript实现(IE)</strong><br /><br /><span id="totalSecond">5</span> <br /><script language="javascript" type="text/javascript"> <br />var second = totalSecond.innerText; <br />setInterval("redirect()", 1000); <br />function redirect(){ <br />totalSecond.innerText=--second; <br />if(second<0) location.href='http://www.97zzw.com';<br />} <br /></script><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\">优点:更人性化<br /><br />缺点:firefox不支持(firefox不支持span、div等的innerText属性)<br /><br /><strong>3') 结合了倒数的javascript实现(firefox)</strong><br /><br /><script language="javascript" type="text/javascript"><br />var second = document.getElementById('totalSecond').textContent;<br />setInterval("redirect()", 1000);<br />function redirect() { <br />document.getElementById('totalSecond').textContent = --second; <br />if (second < 0) location.href = 'http://www.97zzw.com'; } <br /></script><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong>4) 解决Firefox不支持innerText的问题</strong></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><span id="totalSecond">5</span> <br /><script language="javascript" type="text/javascript"> <br /> if(navigator.appName.indexOf("Explorer") > -1){ <br />document.getElementById('totalSecond').innerText = "my text innerText"; <br /> } else{ <br /> document.getElementById('totalSecond').textContent = "my text textContent"; <br /> } <br /> </script><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong>5) 整合3)和3')</strong></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><span id="totalSecond">5</span> <br /><script language="javascript" type="text/javascript"><br />var second = document.getElementById('totalSecond').textContent; <br />if (navigator.appName.indexOf("Explorer") > -1) { <br /> second = document.getElementById('totalSecond').innerText;<br />} else { <br /> second = document.getElementById('totalSecond').textContent; <br /> } <br />setInterval("redirect()", 1000); <br />function redirect() { <br />if (second < 0) { <br /> location.href = 'http://www.97zzw.com'; <br /> } else { <br /> if (navigator.appName.indexOf("Explorer") > -1) { <br /> document.getElementById('totalSecond').innerText = second--; <br /> } else { <br /> document.getElementById('totalSecond').textContent = second--; <br /> } <br /> } <br />} </p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"></script></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('20', '<div>代码如下:<br /></div><div id=\"phpcode3\"><!--[if IE]><script type=\"text/javascript\" src=\"97zzw.js\"></script><![endif]--></div><p><br style=\"font-family:tahoma, geneva, sans-serif;font-size:14px;background-color:#ffffff;line-height:22px;\" />用上面这段代码,只有使用IE时加载97zzw.js。这点很重要,因为你什么都加载的话会浪费带宽,打开页面速度就会慢!如果专对IE6就改成if IE6。 <br style=\"font-family:tahoma, geneva, sans-serif;font-size:14px;background-color:#ffffff;line-height:22px;\" /><br style=\"font-family:tahoma, geneva, sans-serif;font-size:14px;background-color:#ffffff;line-height:22px;\" /></p><div>代码如下:</div><div id=\"phpcode4\"><br /><!--[if IE 6]><br /><script type=\"text/javascript\" src=\"resources/scripts/DD_belatedPNG_0.0.7a.js\"></script><br /><script type=\"text/javascript\"><br />DD_belatedPNG.fix(\'.png_bg, img, li\'); <br /></script><br /><![endif]--><br /></div><p><br style=\"font-family:tahoma, geneva, sans-serif;font-size:14px;background-color:#ffffff;line-height:22px;\" />或者解决ie不同版本布局问题,下面仅仅在ie7中加载97zzw.css <br style=\"font-family:tahoma, geneva, sans-serif;font-size:14px;background-color:#ffffff;line-height:22px;\" /><br style=\"font-family:tahoma, geneva, sans-serif;font-size:14px;background-color:#ffffff;line-height:22px;\" /></p><div>代码如下:</div><div id=\"phpcode5\"><br /><!--[if lte IE 7]><br /><link rel=\"stylesheet\" href=\"97zzw.css\" type=\"text/css\" media=\"screen\" /><br /><![endif]--></div><p><br /></p>', '2', '10000', '', '0', '1', '24', '');
INSERT INTO `www_article_data` VALUES ('25', '<p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\">nofollow 是一个HTML标签的属性值。这个标签的意义是告诉<span style=\"color:#0066cc;border-bottom-width:1px;border-bottom-style:dotted;border-bottom-color:#0099ff;text-decoration:none;text-decoration:underline;\">搜索引擎</span>"不要追踪此网页上的链接"或"不要追踪此特定链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow简介</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> nofollow是一个HTML标签的属性值。它的出现为网站管理员提供了一种方式,即告诉搜索引擎"不要追踪此网页上的链接"或"不要追踪此特定链接"。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 这个标签的意义是告诉搜索引擎这个链接不是经过作者信任的,所以这个链接不是一个信任票。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 简单的说就是,如果A网页上有一个链接指向B网页,但A网页给这个链接加上了 rel="nofollow" 标注,则搜索引擎不把A网页计算入B网页的反向链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 搜索引擎看到这个标签就可能减少或完全取消链接的权重传递。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow 标签的发展</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 最初,"Nofollow"属性出现在网页级元标记中,用于告诉搜索引擎不要追踪(即抓取)网页上的任何出站链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 但是,在将"Nofollow"用于各个链接前,我们需要完成大量的工作(例如,将链接重定向至 robots.txt中拦截的网址),以阻止蜘蛛追踪某网页上的各个链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 因此,我们创建了rel属性的"Nofollow"属性值。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 这可让网站管理员更精确地进行控制:无需告诉搜索引擎和漫游器不要追踪该网页的所有链接,只需轻松地告诉蜘蛛不要抓取某特定链接即可。</p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow的原因与作用</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 我们都知道,反向链接即外链是搜索引擎给网站排名的一个重要因素。为了添加反向链接,SEO作弊者会在论坛和博客等大量发布带无关链接的内容。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 这些垃圾链接的存在给搜索引擎对网页质量的评估造成一定程度的麻烦,可以说nofollow是一个非常好的“垃圾链接防火墙”。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 正是百度、谷歌、Yahoo、MSN 为了应对垃圾链接(Spam)引入的一个属性,此属性目前应该被广泛采用。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> Nofollow标签的作用有两方面,简单的说,一是不给链接导入权重,降低此链接的权重,二是使添加nofollow的部分内容不参与网站排名,便于集中网站权重。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow标签使用方法</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> nofollow标签通常有两种使用方法:<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 1、将"nofollow"写在网页上的meta标签上,用来告诉搜索引擎不要抓取网页上的所有外部和包括内部链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 2、将"nofollow"放在超链接中,告诉搜索引擎不要抓取特定的链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> nofollow还有另外的一些写法:<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> Meta robots标签必须放在<head></head>和之间,格式:<span class=\"webkit-html-tag\" style=\"font-family:monospace;font-size:medium;\"><meta <span class=\"webkit-html-attribute-name\">name</span>="<span class=\"webkit-html-attribute-value\">robots</span>" <span class=\"webkit-html-attribute-name\">content</span>="<span class=\"webkit-html-attribute-value\">index,nofollow</span>" /></span><span style=\"font-family:monospace;color:#000000;font-size:medium;\"></span><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> content中的值决定允许抓取的类型,必须同时包含两个值:<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 是否允许索引(index)和是否跟踪链接(follow,也可以理解为是否允许沿着网页中的超级链接继续抓取)。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 共有4个参数可选,组成4个组合:<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 1. index,follow:允许抓取本页,允许跟踪链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 2. index,nofollow:允许抓取本页,但禁止跟踪链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 3. noindex,follow:禁止抓取本页,但允许跟踪链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 4. noindex,nofllow:禁止抓取本页,同时禁止跟踪本页中的链接。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow使用示例:</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 如某博客上有垃圾评论:<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 以下操作,即进行了 nofollow:<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow标签检查</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 打开站长工具网站,在“SEO信息查询”中选择“友情链接检测”。赶快去查询下你的友情连接是否可靠吧!是否被人偷偷的添加了nofollow标签。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow的拓展应用</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 你可以为站点的内部链接添加 nofollow。比如:联系我们、关于我们、隐私保护、公司简介、网站后台等的链接可以把它们nofollow 掉。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 这样做,首页的PR值就不会传输给他们。因为,他们有太多的PR值显然没用;<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 另外网站上的一些广告,因为这些广告只是让其带来IP和流量,而不是让其加重搜索引擎的权重,所以也可以加上这个nofollow标签,这样不会影响其本来意愿。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> 什么是external nofollow</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> external nofollow是比nofollow更专业的写法,即明确指出链接为外部链接,爬虫可以略过。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> 搜索引擎的支持</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 以前谷歌、和必应Bing支持,现在百度通过百度站长俱乐部向外宣布百度也支持nofollow标签。youdao,soso也支持该标签,不支持的有Yahoo和sogou!<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> 友链中的nofollow</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 看了以上关于nofollow标签的说明,相信各位网站建设者对于nofollow标签都已经有了一定的了解.<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 这里要说的是,站长在交换友情链接的时候应当留意下与你交换链接的站点有没有在其所添加的友情链接上写上nofollow标签,如果在友链中写上了nofollow标签,它会阻止蜘蛛进行跟踪,同时也阻止了权重的传递。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 查询的方法也很简单,我们只要直接打开对方站点页面的源文件,查看其中nofollow的事情情况。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 当然也并不是一定不换,如果是一些流量大的站点可以换,虽然有该标签,但是这也可以为我们的站点带来一定的流量。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 就如同我们知道百度经验的外链有nofollow标签,但是百度经验的外链可以很好的为我们带来流量,我们也是可以适当的建设的。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> google支持的深度<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 1、不可信赖的内容</p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 2、付费链接</p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 3、按优先级别进行抓取<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 搜索引擎漫游器无法作为成员登录或注册您的网站,因此没有理由邀请 Googlebot 追踪“在此注册”或“登录”链接。对这些链接使用 nofollow,可让 Googlebot 抓取您希望编入 Google 索引的其他网页。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 不过,与主要依靠包含 nofollow 的链接区分抓取优先级相比,稳固的信息架构(直观的导航界面、用户友好和搜索引擎友好的网址等等)可能是更高效的资源。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> 目前google对nofollow支持的深度已经相当完美,最近,百度对nofollow的优先级作用已经得到了证实。百度站长俱乐部里网友也就这一问题向百度提出疑问,经过官方的回答,也证实了这一点。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"><strong> nofollow与external nofollow</strong><br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> external nofollow其实这个属性就是告诉搜索引擎不要跟踪这个链接,也就是这个链接很可能被视为一个垃圾链接,这也主要是应对 Spam而增设的一种属性。<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> rel=“nofollow”属性是谷歌为了应对垃圾链接而引入的一个属性值,被各大搜索引擎引用!rel=“external nofollow”只是更相对于rel=“nofollow”参数更加规范一些而已!<br /></p><p style=\"padding:0px;color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;margin-top:0px;margin-bottom:0px;\"> rel=“external nofollow”与rel=“nofollow”其功能就中文译文”不要读取” 及”外部链接不要读取”的意思!</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('21', '<p style=\"text-indent:2em;\">问题产生描述:</p><p style=\"text-indent:2em;\">DreamWeaver文件保存时,提示这样的问题"发生共享违例",具体如图:<br /></p><p style=\"text-indent:2em;\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5419d2489e.png\" style=\"border-style:none;max-width:680px;\" /><br /></p><p style=\"text-indent:2em;\">修改HTML文件后,就是保存不了,一保存就提示"路径+时发生共享违例"。起初好好的,预览网页后,再修改,之后就不能保存了。只要一按ctrl+s,就会有"发生共享违例"的错误提示.<br /></p><p style=\"text-indent:2em;\">问题产生的原因:<br /></p><p style=\"text-indent:2em;\">"访问**时发生共享违例"的原因:肯定有文件被使用……<br /></p><p style=\"text-indent:2em;\">因为这个网页文件我在调试状态,改一下马上上传,然后传的过程中这边还在编辑,有的时候网络原因,FTP的文件卡在那里了,你这边编辑完了还要保存,一端上传没结束,这边又要把新修改的保存,就出现了“共享违例”的问题,解决方法很简单 把CUTFTP关闭 就可以保存了 然后再上传,由于其他原因出现的共享违例可以由此例延伸一下,无非都是因为同时调用一个文件或程序,一端没结束,另一端又试图进行写入的更新保存,知道了问题的原因,解决起来就方便多了……<br /></p><p style=\"text-indent:2em;\">问题的解决方案:<br /></p><p style=\"text-indent:2em;\">1.关闭我预览网页的浏览器,再进行网页保存、网页浏览都没问题了……<br /></p><p style=\"text-indent:2em;\">2.若你电脑上安了"QQ电脑管家"之类的软件,找到不能保存的文件→右键→QQ电脑管家→文件解锁。问题亦可轻松解决……<br /></p><p style=\"text-indent:2em;\">这样问题就OK了!</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('22', '<p>问题提出:在线问答网友提问,请问专家DreamWeaver 8中如何批量删除超级链接?<br /></p><p> 电脑软硬件应用网回答:解决办法,依次打开DreamWeaver-编辑-查找和替换(或可直接使用快捷键,Ctrl+F)-搜索范围选择“源代码”,在查找框内写入“<a href=".*">”,替换框内请留空。然后选择“使用正则表达式”前的勾。最后替换全部即可。详细如下图:<br /></p><p style=\"text-align:center\"><img alt=\"DreamWeaver中如何批量删除超级链接\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c541d5c23ae.jpg\" style=\"border-style:none;max-width:680px;\" /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('23', '<p style=\"text-align:center\"><img alt=\"分享前端JavaScript中常用的使用小技巧语句\" class=\"ShareImg\" id=\"pic\" original=\"/uploads/allimg/130205/2216194264-0.jpg\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c543b70c703.jpg\" style=\"border:0px;max-width:680px;margin:0px;padding:0px;list-style-type:none;width:680px;height:130px;color:#666666;font-size:13px;background-color:#ebebeb;\" /></p><p>前面我们分享过前端小技巧和JavaScript刷新页面及框架,里面也时不时的提到JavaScript。收集了一些JavaScript小技巧脚本代码。<br /></p><p>JavaScript是前端攻城师经常要用到的,属于网络的脚本语言。JavaScript 被用来改进设计、验证表单、检测浏览器、创建cookies,等等等等。是因特网上最流行的脚本语言,并且可在所有主要的浏览器中运行。它是通过嵌入或调入在标准的HTML语言中实现的。它的出现弥补了HTML语言的缺陷,它是Java与HTML折衷的选择,具有几个基本特点:1、是一种脚本编写语言;2、基于对象的语言;3、简单性;4、安全性;5、动态性的;6、跨平台性。<br /></p><p>JavaScript的出现,它可以使得信息和用户之间不仅只是一种显示和浏览的关系,而是实现了一种实时的、动态的、可交式的表达能力。从而基于CGI静态的HTML页面将被可提供动态实时信息,并对客户操作进行反应的Web页面的取代。JavaScript脚本正是满足这种需求而产生的语言。它深受广泛用户的喜爱的欢迎。下面每一项都是JS中的小技巧,但十分的实用!</p><p><br /></p><p>1. document.write(""); 输出语句<br style=\"margin:0px;padding:0px;list-style-type:none;\" />2. JS中的注释为//<br style=\"margin:0px;padding:0px;list-style-type:none;\" />3. 传统的HTML文档顺序是:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document->html->(head,body)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />4. 一个浏览器窗口中的DOM顺序是:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> window->(navigator,screen,history,location,document)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />5. 得到表单中元素的名称和值:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.getElementById("表单中元素的ID号").name(或value)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />6. 一个小写转大写的JS:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.getElementById("output").value=document.getElementById("input").value.toUpperCase();<br style=\"margin:0px;padding:0px;list-style-type:none;\" />7. JS中的值类型:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> String,Number,Boolean,Null,Object,Function<br style=\"margin:0px;padding:0px;list-style-type:none;\" />8. JS中的字符型转换成数值型:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> parseInt(),parseFloat()<br style=\"margin:0px;padding:0px;list-style-type:none;\" />9. JS中的数字转换成字符型:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> ("" 变量)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />10. JS中的取字符串长度是:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> (length)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />11. JS中的字符与字符相连接使用 号.<br style=\"margin:0px;padding:0px;list-style-type:none;\" />12. JS中的比较操作符有:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> ==等于,!=不等于,>,>=,<.<=<br style=\"margin:0px;padding:0px;list-style-type:none;\" />13. JS中声明变量使用:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> var来进行声明<br style=\"margin:0px;padding:0px;list-style-type:none;\" />14. JS中的判断语句结构:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> if(condition){}else{}<br style=\"margin:0px;padding:0px;list-style-type:none;\" />15. JS中的循环结构:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> for([initial expression];[condition];[upadte expression]) {inside loop}<br style=\"margin:0px;padding:0px;list-style-type:none;\" />16. 循环中止的命令是:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> break<br style=\"margin:0px;padding:0px;list-style-type:none;\" />17. JS中的函数定义:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> function functionName([parameter],...){statement[s]}<br style=\"margin:0px;padding:0px;list-style-type:none;\" />18. 当文件中出现多个form表单时.可以用document.forms[0],document.forms[1]来代替.<br style=\"margin:0px;padding:0px;list-style-type:none;\" />19. 窗口:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> 打开窗口window.open(), 关闭一个窗口:window.close(), 窗口本身:self<br style=\"margin:0px;padding:0px;list-style-type:none;\" />20. 状态栏的设置:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> window.status="字符";<br style=\"margin:0px;padding:0px;list-style-type:none;\" />21. 弹出提示信息:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> window.alert("字符");<br style=\"margin:0px;padding:0px;list-style-type:none;\" />22. 弹出确认框:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> window.confirm();<br style=\"margin:0px;padding:0px;list-style-type:none;\" />23. 弹出输入提示框:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> window.prompt();<br style=\"margin:0px;padding:0px;list-style-type:none;\" />24. 指定当前显示链接的位置:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> window.location.href="URL"<br style=\"margin:0px;padding:0px;list-style-type:none;\" />25. 取出窗体中的所有表单的数量:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.forms.length<br style=\"margin:0px;padding:0px;list-style-type:none;\" />26. 关闭文档的输出流:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.close();<br style=\"margin:0px;padding:0px;list-style-type:none;\" />27. 字符串追加连接符: =<br style=\"margin:0px;padding:0px;list-style-type:none;\" />28. 创建一个文档元素:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.createElement(),document.createTextNode()<br style=\"margin:0px;padding:0px;list-style-type:none;\" />29. 得到元素的方法:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.getElementById()<br style=\"margin:0px;padding:0px;list-style-type:none;\" />30. 设置表单中所有文本型的成员的值为空:<br style=\"margin:0px;padding:0px;list-style-type:none;\" />var form = window.document.forms[0]<br style=\"margin:0px;padding:0px;list-style-type:none;\" />for (var i = 0; i<form.elements.length;i ){<br style=\"margin:0px;padding:0px;list-style-type:none;\" />if (form.elements.type == "text"){<br style=\"margin:0px;padding:0px;list-style-type:none;\" />form.elements.value = "";<br style=\"margin:0px;padding:0px;list-style-type:none;\" />}<br style=\"margin:0px;padding:0px;list-style-type:none;\" />}<br style=\"margin:0px;padding:0px;list-style-type:none;\" />31. 复选按钮在JS中判断是否选中:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.forms[0].checkThis.checked<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> (checked属性代表为是否选中返回TRUE或FALSE)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />32. 单选按钮组(单选按钮的名称必须相同):<br style=\"margin:0px;padding:0px;list-style-type:none;\" />取单选按钮组的长度document.forms[0].groupName.length<br style=\"margin:0px;padding:0px;list-style-type:none;\" />33. 单选按钮组判断是否被选中也是用checked.<br style=\"margin:0px;padding:0px;list-style-type:none;\" />34. 下拉列表框的值:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> document.forms[0].selectName.options[n].value <br style=\"margin:0px;padding:0px;list-style-type:none;\" /> (n有时用下拉列表框名称加上.selectedIndex来确定被选中的值)<br style=\"margin:0px;padding:0px;list-style-type:none;\" />35. 字符串的定义:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> var myString = new String("This is lightsword");<br style=\"margin:0px;padding:0px;list-style-type:none;\" />36. 字符串转成大写:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> string.toUpperCase(); 字符串转成小写:string.toLowerCase();<br style=\"margin:0px;padding:0px;list-style-type:none;\" />37. 返回字符串2在字符串1中出现的位置:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> String1.indexOf("String2")!=-1则说明没找到.<br style=\"margin:0px;padding:0px;list-style-type:none;\" />38. 取字符串中指定位置的一个字符:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> StringA.charAt(9);<br style=\"margin:0px;padding:0px;list-style-type:none;\" />39. 取出字符串中指定起点和终点的子字符串:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> stringA.substring(2,6);<br style=\"margin:0px;padding:0px;list-style-type:none;\" />40. 数学函数:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> Math.PI(返回圆周率),Math.SQRT2(返回开方),Math.max(value1,value2)返回两个数中的最大值,Math.pow(value1,10)返回value1的十次方,Math.round(value1)四舍五入函数,Math.floor(Math.random()*(n 1))返回随机数<br style=\"margin:0px;padding:0px;list-style-type:none;\" />41. 定义日期型变量:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> var today = new Date();<br style=\"margin:0px;padding:0px;list-style-type:none;\" />42. 日期函数列表:<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.getTime()得到时间,dateObj.getYear()得到年份,dateObj.getFullYear()得到四位的年份,<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.getMonth()得到月份,dateObj.getDate()得到日,dateObj.getDay()得到日期几,<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.getHours()得到小时,dateObj.getMinutes()得到分,dateObj.getSeconds()得到秒,<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.setTime(value)设置时间,dateObj.setYear(val)设置年,<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.setMonth(val)设置月,dateObj.setDate(val)设置日,<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.setDay(val)设置星期几,dateObj.setHours设置小时,dateObj.setMinutes(val)设置分,<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> dateObj.setSeconds(val)设置秒 [注意:此日期时间从0开始计]<br style=\"margin:0px;padding:0px;list-style-type:none;\" />43. FRAME的表示方式: <br style=\"margin:0px;padding:0px;list-style-type:none;\" /> [window.]frames[n].ObjFuncVarName,frames["frameName"].ObjFuncVarName,frameName.ObjFuncVarName<br style=\"margin:0px;padding:0px;list-style-type:none;\" />44. parent代表父亲对象,top代表最顶端对象<br style=\"margin:0px;padding:0px;list-style-type:none;\" />45. 打开子窗口的父窗口为:opener<br style=\"margin:0px;padding:0px;list-style-type:none;\" />46. 表示当前所属的位置:this<br style=\"margin:0px;padding:0px;list-style-type:none;\" />47. 当在超链接中调用JS函数时用:(javascript :)来开头后面加函数名<br style=\"margin:0px;padding:0px;list-style-type:none;\" />48. 在老的浏览器中不执行此JS:<!-- //--><br style=\"margin:0px;padding:0px;list-style-type:none;\" />49. 引用一个文件式的JS:<script type="text/javascript" src="aaa.js"></script><br style=\"margin:0px;padding:0px;list-style-type:none;\" />50. 指定在不支持脚本的浏览器显示的HTML:<noscript></noscript><br style=\"margin:0px;padding:0px;list-style-type:none;\" />51. 当超链和onCLICK事件都有时,则老版本的浏览器转向a.html,否则转向b.html.<br style=\"margin:0px;padding:0px;list-style-type:none;\" /> 例:<a href="a.html" onclick="location.href='b.html';return false">dfsadf</a><br style=\"margin:0px;padding:0px;list-style-type:none;\" />52. JS的内建对象有:<br style=\"margin:0px;padding:0px;list-style-type:none;\" />Array,Boolean,Date,Error,EvalError,<br style=\"margin:0px;padding:0px;list-style-type:none;\" />Function,Math,Number,Object,RangeError,ReferenceError,<br style=\"margin:0px;padding:0px;list-style-type:none;\" />RegExp,String,SyntaxError,TypeError,URIError<br style=\"margin:0px;padding:0px;list-style-type:none;\" />53. JS中的换行:\\n</p><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('24', '<p>教程虽然用到AI,不过绘制的仅是线稿及简单的色块,没有这款软件的完全可以在PS中完成。面具构造并不复杂,不过质感部分刻画比较麻烦,想省时间的话可以直接使用相关的金属素材。</p><p>最终效果</p><center><img border=\"0\" height=\"488\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445ee39c5.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>1、打开Illustrator新建一个文档,首先我们应该有个好的参考,在中间创建圆形和线条。我们现在只创建一半就可以,用钢笔工具勾勒出大致的轮廓。</p><center><img border=\"0\" height=\"597\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445f66d78.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>2、将面具的每个部位都创建成单独的形状,这有利于我们后面在Photoshop中进行填色和填充纹理。</p><center><img border=\"0\" height=\"612\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445f89318.jpg\" width=\"525\" style=\"border-style:none;max-width:680px;\" /></center><center><img border=\"0\" height=\"599\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445fa7da7.jpg\" width=\"536\" style=\"border-style:none;max-width:680px;\" /></center><center><img border=\"0\" height=\"630\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445fc68ae.jpg\" width=\"539\" style=\"border-style:none;max-width:680px;\" /></center><p>3、所有的形状都创建完了之后,使用不同明度的灰色填充来看看一切是否跟想象中的一样。</p><center><img border=\"0\" height=\"623\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445fe8dd9.jpg\" width=\"522\" style=\"border-style:none;max-width:680px;\" /></center><p>4、将创建好的半个面具复制一份,对称到左边。</p><center><img border=\"0\" height=\"598\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5446012212.jpg\" width=\"462\" style=\"border-style:none;max-width:680px;\" /></center><p>5、在Photoshop中将面具的每一部分都粘贴为单独的图层,并且填充上颜色。钢铁侠的基本颜色是金色和紫色。像下图一样继续添加一些阴影和微妙的细节。</p><center><img border=\"0\" height=\"692\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c544602b9ee.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>6、为面具的每一个部位上方都添加一个图层,设置为剪贴蒙版(图层>创建剪贴蒙版),将每个空白图层都填充为黑色,将图层混合模式设置为颜色减淡。选择非常柔软的白色画笔,不透明度选择10-20%,开始在一些区域绘制出高光。</p><center><img border=\"0\" height=\"749\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c544603cd3c.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>7、重复上一步的操作,不过这次图层的混合模式改为滤色,在图层上绘制出更多高光。</p><center><img border=\"0\" height=\"780\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5446061283.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>8、添加更多的高光,尤其是嘴部和紫色部分。</p><center><img border=\"0\" height=\"763\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c54460836a7.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>9、接下来我们开始添加纹理。仍然记住为每一部分都加上纹理,移动纹理的位置来增加立体感。这里我用到的是一张螺纹金属材质。</p><center><img height=\"910\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c54460a3e30.jpg\" width=\"674\" style=\"border:0px none;max-width:680px;margin:0px;padding:0px;list-style:none;width:600px;height:689px;\" /></center><center><img border=\"0\" height=\"739\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c54460ede78.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>10、创建两个眼睛形状,填充为蓝色,再添加上基本的纹理,最后再应用一定的高斯模糊。</p><center><img border=\"0\" height=\"787\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c544611cec7.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>11、在眼睛图层上方新建一个图层,跟眼睛图层一起创建一个图层组,将图层组的混合模式设置为滤色。使用柔边白色画笔在眼睛上绘制出两个亮点。在图层组里新建一个图层,绘制出两个蓝色亮点。</p><center><img border=\"0\" height=\"719\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5446143554.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>12、复制图层组,删掉蓝色图层。将图层组的混合模式设置为颜色减淡。清除掉两个白色亮点图层中的内容,创建两个更小但是更亮的亮点。颜色减淡模式将会使这种光效显得非常真实。</p><center><img border=\"0\" height=\"748\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c54461679f0.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p>最终效果:</p><center><img border=\"0\" height=\"488\" src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5445ee39c5.jpg\" width=\"600\" style=\"border-style:none;max-width:680px;\" /></center><p><br /></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('29', '<p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\">下面列了五个例子来详细说明,这几个例子的主要功能是:在5秒后,自动跳转到同目录下的hello.html(根据自己需要自行修改)文件。<br /><br /><strong>1) html的实现</strong></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><head> <br /><meta http-equiv="refresh" content="10"><br /><meta http-equiv="refresh" content="5;url="http://www.<span style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\">abc3210</span>.com"> <br /></head><br /><br />优点:简单<br /><br />缺点:Struts Tiles中无法使用</p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><br /></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><strong>2) javascript的实现</strong></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><script language="javascript" type="text/javascript"> <br />window.location.href='hello.html'; <br />setTimeout("javascript:location.href='http://www.abc3210.com'", 5000); <br /></script><br /></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\">优点:灵活,可以结合更多的其他功能<br /><br />缺点:受到不同浏览器的影响</p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><br /><strong>3) 结合了倒数的javascript实现(IE)</strong><br /><br /><span id="totalSecond">5</span> <br /><script language="javascript" type="text/javascript"> <br />var second = totalSecond.innerText; <br />setInterval("redirect()", 1000); <br />function redirect(){ <br />totalSecond.innerText=--second; <br />if(second<0) location.href='http://www.abc3210.com';<br />} <br /></script><br /></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\">优点:更人性化<br /><br />缺点:firefox不支持(firefox不支持span、div等的innerText属性)<br /><br /><strong>3') 结合了倒数的javascript实现(firefox)</strong><br /><br /><script language="javascript" type="text/javascript"><br />var second = document.getElementById('totalSecond').textContent;<br />setInterval("redirect()", 1000);<br />function redirect() { <br />document.getElementById('totalSecond').textContent = --second; <br />if (second < 0) location.href = 'http://www.abc3210.com'; } <br /></script><br /></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><strong>4) 解决Firefox不支持innerText的问题</strong></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><span id="totalSecond">5</span> <br /><script language="javascript" type="text/javascript"> <br />if(navigator.appName.indexOf("Explorer") > -1){ <br />document.getElementById('totalSecond').innerText = "my text innerText"; <br />} else{ <br />document.getElementById('totalSecond').textContent = "my text textContent"; <br />} <br /></script><br /></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><strong>5) 整合3)和3')</strong></p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"><span id="totalSecond">5</span> <br /><script language="javascript" type="text/javascript"><br />var second = document.getElementById('totalSecond').textContent; <br />if (navigator.appName.indexOf("Explorer") > -1) { <br />second = document.getElementById('totalSecond').innerText;<br />} else { <br /> second = document.getElementById('totalSecond').textContent; <br />} <br />setInterval("redirect()", 1000); <br />function redirect() { <br />if (second < 0) { <br /> location.href = 'http://www.abc3210.com'; <br />} else { <br /> if (navigator.appName.indexOf("Explorer") > -1) { <br /> document.getElementById('totalSecond').innerText = second--; <br /> } else { <br /> document.getElementById('totalSecond').textContent = second--; <br /> } <br /> } <br />} </p><p style=\"padding:0px;font-size:14px;line-height:25px;background-color:#ffffff;color:#222222;margin-top:0px;margin-bottom:0px;\"></script></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('30', '<p style=\"text-indent:2em;\">alt属性<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 为不能显示图像、窗体或applets的用户代理(UA),alt属性用来指定替换文字。替换文字的语言由lang属性指定。来源:How to specify alternate text.<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> Alt属性(注意是“属性”而不是“标签”)包括替换说明,对于图像和图像热点是必须的。它只能用在img、area和input元素中(包括applet元素)。对于input元素,alt属性意在用来替换提交按钮的图片。比如:<input type="image" src="image.gif" alt="Submit" />.<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 使用alt属性是为了给那些不能看到你文档中图像的浏览者提供文字说明。这包括那些使用本来就不支持图像显示或者图像显示被关闭的浏览器的用户,视觉障碍的用户和使用屏幕阅读器的用户。替换文字是用来替代图像而不是提供额外说明文字的。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 在写替换文字前仔细想想,保证那些文字确实为那些看不到图像的人提供了说明信息,并且在上下文中有意义。对于那些装饰性的图片可以使用空的值(alt="",引号中间没有空格),而不是使用不相关的替换文字比如“blue bullet”或者“spacer.gif”。不要忽略它,如果你忽略了,那么一些屏幕阅读器会直接阅读图像文件的文件名,那些文字浏览器,比如Lynx会显示图像文件的文件名,而那对于你的浏览者就没什么用了。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 包含文字的图像图片设置替换文字是最简单的,图像中包含的文字一般来说就可以作为alt属性值。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 至于替换文字的长度,看看WCAG 2.0(网站内容可用性指南2.0)是怎么说的:Alt属性值得长度必须少于100个英文字符或者用户必须保证替换文字尽可能的短。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 即使你想让它显示为提示(tool tip),也不要给文字元素使用alt属性,这并不是它的用法。至今据我所知,那样做仅能在Windows的IE浏览器和古老的Netscape 4.*(windows版本)有效。没有一个Mac的浏览器会将它显示为提示(tool tip)。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 当浏览器把替换文字显示为提示(tool tip)后,那些错误使用alt属性的行为也受到了鼓励。一些人开始写无意思的替换文字,因为他们趋向于认为它是一个额外的说明信息,而不是不能显示图像的替换。其他人可能不想让提示(tool tip)出现,然后就完全忽略了写alt属性值。这些错误的做法,都给那些不能看到图像的浏览者造成了困难。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 额外的说明信息和非本质的信息请使用title属性。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" />title属性<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> title属性为设置该属性的元素提供建议性的信息。来源: The title attribute.<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> title属性可以用在除了base,basefont,head,html,meta,param,script和title之外的所有标签。但是并不是必须的。可能这正是为什么很多人不明白何时使用它。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 使用title属性提供非本质的额外信息。大部分的可视化浏览器在鼠标悬浮在特定元素上时显示title文字为提示信息(tool tip),然而这又由制造商来决定如何渲染title文字。一些浏览器会将title文字显示在状态栏里。比如早期版本的Safari浏览器。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> title属性有一个很好的用途,即为链接添加描述性文字,特别是当连接本身并不是十分清楚的表达了链接的目的。这样就使得访问者知道那些链接将会带他们到什么地方,他们就不会加载一个可能完全不感兴趣的页面。另外一个潜在的应用就是为图像提供额外的说明信息,比如日期或者其他非本质的信息。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> title属性值可以比alt属性值设置的更长。不过要注意的是,有些浏览器会截断过长的文字(比如工具提示或其他)。比如Mozilla核心的浏览器只能显示最先的60个字符。这被认为是一个Mozilla bug,这是你要注意的。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" />使用前先考虑<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 我的建议是保证替换文字(alt text)精要。在大多数的应用里,都应该被留白,alt=""(注意两引号中没有空格)。 想想那些图像,为那些浏览者提供了什么样的信息,你应该用什么文字去描述它,或者你该为看不到图像的人提供什么信息? 将替换文字写成“照片:站在大楼外的CEO,穿着灰色西装和黑色领带,望着天”对于看不到图像的人真的有帮助?如果你觉得是,那么你就写吧。在很多情况下,我觉得让替换文字留白比较好。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 对于title属性,比较难于给出严格的使用说明。我大部分用在那些不能自我释意的链接上,比如同一页面上的相同的链接文字,不同的链接页面。有时候也为一些按钮或者表单元素提供更多的说明文字。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" />更长的描述<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 当一个图片需要更加长的描述,而超过alt属性的限制,那么还有一些选择。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> longdesc属性可以用来提供链接到一个包含图片文字描述的单独页面。这就意味着把浏览者链接到另外的页面,这可能会造成理解上的困难。另外浏览器对于longdesc属性的支持也是不一致的,并且不是非常好。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> longdesc属性可以包含一个链接到当前文档的其他部分(锚点)来取代链接到另外的页面。在Accessibilityfootnotes, Andy Clarke很好的解释说明了如何应用。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 描述链接(D links)可以用来补充longdesc。一个描述链接就是一个常规的链接,连接到含有替换文字的页面。该链接被置于图像的旁边,并且在所有浏览器中都是可是的。对于它的有效性人们有很多不同意见,我的个人意见不大喜欢这个注意。WCAG也是,在他们的工作草案HTML Techniques for WCAG 2.0中,描述链接是被“不赞成”的。<br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /><br style=\"color:#222222;font-size:14px;line-height:25px;background-color:#ffffff;\" /> 如果对图片的长的描述对于任何浏览者都有用,那么你得考虑让它简单的显示在同一个文档里面,而不是链接到其他页面里或者藏起来。这样每个人都可以阅读到。这是一种简单低技术含量的方法。</p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('34', '<p style=\"text-align:center;\"><a href=\"http://www.shuipfcms.com/demo/file/2013/06/51c5b06e7462d.jpg\" title=\"点击查看原图\" target=\"_blank\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5b06e7462d.jpg\" id=\"bigimg\" alt=\"点击查看原图\" style=\"border:1px solid #eeeeee;background-color:#fafafa;padding:5px;margin:10px;display:inline-block;max-width:850px;\" /></a><a href=\"http://www.shuipfcms.com/demo/file/2013/06/51c5b071827da.jpg\" title=\"点击查看原图\" target=\"_blank\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5b071827da.jpg\" id=\"bigimg\" alt=\"点击查看原图\" style=\"border:1px solid #eeeeee;background-color:#fafafa;padding:5px;margin:10px;display:inline-block;max-width:850px;\" /></a><a href=\"http://www.shuipfcms.com/demo/file/2013/06/51c5b0736d7c1.jpg\" title=\"点击查看原图\" target=\"_blank\"><img src=\"http://www.shuipfcms.com/demo/file/2013/06/51c5b0736d7c1.jpg\" id=\"bigimg\" alt=\"点击查看原图\" style=\"border:1px solid #eeeeee;background-color:#fafafa;padding:5px;margin:10px;display:inline-block;max-width:850px;\" /></a></p>', '2', '10000', '', '0', '1', '', '');
INSERT INTO `www_article_data` VALUES ('35', '<p>\r\n <img src=\"/d/160428/t0192f517982256c1c5.jpg\" alt=\"\">\r\n</p>', '2', '10000', 'show_da.php', '0', '1', '', '');
-- ----------------------------
-- Table structure for www_attachment
-- ----------------------------
DROP TABLE IF EXISTS `www_attachment`;
CREATE TABLE `www_attachment` (
`aid` int(10) unsigned NOT NULL auto_increment COMMENT '附件ID',
`module` char(15) NOT NULL default '' COMMENT '模块名称',
`catid` smallint(5) NOT NULL default '0' COMMENT '栏目ID',
`filename` char(50) NOT NULL default '' COMMENT '上传附件名称',
`filepath` char(200) NOT NULL default '' COMMENT '附件路径',
`filesize` int(10) unsigned NOT NULL default '0' COMMENT '附件大小',
`fileext` char(10) NOT NULL default '' COMMENT '附件扩展名',
`isimage` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否为图片 1为图片',
`isthumb` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否为缩略图 1为缩略图',
`userid` mediumint(8) unsigned NOT NULL default '0' COMMENT '上传用户ID',
`isadmin` tinyint(1) NOT NULL default '0' COMMENT '是否后台用户上传',
`uploadtime` int(10) unsigned NOT NULL default '0' COMMENT '上传时间',
`uploadip` char(15) NOT NULL default '' COMMENT '上传ip',
`status` tinyint(1) NOT NULL default '0' COMMENT '附件使用状态',
`authcode` char(32) NOT NULL default '' COMMENT '附件路径MD5值',
PRIMARY KEY (`aid`),
KEY `authcode` (`authcode`)
) ENGINE=MyISAM AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COMMENT='附件表';
-- ----------------------------
-- Records of www_attachment
-- ----------------------------
INSERT INTO `www_attachment` VALUES ('1', 'content', '16', '51c52b189fa73.jpg', 'content/2016/04/57217c9398989.jpg', '162', 'jpg', '1', '0', '0', '1', '1461812371', '127.0.0.1', '1', '40371e4bed9ab2653cd3f3db0bff3681');
INSERT INTO `www_attachment` VALUES ('2', 'content', '25', '51c5b0d807938.jpg', 'content/2016/05/57330041d2cc3.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '4fff6883cb60c181d96b8b4945127e5e');
INSERT INTO `www_attachment` VALUES ('3', 'content', '25', '51c5b0d807938.jpg', 'content/2016/05/57330041eccf8.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '6e045c361c380d111b974f6ac46e9a68');
INSERT INTO `www_attachment` VALUES ('4', 'content', '25', '51c5b0d854b31.jpg', 'content/2016/05/573300420002f.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '84fe5ddd5d68972b70b35e7aaab2a6de');
INSERT INTO `www_attachment` VALUES ('5', 'content', '25', '51c5b0d854b31.jpg', 'content/2016/05/5733004207617.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '474842f174d389c60bad779e57bc704c');
INSERT INTO `www_attachment` VALUES ('6', 'content', '25', '51c5b0d87efc8.jpg', 'content/2016/05/573300420ea07.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'd16440115ee01fc100baa45b664af7ee');
INSERT INTO `www_attachment` VALUES ('7', 'content', '25', '51c5b0d87efc8.jpg', 'content/2016/05/5733004215da0.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '917a93608b507cd3499c7ddd6c91d7d0');
INSERT INTO `www_attachment` VALUES ('8', 'content', '25', '51c5b0d8b6a5e.jpg', 'content/2016/05/573300421d280.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'e00483fe966eddc60389d4e97bcfb086');
INSERT INTO `www_attachment` VALUES ('9', 'content', '25', '51c5b0d8b6a5e.jpg', 'content/2016/05/57330042246b9.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'f7df3439cf2baea1a2ea2b82461102d3');
INSERT INTO `www_attachment` VALUES ('10', 'content', '25', '51c5b0d8e2dd1.jpg', 'content/2016/05/573300422bb1a.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '2dd55e863fcdc62bfb2b275d0d8c1c3a');
INSERT INTO `www_attachment` VALUES ('11', 'content', '25', '51c5b0d8e2dd1.jpg', 'content/2016/05/5733004232f9c.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '87b4d3de1e5578b399cc6d46538f5e9f');
INSERT INTO `www_attachment` VALUES ('12', 'content', '25', '51c5b0d9151f7.jpg', 'content/2016/05/573300423c6cb.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'a4b05a9b7f05ba8c783114981617426a');
INSERT INTO `www_attachment` VALUES ('13', 'content', '25', '51c5b0d9151f7.jpg', 'content/2016/05/5733004245bca.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '419984fca6556c1adac370bc6c6d8a55');
INSERT INTO `www_attachment` VALUES ('14', 'content', '25', '51c5b0d940b7f.jpg', 'content/2016/05/573300424f793.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '45e2645df40866de073c97edc3839aae');
INSERT INTO `www_attachment` VALUES ('15', 'content', '25', '51c5b0d940b7f.jpg', 'content/2016/05/5733004258a9b.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '10bd766b48e0894e6dce4eeb5eec5b6b');
INSERT INTO `www_attachment` VALUES ('16', 'content', '25', '51c5b0d967dfb.jpg', 'content/2016/05/5733004261ff7.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'b91be2784d03f8404e7136d41b938fdb');
INSERT INTO `www_attachment` VALUES ('17', 'content', '25', '51c5b0d967dfb.jpg', 'content/2016/05/573300426bc86.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '430f69f9f0c6f9fd7ea83e3bc184394d');
INSERT INTO `www_attachment` VALUES ('18', 'content', '25', '51c5b0d999510.jpg', 'content/2016/05/5733004275331.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '59075353f0a81724a061cfe4e124a80e');
INSERT INTO `www_attachment` VALUES ('19', 'content', '25', '51c5b0d999510.jpg', 'content/2016/05/573300427ee76.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '75b96d912d1f45a87e95924095453b1b');
INSERT INTO `www_attachment` VALUES ('20', 'content', '25', '51c5b0d9c1713.jpg', 'content/2016/05/5733004287dc0.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '5a796e01e3dbb624bb1864b17e63c48f');
INSERT INTO `www_attachment` VALUES ('21', 'content', '25', '51c5b0d9c1713.jpg', 'content/2016/05/5733004290080.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '42628d5edf411d602c0f126f1cc8e264');
INSERT INTO `www_attachment` VALUES ('22', 'content', '25', '51c5b0d9edf92.jpg', 'content/2016/05/5733004298b4e.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '690f176572cad95f5aac438a2e136f97');
INSERT INTO `www_attachment` VALUES ('23', 'content', '25', '51c5b0d9edf92.jpg', 'content/2016/05/57330042a0859.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'bcef2f39a42dda2db068cbff9c1d15c6');
INSERT INTO `www_attachment` VALUES ('24', 'content', '25', '51c5b0da373ac.jpg', 'content/2016/05/57330042a7e54.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'aa211e8bc7fab2f348a3f90fbce9e43c');
INSERT INTO `www_attachment` VALUES ('25', 'content', '25', '51c5b0da373ac.jpg', 'content/2016/05/57330042af4de.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'd9766612edb41948ad3ad845af3a2a0a');
INSERT INTO `www_attachment` VALUES ('26', 'content', '25', '51c5b0da6301e.jpg', 'content/2016/05/57330042b7906.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'f507ba06a7d8f3afbbe6f5665319678d');
INSERT INTO `www_attachment` VALUES ('27', 'content', '25', '51c5b0da6301e.jpg', 'content/2016/05/57330042bffac.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '321da96e8690b8ea4be39ffe529bab0f');
INSERT INTO `www_attachment` VALUES ('28', 'content', '25', '51c5b0da8e273.jpg', 'content/2016/05/57330042c86a8.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '3b4619c417aad5ca32194d4a362d700b');
INSERT INTO `www_attachment` VALUES ('29', 'content', '25', '51c5b0da8e273.jpg', 'content/2016/05/57330042d0f48.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'a7678e5fad124790ddaa0233f4aaa1b9');
INSERT INTO `www_attachment` VALUES ('30', 'content', '25', '51c5b0dac677c.jpg', 'content/2016/05/57330042d93ad.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '7b8111e3b9fcba5c40141f8b83fc1445');
INSERT INTO `www_attachment` VALUES ('31', 'content', '25', '51c5b0dac677c.jpg', 'content/2016/05/57330042e0f26.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '09e51d57dadc28657c208a0eb5b61457');
INSERT INTO `www_attachment` VALUES ('32', 'content', '25', '51c5b0daee524.jpg', 'content/2016/05/57330042e890e.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '3b26d9e218e00510fef06b732ac6eb8b');
INSERT INTO `www_attachment` VALUES ('33', 'content', '25', '51c5b0daee524.jpg', 'content/2016/05/57330042f1acd.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '1c4ed14a5e2614d0e4d879c8865a50aa');
INSERT INTO `www_attachment` VALUES ('34', 'content', '25', '51c5b0db220da.jpg', 'content/2016/05/5733004306d13.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'd38c07ccbe39f4edc57abc2370dd1d1b');
INSERT INTO `www_attachment` VALUES ('35', 'content', '25', '51c5b0db220da.jpg', 'content/2016/05/573300430ff76.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '6b2c419076fc5c106d421de31e79f151');
INSERT INTO `www_attachment` VALUES ('36', 'content', '25', '51c5b0db47b23.jpg', 'content/2016/05/57330043193d5.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '650959f62d485d4c1ca137b8e468047c');
INSERT INTO `www_attachment` VALUES ('37', 'content', '25', '51c5b0db47b23.jpg', 'content/2016/05/573300432276d.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '12ff955574b880f7e06427b840a03236');
INSERT INTO `www_attachment` VALUES ('38', 'content', '25', '51c5b0db7030e.jpg', 'content/2016/05/573300432b0ad.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '111b33323f3757f721d55871dea93d6e');
INSERT INTO `www_attachment` VALUES ('39', 'content', '25', '51c5b0db7030e.jpg', 'content/2016/05/5733004333605.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'd411f0ac982ba95db57a4648822f6ac1');
INSERT INTO `www_attachment` VALUES ('40', 'content', '25', '51c5b0db9f2b2.jpg', 'content/2016/05/573300433c0fd.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '0174fa146f1ae2e6b16ddc2db569559c');
INSERT INTO `www_attachment` VALUES ('41', 'content', '25', '51c5b0db9f2b2.jpg', 'content/2016/05/57330043447bf.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'aa64f1bdc113ad14f6b814e48a4c2ef3');
INSERT INTO `www_attachment` VALUES ('42', 'content', '25', '51c5b0dbc523a.jpg', 'content/2016/05/573300434c522.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '2e2f119d0e7b51ae1de2df5c6835f7c7');
INSERT INTO `www_attachment` VALUES ('43', 'content', '25', '51c5b0dbc523a.jpg', 'content/2016/05/5733004353861.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '3ae7936608568b34a8963005518c53d0');
INSERT INTO `www_attachment` VALUES ('44', 'content', '25', '51c5b0dc05631.jpg', 'content/2016/05/573300435ad71.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'dfa76d9b74faf127767272439d4030e8');
INSERT INTO `www_attachment` VALUES ('45', 'content', '25', '51c5b0dc05631.jpg', 'content/2016/05/5733004362281.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'd372ecbae5e5bc89140c59f138a5d0a4');
INSERT INTO `www_attachment` VALUES ('46', 'content', '25', '51c5b0dc2af53.jpg', 'content/2016/05/573300436be2b.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '26585c76080e84c3b2a74d1418207b29');
INSERT INTO `www_attachment` VALUES ('47', 'content', '25', '51c5b0dc2af53.jpg', 'content/2016/05/5733004375384.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '5c4aa526b6dea38e648c099dfbc84d6e');
INSERT INTO `www_attachment` VALUES ('48', 'content', '25', '51c5b0dc53f9d.jpg', 'content/2016/05/573300437e9c4.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '14611847df455cb79e05dfd76eddc763');
INSERT INTO `www_attachment` VALUES ('49', 'content', '25', '51c5b0dc53f9d.jpg', 'content/2016/05/57330043888b5.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '23fc7834498a2e423b16f95fc6a30585');
INSERT INTO `www_attachment` VALUES ('50', 'content', '25', '51c5b0dc7ba03.jpg', 'content/2016/05/5733004391ca8.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '730f486ed4a0f6c4a215d7f44b09210c');
INSERT INTO `www_attachment` VALUES ('51', 'content', '25', '51c5b0dc7ba03.jpg', 'content/2016/05/573300439bfd2.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', 'd291d454dac5a099eb7dcfd034627d9c');
INSERT INTO `www_attachment` VALUES ('52', 'content', '25', '51c5b0dc9fa40.jpg', 'content/2016/05/57330043a484b.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '8d9e71c17c17e2e5f69972aca2c6247f');
INSERT INTO `www_attachment` VALUES ('53', 'content', '25', '51c5b0dc9fa40.jpg', 'content/2016/05/57330043ac4ab.jpg', '162', 'jpg', '1', '0', '0', '1', '1462960193', '127.0.0.1', '1', '166345141344f47737ff98b16e95919a');
-- ----------------------------
-- Table structure for www_attachment_index
-- ----------------------------
DROP TABLE IF EXISTS `www_attachment_index`;
CREATE TABLE `www_attachment_index` (
`keyid` char(30) NOT NULL default '' COMMENT '关联id',
`aid` char(10) NOT NULL default '' COMMENT '附件ID',
KEY `keyid` (`keyid`),
KEY `aid` (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='附件关系表';
-- ----------------------------
-- Records of www_attachment_index
-- ----------------------------
INSERT INTO `www_attachment_index` VALUES ('c-16-10', '1');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '2');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '3');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '4');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '5');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '6');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '7');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '8');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '9');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '10');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '11');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '12');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '13');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '14');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '15');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '16');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '17');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '18');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '19');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '20');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '21');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '22');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '23');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '24');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '25');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '26');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '27');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '28');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '29');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '30');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '31');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '32');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '33');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '34');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '35');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '36');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '37');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '38');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '39');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '40');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '41');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '42');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '43');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '44');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '45');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '46');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '47');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '48');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '49');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '50');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '51');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '52');
INSERT INTO `www_attachment_index` VALUES ('c-25-35', '53');
-- ----------------------------
-- Table structure for www_behavior
-- ----------------------------
DROP TABLE IF EXISTS `www_behavior`;
CREATE TABLE `www_behavior` (
`id` int(11) unsigned NOT NULL auto_increment COMMENT '主键',
`name` char(30) NOT NULL default '' COMMENT '行为唯一标识',
`title` char(80) NOT NULL default '' COMMENT '行为说明',
`remark` char(140) NOT NULL default '' COMMENT '行为描述',
`type` tinyint(1) NOT NULL default '1' COMMENT '1-控制器,2-视图',
`status` tinyint(2) NOT NULL default '0' COMMENT '状态(0:禁用,1:正常)',
`system` tinyint(1) NOT NULL default '0' COMMENT '是否系统',
`module` char(20) NOT NULL default '' COMMENT '所属模块',
`datetime` int(11) unsigned NOT NULL default '0' COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COMMENT='系统行为表';
-- ----------------------------
-- Records of www_behavior
-- ----------------------------
INSERT INTO `www_behavior` VALUES ('1', 'app_init', '应用初始化标签位', '应用初始化标签位', '1', '1', '1', '', '1381021393');
INSERT INTO `www_behavior` VALUES ('2', 'path_info', 'PATH_INFO检测标签位', 'PATH_INFO检测标签位', '1', '1', '1', '', '1381021411');
INSERT INTO `www_behavior` VALUES ('3', 'app_begin', '应用开始标签位', '应用开始标签位', '1', '1', '1', '', '1381021424');
INSERT INTO `www_behavior` VALUES ('4', 'action_name', '操作方法名标签位', '操作方法名标签位', '1', '1', '1', '', '1381021437');
INSERT INTO `www_behavior` VALUES ('5', 'action_begin', '控制器开始标签位', '控制器开始标签位', '1', '1', '1', '', '1381021450');
INSERT INTO `www_behavior` VALUES ('6', 'view_begin', '视图输出开始标签位', '视图输出开始标签位', '1', '1', '1', '', '1381021463');
INSERT INTO `www_behavior` VALUES ('7', 'view_parse', '视图解析标签位', '视图解析标签位', '1', '1', '1', '', '1381021476');
INSERT INTO `www_behavior` VALUES ('8', 'template_filter', '模板内容解析标签位', '模板内容解析标签位', '1', '1', '1', '', '1381021488');
INSERT INTO `www_behavior` VALUES ('9', 'view_filter', '视图输出过滤标签位', '视图输出过滤标签位', '1', '1', '1', '', '1381021621');
INSERT INTO `www_behavior` VALUES ('10', 'view_end', '视图输出结束标签位', '视图输出结束标签位', '1', '1', '1', '', '1381021631');
INSERT INTO `www_behavior` VALUES ('11', 'action_end', '控制器结束标签位', '控制器结束标签位', '1', '1', '1', '', '1381021642');
INSERT INTO `www_behavior` VALUES ('12', 'app_end', '应用结束标签位', '应用结束标签位', '1', '1', '1', '', '1381021654');
INSERT INTO `www_behavior` VALUES ('13', 'appframe_rbac_init', '后台权限控制', '后台权限控制', '1', '1', '1', '', '1381023560');
INSERT INTO `www_behavior` VALUES ('14', 'content_delete_end', '内容删除结束行为标签', '内容模型行为标签', '1', '1', '0', 'Comments', '1461744988');
-- ----------------------------
-- Table structure for www_behavior_log
-- ----------------------------
DROP TABLE IF EXISTS `www_behavior_log`;
CREATE TABLE `www_behavior_log` (
`id` int(10) NOT NULL auto_increment COMMENT '主键',
`ruleid` int(10) NOT NULL default '0' COMMENT '行为ID',
`guid` char(50) NOT NULL default '' COMMENT '标识',
`create_time` int(10) NOT NULL default '0' COMMENT '执行行为的时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='行为日志';
-- ----------------------------
-- Records of www_behavior_log
-- ----------------------------
-- ----------------------------
-- Table structure for www_behavior_rule
-- ----------------------------
DROP TABLE IF EXISTS `www_behavior_rule`;
CREATE TABLE `www_behavior_rule` (
`ruleid` int(11) NOT NULL auto_increment COMMENT '主键',
`behaviorid` int(11) NOT NULL default '0' COMMENT '行为id',
`system` tinyint(1) NOT NULL default '0' COMMENT '是否系统',
`module` char(20) NOT NULL default '' COMMENT '规则所属模块',
`addons` char(20) NOT NULL default '' COMMENT '规则所属插件',
`rule` text COMMENT '行为规则',
`listorder` tinyint(3) NOT NULL default '0' COMMENT '排序',
`datetime` int(10) NOT NULL default '0' COMMENT '添加时间',
PRIMARY KEY (`ruleid`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='行为规则表';
-- ----------------------------
-- Records of www_behavior_rule
-- ----------------------------
INSERT INTO `www_behavior_rule` VALUES ('1', '1', '1', '', '', 'phpfile:BuildLiteBehavior', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('2', '3', '1', '', '', 'phpfile:ReadHtmlCacheBehavior', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('3', '12', '1', '', '', 'phpfile:ShowPageTraceBehavior', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('4', '7', '1', '', '', 'phpfile:ParseTemplateBehavior', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('5', '8', '1', '', '', 'phpfile:ContentReplaceBehavior', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('6', '9', '1', '', '', 'phpfile:WriteHtmlCacheBehavior', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('7', '1', '1', '', '', 'phpfile:AppInitBehavior|module:Common', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('8', '3', '1', '', '', 'phpfile:AppBeginBehavior|module:Common', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('9', '6', '1', '', '', 'phpfile:ViewBeginBehavior|module:Common', '0', '1381021954');
INSERT INTO `www_behavior_rule` VALUES ('10', '14', '0', 'Comments', '', 'phpfile:CommentsApi|module:Comments', '0', '1461744988');
-- ----------------------------
-- Table structure for www_cache
-- ----------------------------
DROP TABLE IF EXISTS `www_cache`;
CREATE TABLE `www_cache` (
`id` int(10) NOT NULL auto_increment COMMENT '自增长ID',
`key` char(100) NOT NULL default '' COMMENT '缓存key值',
`name` char(100) NOT NULL default '' COMMENT '名称',
`module` char(20) NOT NULL default '' COMMENT '模块名称',
`model` char(30) NOT NULL default '' COMMENT '模型名称',
`action` char(30) NOT NULL default '' COMMENT '方法名',
`param` char(255) NOT NULL default '' COMMENT '参数',
`system` tinyint(1) NOT NULL default '0' COMMENT '是否系统',
PRIMARY KEY (`id`),
KEY `ckey` (`key`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT='缓存更新列队';
-- ----------------------------
-- Records of www_cache
-- ----------------------------
INSERT INTO `www_cache` VALUES ('1', 'Config', '网站配置', '', 'Config', 'config_cache', '', '1');
INSERT INTO `www_cache` VALUES ('2', 'Module', '可用模块列表', '', 'Module', 'module_cache', '', '1');
INSERT INTO `www_cache` VALUES ('3', 'Behavior', '行为列表', '', 'Behavior', 'behavior_cache', '', '1');
INSERT INTO `www_cache` VALUES ('4', 'Menu', '后台菜单', 'Admin', 'Menu', 'menu_cache', '', '0');
INSERT INTO `www_cache` VALUES ('5', 'Category', '栏目索引', 'Content', 'Category', 'category_cache', '', '0');
INSERT INTO `www_cache` VALUES ('6', 'Model', '模型列表', 'Content', 'Model', 'model_cache', '', '0');
INSERT INTO `www_cache` VALUES ('7', 'Urlrules', 'URL规则', 'Content', 'Urlrule', 'urlrule_cache', '', '0');
INSERT INTO `www_cache` VALUES ('8', 'ModelField', '模型字段', 'Content', 'ModelField', 'model_field_cache', '', '0');
INSERT INTO `www_cache` VALUES ('9', 'Position', '推荐位', 'Content', 'Position', 'position_cache', '', '0');
INSERT INTO `www_cache` VALUES ('10', 'Addons', '插件列表', 'Addons', 'Addons', 'addons_cache', '', '0');
INSERT INTO `www_cache` VALUES ('11', 'Comments_setting', '评论配置', 'Comments', 'Comments', 'comments_cache', '', '0');
INSERT INTO `www_cache` VALUES ('12', 'Emotion', '评论表情', 'Comments', 'Emotion', 'emotion_cache', '', '0');
-- ----------------------------
-- Table structure for www_category
-- ----------------------------
DROP TABLE IF EXISTS `www_category`;
CREATE TABLE `www_category` (
`catid` smallint(5) unsigned NOT NULL auto_increment COMMENT '栏目ID',
`module` varchar(15) NOT NULL default '' COMMENT '所属模块',
`type` tinyint(1) unsigned NOT NULL default '0' COMMENT '类别',
`modelid` smallint(5) unsigned NOT NULL default '0' COMMENT '模型ID',
`domain` varchar(200) NOT NULL default '' COMMENT '栏目绑定域名',
`parentid` smallint(5) unsigned NOT NULL default '0' COMMENT '父ID',
`arrparentid` varchar(255) NOT NULL default '' COMMENT '所有父ID',
`child` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否存在子栏目,1存在',
`arrchildid` mediumtext COMMENT '所有子栏目ID',
`caticon` varchar(64) NOT NULL,
`catname` varchar(30) NOT NULL default '' COMMENT '栏目名称',
`image` varchar(100) NOT NULL default '' COMMENT '栏目图片',
`description` mediumtext COMMENT '栏目描述',
`parentdir` varchar(100) NOT NULL default '' COMMENT '父目录',
`catdir` varchar(30) NOT NULL default '' COMMENT '栏目目录',
`url` varchar(100) NOT NULL default '' COMMENT '链接地址',
`hits` int(10) unsigned NOT NULL default '0' COMMENT '栏目点击数',
`setting` mediumtext COMMENT '相关配置信息',
`listorder` smallint(5) unsigned NOT NULL default '0' COMMENT '排序',
`ismenu` tinyint(1) unsigned NOT NULL default '1' COMMENT '是否显示',
`sethtml` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否生成静态',
`letter` varchar(30) NOT NULL default '' COMMENT '栏目拼音',
PRIMARY KEY (`catid`),
KEY `module` (`module`,`parentid`,`listorder`,`catid`),
KEY `siteid` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COMMENT='栏目表';
-- ----------------------------
-- Records of www_category
-- ----------------------------
INSERT INTO `www_category` VALUES ('1', 'content', '0', '1', '', '0', '0', '1', '1,10,11', 'fa fa-home', '网页教程', '', '网页教程-网页设计基础教程DIV+CSS', '', 'jiaocheng', '/index.php?a=lists&catid=1', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:12:\"category.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'wangyejiaocheng');
INSERT INTO `www_category` VALUES ('2', 'content', '0', '1', '', '0', '0', '1', '2,12,13', 'fa fa-vk', '前端开发', '', '前端开发-学习最新前端开发技术', '', 'qianduan', '/index.php?a=lists&catid=2', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:12:\"category.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'qianduankaifa');
INSERT INTO `www_category` VALUES ('3', 'content', '0', '1', '', '0', '0', '1', '3,14,15', 'fa fa-weibo', 'PS教程', '', 'PS教程-学习PS技巧,设计更好的页面', '', 'ps', '/index.php?a=lists&catid=3', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:12:\"category.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'psjiaocheng');
INSERT INTO `www_category` VALUES ('4', 'content', '0', '1', '', '0', '0', '1', '4,16,17', 'fa fa-home', '网页特效', '', '提供各种网页效果,让你的网页更炫丽', '', 'texiao', '/index.php?a=lists&catid=4', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:17:\"category_heng.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'wangyetexiao');
INSERT INTO `www_category` VALUES ('5', 'content', '0', '3', '', '0', '0', '1', '5,18,19', 'fa fa-vk', '建站素材', '', '建站素材-提供网页设计必备素材', '', 'sucai', '/index.php?a=lists&catid=5', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:17:\"category_heng.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'jianzhansucai');
INSERT INTO `www_category` VALUES ('6', 'content', '0', '1', '', '0', '0', '1', '6,20,21', 'fa fa-renren', '网站运营', '', '各种运营知识分享,助站长一臂之力', '', 'yunying', '/index.php?a=lists&catid=6', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:12:\"category.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'wangzhanyunying');
INSERT INTO `www_category` VALUES ('7', 'content', '0', '1', '', '0', '0', '1', '7,22,23', 'fa fa-home', '站长杂谈', '', '站长杂谈-了解互联网第一手资讯', '', 'zatan', '/index.php?a=lists&catid=7', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:12:\"category.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'zhanchangzatan');
INSERT INTO `www_category` VALUES ('8', 'content', '0', '1', '', '0', '0', '1', '8,24,25', 'fa fa-qq', '设计欣赏', '', '设计欣赏-寻找设计灵感提高设计水平', '', 'sheji', '/index.php?a=lists&catid=8', '0', 'a:12:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"category_template\";s:17:\"category_heng.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";N;}', '0', '1', '0', 'shejixinshang');
INSERT INTO `www_category` VALUES ('9', 'content', '0', '2', '', '0', '0', '0', '9', 'fa fa-windows', '常用软件', '', '', '', 'software', '/index.php?a=lists&catid=9', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:17:\"list_software.php\";s:13:\"show_template\";s:17:\"show_download.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'changyongruanjian');
INSERT INTO `www_category` VALUES ('10', 'content', '0', '1', '', '1', '0,1', '0', '10', 'fa fa-qq', 'HTML/XHTML', '', '', 'jiaocheng/', 'html', '/index.php?a=lists&catid=10', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'html/xhtml');
INSERT INTO `www_category` VALUES ('11', 'content', '0', '1', '', '1', '0,1', '0', '11', 'fa fa-weixin', 'Dreamweaver', '', '', 'jiaocheng/', 'dw', '/index.php?a=lists&catid=11', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'dreamweaver');
INSERT INTO `www_category` VALUES ('12', 'content', '0', '1', '', '2', '0,2', '0', '12', 'fa fa-yahoo', 'javascript教程', '', '', 'qianduan/', 'js', '/index.php?a=lists&catid=12', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'javascriptjiaocheng');
INSERT INTO `www_category` VALUES ('13', 'content', '0', '1', '', '2', '0,2', '0', '13', 'fa fa-renren', 'jquery教程', '', '', 'qianduan/', 'jq', '/index.php?a=lists&catid=13', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'jqueryjiaocheng');
INSERT INTO `www_category` VALUES ('14', 'content', '0', '1', '', '3', '0,3', '0', '14', 'fa fa-windows', 'PS网页制作', '', '', 'ps/', 'psweb', '/index.php?a=lists&catid=14', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'pswangyezhizuo');
INSERT INTO `www_category` VALUES ('15', 'content', '0', '1', '', '3', '0,3', '0', '15', 'fa fa-slack', 'PS按钮制作', '', '', 'ps/', 'psbtn', '/index.php?a=lists&catid=15', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'psanniuzhizuo');
INSERT INTO `www_category` VALUES ('16', 'content', '0', '1', '', '4', '0,4', '0', '16', 'fa fa-weixin', 'JS幻灯片', '', '', 'texiao/', 'adjs', '/index.php?a=lists&catid=16', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'jshuandengpian');
INSERT INTO `www_category` VALUES ('17', 'content', '0', '1', '', '4', '0,4', '0', '17', 'fa fa-windows', '导航菜单', '', '', 'texiao/', 'nav', '/index.php?a=lists&catid=17', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'daohangcaidan');
INSERT INTO `www_category` VALUES ('18', 'content', '0', '3', '', '5', '0,5', '0', '18', 'fa fa-vk', 'PNG图标', '', '', 'sucai/', 'png', '/index.php?a=lists&catid=18', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:14:\"show_image.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'pngtubiao');
INSERT INTO `www_category` VALUES ('19', 'content', '0', '3', '', '5', '0,5', '0', '19', 'fa fa-weixin', 'GIF小图标', '', '', 'sucai/', 'gif', '/index.php?a=lists&catid=19', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:14:\"show_image.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'gifxiaotubiao');
INSERT INTO `www_category` VALUES ('20', 'content', '0', '1', '', '6', '0,6', '0', '20', 'fa fa-windows', 'SEO网站优化', '', '', 'yunying/', 'seo', '/index.php?a=lists&catid=20', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'seowangzhanyouhua');
INSERT INTO `www_category` VALUES ('21', 'content', '0', '1', '', '6', '0,6', '0', '21', 'fa fa-vk', '网络营销', '', '', 'yunying/', 'yingxiao', '/index.php?a=lists&catid=21', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'wangluoyingxiao');
INSERT INTO `www_category` VALUES ('22', 'content', '0', '1', '', '7', '0,7', '0', '22', 'fa fa-weixin', '互联网资讯', '', '', 'zatan/', 'zixun', '/index.php?a=lists&catid=22', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'hulianwangzixun');
INSERT INTO `www_category` VALUES ('23', 'content', '0', '1', '', '7', '0,7', '0', '23', 'fa fa-windows', '人物访谈', '', '', 'zatan/', 'fangtan', '/index.php?a=lists&catid=23', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:8:\"show.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'renwufangtan');
INSERT INTO `www_category` VALUES ('24', 'content', '0', '1', '', '8', '0,8', '0', '24', 'fa fa-vk', '酷站欣赏', '', '', 'sheji/', 'web', '/index.php?a=lists&catid=24', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:11:\"show_da.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'kuzhanxinshang');
INSERT INTO `www_category` VALUES ('25', 'content', '0', '1', '', '8', '0,8', '0', '25', 'fa fa-weixin', '标志LOGO', '', '', 'sheji/', 'logo', '/index.php?a=lists&catid=25', '0', 'a:14:{s:6:\"seturl\";s:0:\"\";s:12:\"generatehtml\";s:1:\"1\";s:12:\"generatelish\";s:1:\"0\";s:10:\"meta_title\";s:0:\"\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:13:\"list_template\";s:8:\"list.php\";s:13:\"show_template\";s:11:\"show_da.php\";s:19:\"list_customtemplate\";s:0:\"\";s:6:\"ishtml\";s:1:\"0\";s:9:\"repagenum\";s:2:\"10\";s:14:\"content_ishtml\";s:1:\"0\";s:15:\"category_ruleid\";s:1:\"1\";s:11:\"show_ruleid\";s:1:\"4\";}', '0', '1', '0', 'biaozhilogo');
-- ----------------------------
-- Table structure for www_category_field
-- ----------------------------
DROP TABLE IF EXISTS `www_category_field`;
CREATE TABLE `www_category_field` (
`fid` smallint(6) NOT NULL auto_increment COMMENT '自增长id',
`catid` smallint(5) NOT NULL default '0' COMMENT '栏目ID',
`fieldname` varchar(30) NOT NULL default '' COMMENT '字段名',
`type` varchar(10) NOT NULL default '' COMMENT '类型,input',
`setting` mediumtext COMMENT '其他',
`createtime` int(10) NOT NULL default '0' COMMENT '创建时间',
PRIMARY KEY (`fid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='栏目扩展字段列表';
-- ----------------------------
-- Records of www_category_field
-- ----------------------------
-- ----------------------------
-- Table structure for www_category_priv
-- ----------------------------
DROP TABLE IF EXISTS `www_category_priv`;
CREATE TABLE `www_category_priv` (
`catid` smallint(5) unsigned NOT NULL default '0',
`roleid` smallint(5) unsigned NOT NULL default '0' COMMENT '角色或者组ID',
`is_admin` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否为管理员 1、管理员',
`action` char(30) NOT NULL default '' COMMENT '动作',
KEY `catid` (`catid`,`roleid`,`is_admin`,`action`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='栏目权限表';
-- ----------------------------
-- Records of www_category_priv
-- ----------------------------
-- ----------------------------
-- Table structure for www_comments
-- ----------------------------
DROP TABLE IF EXISTS `www_comments`;
CREATE TABLE `www_comments` (
`id` bigint(20) unsigned NOT NULL auto_increment COMMENT '评论ID',
`comment_id` char(30) NOT NULL COMMENT '所属文章id',
`author` tinytext NOT NULL COMMENT '评论者名称',
`author_email` varchar(100) NOT NULL default '' COMMENT '评论者电邮地址',
`author_url` varchar(200) NOT NULL default '' COMMENT '评论者网址',
`author_ip` varchar(100) NOT NULL default '' COMMENT '评论者的IP地址',
`date` int(11) NOT NULL COMMENT '评论发表时间',
`approved` varchar(20) NOT NULL default '1' COMMENT '评论状态,0为审核,1为正常',
`agent` varchar(255) NOT NULL default '' COMMENT '评论者的客户端信息',
`parent` bigint(20) unsigned NOT NULL default '0' COMMENT '上级评论id',
`user_id` bigint(20) unsigned NOT NULL default '0' COMMENT '评论对应用户id',
`stb` varchar(6) NOT NULL COMMENT '存放副表名',
PRIMARY KEY (`id`),
KEY `comment_id` (`comment_id`),
KEY `approved` (`approved`),
KEY `parent` (`parent`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='评论表';
-- ----------------------------
-- Records of www_comments
-- ----------------------------
INSERT INTO `www_comments` VALUES ('1', 'c-25-35', '我', '[email protected]', 'http://www.baidu.com', '127.0.0.1', '1461813479', '1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:44.0) Gecko/20100101 Firefox/44.0', '0', '0', '1');
INSERT INTO `www_comments` VALUES ('2', 'c-25-35', '我', '[email protected]', 'http://www.baidu.com', '127.0.0.1', '1461813586', '1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:44.0) Gecko/20100101 Firefox/44.0', '1', '0', '1');
-- ----------------------------
-- Table structure for www_comments_data_1
-- ----------------------------
DROP TABLE IF EXISTS `www_comments_data_1`;
CREATE TABLE `www_comments_data_1` (
`id` bigint(20) unsigned NOT NULL COMMENT '评论id',
`comment_id` char(30) NOT NULL COMMENT '所属文章Id',
`content` text NOT NULL COMMENT '评论内容',
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='评论副表1';
-- ----------------------------
-- Records of www_comments_data_1
-- ----------------------------
INSERT INTO `www_comments_data_1` VALUES ('1', 'c-25-35', 'hahahahhah');
INSERT INTO `www_comments_data_1` VALUES ('2', 'c-25-35', '@我,你个笨蛋');
-- ----------------------------
-- Table structure for www_comments_emotion
-- ----------------------------
DROP TABLE IF EXISTS `www_comments_emotion`;
CREATE TABLE `www_comments_emotion` (
`emotion_id` int(10) unsigned NOT NULL auto_increment COMMENT '表情ID',
`emotion_name` varchar(20) NOT NULL default '' COMMENT '表情名称',
`emotion_icon` varchar(50) NOT NULL default '' COMMENT '表情图标',
`vieworder` int(10) unsigned NOT NULL default '0' COMMENT '排序',
`isused` tinyint(3) unsigned NOT NULL default '1' COMMENT '是否使用',
PRIMARY KEY (`emotion_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='表情数据表';
-- ----------------------------
-- Records of www_comments_emotion
-- ----------------------------
-- ----------------------------
-- Table structure for www_comments_field
-- ----------------------------
DROP TABLE IF EXISTS `www_comments_field`;
CREATE TABLE `www_comments_field` (
`fid` smallint(6) NOT NULL auto_increment COMMENT '字段id',
`f` varchar(30) NOT NULL COMMENT '字段名',
`fname` varchar(30) NOT NULL COMMENT '字段标识',
`fzs` varchar(255) NOT NULL COMMENT '注释',
`ftype` varchar(30) NOT NULL COMMENT '字段类型',
`flen` varchar(20) NOT NULL COMMENT '字段长度',
`ismust` tinyint(1) NOT NULL COMMENT '1为必填,0为非必填',
`issystem` tinyint(1) NOT NULL COMMENT '是否添加到主表',
`regular` varchar(255) NOT NULL COMMENT '数据验证正则',
`system` tinyint(1) NOT NULL COMMENT '是否系统字段',
PRIMARY KEY (`fid`),
UNIQUE KEY `fname` (`fname`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='评论自定义字段表';
-- ----------------------------
-- Records of www_comments_field
-- ----------------------------
INSERT INTO `www_comments_field` VALUES ('1', 'author', '昵称', '昵称不能为空!', 'TEXT', '', '1', '1', '', '1');
INSERT INTO `www_comments_field` VALUES ('2', 'author_email', '邮箱', '邮箱不能为空!', 'VARCHAR', '100', '1', '1', '/^[\\w\\-\\.]+@[\\w\\-\\.]+(\\.\\w+)+$/', '1');
INSERT INTO `www_comments_field` VALUES ('3', 'author_url', '网站地址', '网站地址不能为空!', 'VARCHAR', '200', '0', '1', '/^http:\\/\\//', '1');
-- ----------------------------
-- Table structure for www_comments_setting
-- ----------------------------
DROP TABLE IF EXISTS `www_comments_setting`;
CREATE TABLE `www_comments_setting` (
`guest` tinyint(1) NOT NULL COMMENT '是否允许游客评论',
`code` tinyint(1) NOT NULL COMMENT '是否开启验证码',
`check` tinyint(1) NOT NULL COMMENT '是否需要审核',
`stb` tinyint(4) NOT NULL COMMENT '存储分表',
`stbsum` int(4) NOT NULL COMMENT '分表总数',
`order` varchar(20) NOT NULL COMMENT '排序',
`strlength` int(5) NOT NULL COMMENT '允许最大字数',
`status` tinyint(1) NOT NULL COMMENT '关闭/开启评论',
`expire` int(11) NOT NULL COMMENT '评论间隔时间单位秒'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='评论配置';
-- ----------------------------
-- Records of www_comments_setting
-- ----------------------------
INSERT INTO `www_comments_setting` VALUES ('1', '0', '0', '1', '1', 'date DESC', '400', '1', '60');
-- ----------------------------
-- Table structure for www_config
-- ----------------------------
DROP TABLE IF EXISTS `www_config`;
CREATE TABLE `www_config` (
`id` smallint(8) unsigned NOT NULL auto_increment,
`varname` varchar(20) NOT NULL default '',
`info` varchar(100) NOT NULL default '',
`groupid` tinyint(3) unsigned NOT NULL default '1',
`value` text,
PRIMARY KEY (`id`),
KEY `varname` (`varname`)
) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8 COMMENT='网站配置表';
-- ----------------------------
-- Records of www_config
-- ----------------------------
INSERT INTO `www_config` VALUES ('1', 'sitename', '网站名称', '1', 'ShuipFCMS内容管理系统');
INSERT INTO `www_config` VALUES ('2', 'siteurl', '网站网址', '1', '/');
INSERT INTO `www_config` VALUES ('3', 'sitefileurl', '附件地址', '1', '/d/file/');
INSERT INTO `www_config` VALUES ('4', 'siteemail', '站点邮箱', '1', '[email protected]');
INSERT INTO `www_config` VALUES ('6', 'siteinfo', '网站介绍', '1', 'ShuipFCMS网站管理系统,是一款完全开源免费的PHP+MYSQL系统.核心采用了Thinkphp框架等众多开源软件,同时核心功能也作为开源软件发布');
INSERT INTO `www_config` VALUES ('7', 'sitekeywords', '网站关键字', '1', 'ShuipFCMS内容管理系统');
INSERT INTO `www_config` VALUES ('8', 'uploadmaxsize', '允许上传附件大小', '1', '20240');
INSERT INTO `www_config` VALUES ('9', 'uploadallowext', '允许上传附件类型', '1', 'jpg|jpeg|gif|bmp|png|doc|docx|xls|xlsx|ppt|pptx|pdf|txt|rar|zip|swf');
INSERT INTO `www_config` VALUES ('10', 'qtuploadmaxsize', '前台允许上传附件大小', '1', '200');
INSERT INTO `www_config` VALUES ('11', 'qtuploadallowext', '前台允许上传附件类型', '1', 'jpg|jpeg|gif');
INSERT INTO `www_config` VALUES ('12', 'watermarkenable', '是否开启图片水印', '1', '1');
INSERT INTO `www_config` VALUES ('13', 'watermarkminwidth', '水印-宽', '1', '300');
INSERT INTO `www_config` VALUES ('14', 'watermarkminheight', '水印-高', '1', '100');
INSERT INTO `www_config` VALUES ('15', 'watermarkimg', '水印图片', '1', '/statics/images/mark_bai.png');
INSERT INTO `www_config` VALUES ('16', 'watermarkpct', '水印透明度', '1', '80');
INSERT INTO `www_config` VALUES ('17', 'watermarkquality', 'JPEG 水印质量', '1', '85');
INSERT INTO `www_config` VALUES ('18', 'watermarkpos', '水印位置', '1', '9');
INSERT INTO `www_config` VALUES ('19', 'theme', '主题风格', '1', 'Default');
INSERT INTO `www_config` VALUES ('20', 'ftpstatus', 'FTP上传', '1', '0');
INSERT INTO `www_config` VALUES ('21', 'ftpuser', 'FTP用户名', '1', 'admin');
INSERT INTO `www_config` VALUES ('22', 'ftppassword', 'FTP密码', '1', '1234');
INSERT INTO `www_config` VALUES ('23', 'ftphost', 'FTP服务器地址', '1', '');
INSERT INTO `www_config` VALUES ('24', 'ftpport', 'FTP服务器端口', '1', '21');
INSERT INTO `www_config` VALUES ('25', 'ftppasv', 'FTP是否开启被动模式', '1', '1');
INSERT INTO `www_config` VALUES ('26', 'ftpssl', 'FTP是否使用SSL连接', '1', '0');
INSERT INTO `www_config` VALUES ('27', 'ftptimeout', 'FTP超时时间', '1', '10');
INSERT INTO `www_config` VALUES ('28', 'ftpuppat', 'FTP上传目录', '1', '/');
INSERT INTO `www_config` VALUES ('29', 'mail_type', '邮件发送模式', '1', '1');
INSERT INTO `www_config` VALUES ('30', 'mail_server', '邮件服务器', '1', 'smtp.qq.com');
INSERT INTO `www_config` VALUES ('31', 'mail_port', '邮件发送端口', '1', '25');
INSERT INTO `www_config` VALUES ('32', 'mail_from', '发件人地址', '1', '[email protected]');
INSERT INTO `www_config` VALUES ('33', 'mail_auth', '密码验证', '1', '1');
INSERT INTO `www_config` VALUES ('34', 'mail_user', '邮箱用户名', '1', '');
INSERT INTO `www_config` VALUES ('35', 'mail_password', '邮箱密码', '1', '');
INSERT INTO `www_config` VALUES ('36', 'mail_fname', '发件人名称', '1', 'ShuipFCMS管理员');
INSERT INTO `www_config` VALUES ('37', 'domainaccess', '指定域名访问', '1', '0');
INSERT INTO `www_config` VALUES ('38', 'generate', '是否生成首页', '1', '1');
INSERT INTO `www_config` VALUES ('39', 'index_urlruleid', '首页URL规则', '1', '11');
INSERT INTO `www_config` VALUES ('40', 'indextp', '首页模板', '1', 'index.php');
INSERT INTO `www_config` VALUES ('41', 'tagurl', 'TagURL规则', '1', '8');
INSERT INTO `www_config` VALUES ('42', 'checkcode_type', '验证码类型', '1', '0');
INSERT INTO `www_config` VALUES ('43', 'attachment_driver', '附件驱动', '1', 'Local');
INSERT INTO `www_config` VALUES ('44', 'sitetitle', '站点标题', '1', '站点标题');
INSERT INTO `www_config` VALUES ('45', 'copyright', '网站版权', '1', 'POWERED BY ©异清轩 YLSAT.COM ALL RIGHTS RESERVED 豫ICP备15026801号-1');
INSERT INTO `www_config` VALUES ('46', 'sitecnzz', 'CNZZ统计', '1', '统计代码');
-- ----------------------------
-- Table structure for www_config_field
-- ----------------------------
DROP TABLE IF EXISTS `www_config_field`;
CREATE TABLE `www_config_field` (
`fid` smallint(6) NOT NULL auto_increment COMMENT '自增长id',
`fieldname` varchar(30) NOT NULL default '' COMMENT '字段名',
`type` varchar(10) NOT NULL default '' COMMENT '类型,input',
`setting` mediumtext COMMENT '其他',
`createtime` int(10) NOT NULL default '0' COMMENT '创建时间',
PRIMARY KEY (`fid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='网站配置,扩展字段列表';
-- ----------------------------
-- Records of www_config_field
-- ----------------------------
-- ----------------------------
-- Table structure for www_customlist
-- ----------------------------
DROP TABLE IF EXISTS `www_customlist`;
CREATE TABLE `www_customlist` (
`id` int(11) NOT NULL auto_increment COMMENT '自定义列表ID',
`url` char(100) NOT NULL default '' COMMENT '访问地址',
`name` varchar(60) NOT NULL default '' COMMENT '列表标题',
`title` varchar(120) NOT NULL default '' COMMENT '网页标题',
`keywords` varchar(40) NOT NULL default '' COMMENT '网页关键字',
`description` text COMMENT '页面简介',
`totalsql` text COMMENT '数据统计SQL',
`listsql` text COMMENT '数据查询SQL',
`lencord` int(11) NOT NULL default '0' COMMENT '每页显示',
`urlruleid` int(11) NOT NULL default '0' COMMENT 'URL规则ID',
`urlrule` varchar(120) NOT NULL default '' COMMENT 'URL规则',
`template` mediumtext COMMENT '模板',
`listpath` varchar(60) NOT NULL default '' COMMENT '列表模板文件',
`createtime` int(10) NOT NULL default '0' COMMENT '添加时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='自定义列表';
-- ----------------------------
-- Records of www_customlist
-- ----------------------------
-- ----------------------------
-- Table structure for www_customtemp
-- ----------------------------
DROP TABLE IF EXISTS `www_customtemp`;
CREATE TABLE `www_customtemp` (
`tempid` smallint(6) NOT NULL auto_increment COMMENT '模板ID',
`name` varchar(40) character set utf8 collate utf8_unicode_ci NOT NULL default '' COMMENT '模板名称',
`tempname` varchar(30) NOT NULL default '' COMMENT '模板完整文件名',
`temppath` varchar(200) NOT NULL default '' COMMENT '模板生成路径',
`temptext` mediumtext COMMENT '模板内容',
PRIMARY KEY (`tempid`),
KEY `tempname` (`tempname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='自定义模板表';
-- ----------------------------
-- Records of www_customtemp
-- ----------------------------
-- ----------------------------
-- Table structure for www_download
-- ----------------------------
DROP TABLE IF EXISTS `www_download`;
CREATE TABLE `www_download` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`catid` smallint(5) unsigned NOT NULL default '0',
`typeid` smallint(5) unsigned NOT NULL default '0',
`title` char(80) collate utf8_unicode_ci NOT NULL default '',
`style` char(24) collate utf8_unicode_ci NOT NULL default '',
`thumb` char(100) collate utf8_unicode_ci NOT NULL default '',
`keywords` char(40) collate utf8_unicode_ci NOT NULL default '',
`tags` varchar(255) collate utf8_unicode_ci NOT NULL default '',
`description` char(255) collate utf8_unicode_ci NOT NULL default '',
`posid` tinyint(1) unsigned NOT NULL default '0',
`url` char(100) collate utf8_unicode_ci NOT NULL default '',
`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) collate utf8_unicode_ci NOT NULL default '',
`inputtime` int(10) unsigned NOT NULL default '0',
`updatetime` int(10) unsigned NOT NULL default '0',
`views` int(11) NOT NULL default '0' COMMENT '点击总数',
`yesterdayviews` int(11) NOT NULL default '0' COMMENT '最日',
`dayviews` int(10) NOT NULL default '0' COMMENT '今日点击数',
`weekviews` int(10) NOT NULL default '0' COMMENT '本周访问数',
`monthviews` int(10) NOT NULL default '0' COMMENT '本月访问',
`viewsupdatetime` int(10) NOT NULL default '0' COMMENT '点击数更新时间',
`prefix` varchar(255) collate utf8_unicode_ci NOT NULL default '',
PRIMARY KEY (`id`),
KEY `status` (`status`,`listorder`,`id`),
KEY `listorder` (`catid`,`status`,`listorder`,`id`),
KEY `catid` (`catid`,`weekviews`,`views`,`dayviews`,`monthviews`,`status`,`id`),
KEY `thumb` (`thumb`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of www_download
-- ----------------------------
INSERT INTO `www_download` VALUES ('1', '9', '0', '新网页设计四剑客软件包免费下载', '', '/d/160428/t0192f517982256c1c5.jpg', '页设计四剑', '页设计四剑', '新网页设计四剑客软件包免费下载,网页三剑客的提升版,包括fireworks cs3,photoshop cs3,dreamweaver cs3,flash cs3。都是简体中文版本的,安装的时候可以选择性的安装其中一个或多个软件。推荐下载!', '0', '/index.php?a=shows&catid=9&id=1', '0', '99', '1', '0', 'admin', '1403155909', '1403155909', '3', '0', '3', '3', '3', '1403156009', '');
INSERT INTO `www_download` VALUES ('2', '9', '0', 'Adobe Dreamweaver cs6汉化破解版免费下载', '', '/d/160428/t0192f517982256c1c5.jpg', 'Dreamweaver', 'Dreamweaver', 'Adobe Dreamweaver cs6汉化破解版免费下载内附安装说明和破解补丁强力推荐下载', '0', '/index.php?a=shows&catid=9&id=2', '0', '99', '1', '0', 'admin', '1403156061', '1403156061', '0', '0', '0', '0', '0', '0', '');
INSERT INTO `www_download` VALUES ('3', '9', '0', 'photoshop CS5绿化破解版免费下载', '', '/d/160428/t0192f517982256c1c5.jpg', 'photoshop', 'photoshop', 'Adobe Photoshop,简称“PS”,是一个由Adobe Systems开发和发行的图像处理软件。Photoshop主要处理以像素所构成的数字图像。使用其众多的编修与绘图工具,可以更有效的进行图片编辑工作。2003年,Adobe将Adobe Photoshop 8更名为Adobe Photoshop CS。因此,最新版本Adobe Photoshop CS6是Adobe Photoshop中的第13个主要版', '0', '/index.php?a=shows&catid=9&id=3', '0', '99', '1', '0', 'admin', '1403156098', '1403156098', '5', '0', '4', '4', '4', '1462955534', '');
-- ----------------------------
-- Table structure for www_download_data
-- ----------------------------
DROP TABLE IF EXISTS `www_download_data`;
CREATE TABLE `www_download_data` (
`id` mediumint(8) unsigned NOT NULL default '0',
`template` varchar(30) collate utf8_unicode_ci NOT NULL default '',
`paytype` tinyint(1) unsigned NOT NULL default '0',
`allow_comment` tinyint(1) unsigned NOT NULL default '1',
`relation` varchar(255) collate utf8_unicode_ci NOT NULL default '',
`download` text collate utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of www_download_data
-- ----------------------------
INSERT INTO `www_download_data` VALUES ('1', 'show_image.php', '0', '1', '', 'a:1:{i:0;a:4:{s:7:\"fileurl\";s:60:\"http://www.shuipfcms.com/demo/file/2013/06/51c5abbad94b5.jpg\";s:8:\"filename\";s:30:\"新网页设计四剑客软件\";s:7:\"groupid\";i:0;s:5:\"point\";i:0;}}');
INSERT INTO `www_download_data` VALUES ('2', 'show_da.php', '0', '1', '', 'a:1:{i:0;a:4:{s:7:\"fileurl\";s:60:\"http://www.shuipfcms.com/demo/file/2013/06/51c5ab7b2065a.jpg\";s:8:\"filename\";s:36:\"Adobe Dreamweaver cs6汉化破解版\";s:7:\"groupid\";i:0;s:5:\"point\";i:0;}}');
INSERT INTO `www_download_data` VALUES ('3', 'show_download.php', '0', '1', '', 'a:1:{i:0;a:4:{s:7:\"fileurl\";s:60:\"http://www.shuipfcms.com/demo/file/2013/06/51c5ab184c4a1.jpg\";s:8:\"filename\";s:28:\"photoshop CS5绿化破解版\";s:7:\"groupid\";i:0;s:5:\"point\";i:0;}}');
-- ----------------------------
-- Table structure for www_links
-- ----------------------------
DROP TABLE IF EXISTS `www_links`;
CREATE TABLE `www_links` (
`id` mediumint(8) unsigned NOT NULL auto_increment COMMENT '链接id',
`url` varchar(255) NOT NULL default '' COMMENT '链接地址',
`name` varchar(255) NOT NULL default '' COMMENT '链接名称',
`image` varchar(255) NOT NULL default '' COMMENT '链接图片',
`target` varchar(25) NOT NULL default '' COMMENT '链接打开方式',
`description` varchar(255) NOT NULL default '' COMMENT '链接描述',
`visible` tinyint(1) NOT NULL COMMENT '链接是否可见',
`rating` int(11) NOT NULL default '0' COMMENT '链接等级',
`updated` int(11) NOT NULL COMMENT '链接最后更新时间',
`notes` mediumtext NOT NULL COMMENT '链接详细介绍',
`rss` varchar(255) NOT NULL default '' COMMENT '链接RSS地址',
`termsid` int(4) NOT NULL COMMENT '分类id',
PRIMARY KEY (`id`),
KEY `visible` (`visible`),
KEY `termsid` (`termsid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='友情链接';
-- ----------------------------
-- Records of www_links
-- ----------------------------
INSERT INTO `www_links` VALUES ('1', 'https://www.baidu.com', '百度', '', '_blank', '百度一下,你就知道', '1', '0', '1462069891', '百度一下,你就知道,国内最大的搜索引擎', '', '1');
-- ----------------------------
-- Table structure for www_locking
-- ----------------------------
DROP TABLE IF EXISTS `www_locking`;
CREATE TABLE `www_locking` (
`userid` int(11) NOT NULL COMMENT '用户ID',
`username` varchar(30) NOT NULL default '' COMMENT '用户名',
`catid` smallint(5) NOT NULL default '0' COMMENT '栏目ID',
`id` mediumint(8) NOT NULL default '0' COMMENT '信息ID',
`locktime` int(10) NOT NULL default '0' COMMENT '锁定时间',
KEY `userid` (`userid`),
KEY `onlinetime` (`locktime`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='信息锁定';
-- ----------------------------
-- Records of www_locking
-- ----------------------------
-- ----------------------------
-- Table structure for www_loginlog
-- ----------------------------
DROP TABLE IF EXISTS `www_loginlog`;
CREATE TABLE `www_loginlog` (
`id` int(11) NOT NULL auto_increment COMMENT '日志ID',
`username` char(30) NOT NULL default '' COMMENT '登录帐号',
`logintime` int(10) NOT NULL default '0' COMMENT '登录时间戳',
`loginip` char(20) NOT NULL default '' COMMENT '登录IP',
`status` tinyint(1) NOT NULL default '0' COMMENT '状态,1为登录成功,0为登录失败',
`password` varchar(30) NOT NULL default '' COMMENT '尝试错误密码',
`info` varchar(255) NOT NULL default '' COMMENT '其他说明',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='后台登陆日志表';
-- ----------------------------
-- Records of www_loginlog
-- ----------------------------
INSERT INTO `www_loginlog` VALUES ('1', 'admin', '1461664389', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('2', 'admin', '1461744224', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('3', 'admin', '1461744707', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('4', 'admin', '1461807034', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('5', 'admin', '1462069811', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('6', 'admin', '1462852488', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('7', 'admin', '1462928778', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('8', 'admin', '1462955352', '127.0.0.1', '1', '密码保密', '用户名登录');
INSERT INTO `www_loginlog` VALUES ('9', 'admin', '1463017060', '127.0.0.1', '1', '密码保密', '用户名登录');
-- ----------------------------
-- Table structure for www_menu
-- ----------------------------
DROP TABLE IF EXISTS `www_menu`;
CREATE TABLE `www_menu` (
`id` smallint(6) unsigned NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '' COMMENT '菜单名称',
`parentid` smallint(6) unsigned NOT NULL default '0' COMMENT '上级菜单',
`app` char(20) NOT NULL default '' COMMENT '应用标识',
`controller` char(20) NOT NULL default '' COMMENT '控制键',
`action` char(20) NOT NULL default '' COMMENT '方法',
`parameter` char(255) NOT NULL default '' COMMENT '附加参数',
`type` tinyint(1) NOT NULL default '0' COMMENT '类型',
`status` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否禁用',
`remark` varchar(255) NOT NULL default '' COMMENT '备注',
`listorder` smallint(6) unsigned NOT NULL default '0' COMMENT '排序ID',
PRIMARY KEY (`id`),
KEY `parentid` (`parentid`)
) ENGINE=MyISAM AUTO_INCREMENT=140 DEFAULT CHARSET=utf8 COMMENT='后台菜单表';
-- ----------------------------
-- Records of www_menu
-- ----------------------------
INSERT INTO `www_menu` VALUES ('1', '缓存更新', '0', 'Admin', 'Index', 'cache', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('2', '我的面板', '0', 'Admin', 'Config', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('3', '设置', '0', 'Admin', 'Config', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('4', '个人信息', '2', 'Admin', 'Adminmanage', 'myinfo', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('5', '修改个人信息', '4', 'Admin', 'Adminmanage', 'myinfo', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('6', '修改密码', '4', 'Admin', 'Adminmanage', 'chanpass', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('7', '系统设置', '3', 'Admin', 'Config', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('8', '站点配置', '7', 'Admin', 'Config', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('9', '邮箱配置', '8', 'Admin', 'Config', 'mail', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('10', '附件配置', '8', 'Admin', 'Config', 'attach', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('11', '高级配置', '8', 'Admin', 'Config', 'addition', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('12', '扩展配置', '8', 'Admin', 'Config', 'extend', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('13', '行为管理', '7', 'Admin', 'Behavior', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('14', '行为日志', '13', 'Admin', 'Behavior', 'logs', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('15', '编辑行为', '13', 'Admin', 'Behavior', 'edit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('16', '删除行为', '13', 'Admin', 'Behavior', 'delete', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('17', '后台菜单管理', '7', 'Admin', 'Menu', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('18', '添加菜单', '17', 'Admin', 'Menu', 'add', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('19', '修改', '17', 'Admin', 'Menu', 'edit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('20', '删除', '17', 'Admin', 'Menu', 'delete', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('21', '管理员设置', '3', 'Admin', 'Management', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('22', '管理员管理', '21', 'Admin', 'Management', 'manager', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('23', '添加管理员', '22', 'Admin', 'Management', 'adminadd', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('24', '编辑管理信息', '22', 'Admin', 'Management', 'edit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('25', '删除管理员', '22', 'Admin', 'Management', 'delete', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('26', '角色管理', '21', 'Admin', 'Rbac', 'rolemanage', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('27', '添加角色', '26', 'Admin', 'Rbac', 'roleadd', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('28', '删除角色', '26', 'Admin', 'Rbac', 'roledelete', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('29', '角色编辑', '26', 'Admin', 'Rbac', 'roleedit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('30', '角色授权', '26', 'Admin', 'Rbac', 'authorize', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('31', '日志管理', '3', 'Admin', 'Logs', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('32', '后台登陆日志', '31', 'Admin', 'Logs', 'loginlog', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('33', '后台操作日志', '31', 'Admin', 'Logs', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('34', '删除一个月前的登陆日志', '32', 'Admin', 'Logs', 'deleteloginlog', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('35', '删除一个月前的操作日志', '33', 'Admin', 'Logs', 'deletelog', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('36', '添加行为', '13', 'Admin', 'Behavior', 'add', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('37', '模块', '0', 'Admin', 'Module', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('38', '在线云平台', '37', 'Admin', 'Cloud', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('39', '模块商店', '38', 'Admin', 'Moduleshop', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('40', '插件商店', '38', 'Admin', 'Addonshop', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('41', '在线升级', '38', 'Admin', 'Upgrade', 'index', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('42', '本地模块管理', '37', 'Admin', 'Module', 'local', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('43', '模块管理', '42', 'Admin', 'Module', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('44', '内容', '0', 'Content', 'Index', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('45', '内容管理', '44', 'Content', 'Content', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('46', '内容相关设置', '44', 'Content', 'Category', 'index', '', '0', '1', '', '0');
INSERT INTO `www_menu` VALUES ('47', '栏目列表', '46', 'Content', 'Category', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('48', '添加栏目', '47', 'Content', 'Category', 'add', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('49', '添加单页', '47', 'Content', 'Category', 'singlepage', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('50', '添加外部链接栏目', '47', 'Content', 'Category', 'wadd', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('51', '编辑栏目', '47', 'Content', 'Category', 'edit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('52', '删除栏目', '47', 'Content', 'Category', 'delete', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('53', '栏目属性转换', '47', 'Content', 'Category', 'categoryshux', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('54', '模型管理', '46', 'Content', 'Models', 'index', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('55', '创建新模型', '54', 'Content', 'Models', 'add', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('56', '删除模型', '54', 'Content', 'Models', 'delete', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('57', '编辑模型', '54', 'Content', 'Models', 'edit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('58', '模型禁用', '54', 'Content', 'Models', 'disabled', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('59', '模型导入', '54', 'Content', 'Models', 'import', '', '1', '1', '', '0');
INSERT INTO `www_menu` VALUES ('60', '字段管理', '54', 'Content', 'Field', 'index', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('61', '字段修改', '60', 'Content', 'Field', 'edit', '', '1', '0', '', '0');
INSERT INTO `www_menu` VALUES ('62', '字段删除', '60', 'Content', 'Field', 'delete', '', '1', '0', '', '0');