INSERT INTO `qimaweb_addonarticle` VALUES('6','4','','/moban/html5/','','115.212.16.169');
INSERT INTO `qimaweb_addonarticle` VALUES('7','4','','http://www.a0218.com/moban/mobile/','','58.16.239.161');
INSERT INTO `qimaweb_addonarticle` VALUES('22','6','柒码模板一路的风风雨雨，让用户期待已久的新版本终于出来了，从14年至今，更换过3个WEB版本，此版本在前两个的基础上做了大大的优化，我们一直秉承着从用户角度出发，致力于打造最佳体验度的设计理念，从15年3月团队组建至今，服务客户约50个！此WEB版本的界面设计我们做出了全新的改造、全新的程序架构，体验更佳，同时也停止了旧版本的运行，如果您在使用过程中遇到任何问题，记得留下您宝贵的意见！','','','127.0.0.1');
INSERT INTO `qimaweb_addonarticle` VALUES('31','12','织梦(dedecms)的TAGS默认字数较少，只能写12个字符，多出的字符就会自动截断，或者直接去除，经常给我们带来一些麻烦，下面介绍如何修改织梦(dedecms)TAGS的字数限制。<br />\r\n<br />\r\n默认情况下，在织梦5.7中，tag的长度是12字节，也就是6个汉字，这个设定是基于效率问题考虑的，如果更新的时候设置的长度超过这个字符，系统就会不显示这个tag。有时候需要根据实际情况修改tag的长度，下面是方法。<br />\r\n<br />\r\n1.修改数据库中表dede_tagindex 和dede_taglist的tag字段属性：varchar(12)修改为varchar(255) 。<br />\r\n<br />\r\n这个步骤需要直接操作数据库。<br />\r\n<br />\r\n首先在后台&ndash;系统&ndash;SQL命令行工具的输入框填写以下代码执行。<br />\r\n<br />\r\n<pre>\r\nALTER TABLE dede_tagindex modify column tag char(251) not null;\r\nALTER TABLE dede_taglist modify column tag char(251) not null;\r\n</pre>\r\n2.修改文件：/include/helpers/archive.helper.php<br />\r\n查找：if(isset($tag[12]) 修改为：if(isset($tag[255]) ；<br />\r\n<br />\r\n再将if(isset($tag[20]) 修改为：if(isset($tag[255]) 。','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('32','12','&ldquo;织梦图片集 上传图片不能上传 弹出提示302&rdquo;这个问题是前两天遇到的，本人已经解决了。方法分享给大家，如下：<br />\r\n在include/userlogin.class.php文件中的第二行session_start();前加上\r\n<pre>\r\nif (isset($_POST[&quot;PHPSESSID&quot;])) {\r\nsession_id($_POST[&quot;PHPSESSID&quot;]);\r\n} else if (isset($_GET[&quot;PHPSESSID&quot;])) {\r\nsession_id($_GET[&quot;PHPSESSID&quot;]);\r\n} \r\n</pre>\r\n','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('33','12','DedeCMS用图集模型做图片站时，发现默认的上传图片不自动添加水印，经过多次检查发现确实存在这样一个BUG，我们这里分享一下织梦图集上传无水印BUG的解决办法：<br />\r\n找到并打开织梦后台管理目录下的swfupload.php文件，在里面找到如下代码：<br />\r\n//WaterImg($cfg_basedir.$fileurl, &#39;up&#39;);<br />\r\n替换为：<br />\r\nWaterImg($cfg_basedir.$fileurl, &#39;up&#39;);<br />\r\n即将其前面的注释去掉，保存后发布图片试试，上传图片就会自动加上水印了。 ','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('34','12','我们用织梦建站的朋友经常会遇到编码转换的问题，比如我们购买了模板但是模板编码与现在的程序编码不符，导致出现乱码的情况。<br />\r\n今天就来教大家转换织梦DedeCMS模板文件的编码和织梦系统程序的编码。<br />\r\n1、织梦DedeCMS模板文件编码的转换：<br />\r\n首先下载一个编码转换软件，用这个工具将模板文件以及相关的css、js文件等批量转换成想要的编码即可。<br />\r\n2、DedeCMS系统程序编码的转换：首先登录织梦网站管理后台，打开系统菜单下的数据库备份/还原功能，将网站的数据全部备份，记住备份数据表结构的选项一定要勾选，然后用FTP将备份好的数据文件下载到您的电脑上。下载下来的备份文件中有tables_struct_xxx.txt这样一个文件，用dreamweaver或EditPlus等编辑器软件打开这个文件，使用查找与替换命令，将CHARSET=gbk替换为CHARSET=utf8，然后要保存。然后打开上面的编码转换软件，将下载的备份文件（包括刚刚修改过的文件），将GBK转换为UTF-8格式。转换好的文件保存在一个新的文件夹里面，以便区分原来的GBK编码的文件。至此这一步，我们就将数据库备份文件由GBK格式成功的转换为了UTF-8格式。然后我们重新安装新的UTF-8编码的dedecms程序，将转换了编码的数据库备份文件上传覆盖到对应的数据库备份文件夹，接下来登录新的网站管理后台，打开系统菜单，使用备份/还原数据库命令，选择数据还原，勾选所有文件，执行还原命令。到这里我们就完整的将DedeCMS GBK版本转换成了DedeCMS UTF-8版本的了。用同样的原理，可以将UTF-8编码的转换成GBK编码的，大家可以自己根据自己的需要进行使用。','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('35','12','<p>\r\n	织梦文章内容页模板里面的{dede:memberinfos}标签默认是不能调用管理员信息的，但是如果我们一定要调用的话还是有解决办法的，具体解决办法如下：<br />\r\n	找到并打开/include/taglib/memberinfo.lib.php文件，在里面大概第62行的位置找到如下代码：<br />\r\n	if($row[&#39;matt&#39;]==10) return &#39;&#39;;<br />\r\n	将其注释或删除后保存，重新生成文章即可。</p>\r\n','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('36','12','<p>\r\n	DedeCMS5.7默认的图集模型中的单页多图显示方式没有图片大图也就是原图的地址调用，但有时候我们想在图集内容页实现点击缩略图时弹出图片原图这样的效果，但原图的地址没有标签可以调用，但是我们可以通过修改系统文件来实现这一的调用，方法其实非常简单，下面是具体操作步骤：<br />\r\n	第一步、进入后台将图集默认展示方式设置成第三种，即多缩略图模式；<br />\r\n	第二步、打开/include/taglib/channel/img.lib.php文件，在里面大概在148行左右的位置找到如下代码：<br />\r\n	$fields[&#39;imgsrc&#39;] = $fields[&#39;ddimg&#39;];<br />\r\n	将其修改成下面的代码<br />\r\n	$fields[&#39;imgsrc&#39;] = $fields[&#39;imgsrc&#39;];<br />\r\n	这样修改后，即可在图集内容页的图片输出循环标签中使用[field:imgsrc/]来读取图片的原图地址，使用[field:ddimg/]可以读取图片缩略图地址，这样就可以轻松实现上面的效果了。</p>\r\n','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('38','12','查找\r\n<pre>\r\nelse if($type==&#39;son&#39;)</pre>\r\n把这段代码：\r\n<pre>\r\nif($typeid==0) return &#39;&#39;;\r\n&nbsp; &nbsp; &nbsp; &nbsp; $sql = &quot;SELECT id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; From `qimaweb_arctype` WHERE reid=&#39;$typeid&#39; And ishidden&lt;&gt;1 order by sortrank asc limit 0, $line &quot;;</pre>\r\n改为：\r\n<pre>\r\n	if($typeid==0) return &#39;&#39;;\r\n&nbsp; &nbsp; &nbsp; &nbsp; $sql = &quot;SELECT id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,content\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; From `qimaweb_arctype` WHERE reid=&#39;$typeid&#39; And ishidden&lt;&gt;1 order by sortrank asc limit 0, $line &quot;;\r\n$row[&#39;content&#39;]=$row[&#39;content&#39;];\r\n</pre>\r\n这样在需要调用的channel type=&#39;son&#39; 标签下使用栏目简介标签调用即可！标签为：[field:content/] 需要在channel type=&#39;top&#39;标签下支持的话 改法一样的，if($type==&#39;top&#39;) &nbsp;在该标签下改 ','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('40','6','模板商店更名了，因众多因素，其中就包括一个性质恶劣、暴力粗俗的原因，之前的模板商店那款网站，出了太多的克隆版，导致我们的权重严重下降，故此不得不改版，从此我们就叫柒码模板网，为了让您能看到更多优质网站模板，劳请您务必记住我们，我们是柒码模板网。<br />\r\n<br />\r\n<br />\r\n<div style=\"text-align: right;\">\r\n	-----------------不断突破 &middot; 不断进取 柒码模板网 2015-09-20</div>\r\n','','','122.243.54.88');
INSERT INTO `qimaweb_addonarticle` VALUES('57','11','<div class=\"article-content\">\r\n	<h2 style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-weight: 500; line-height: 1.1; color: rgb(51, 51, 51); margin: 0px; font-size: 16px; padding: 10px 20px 9px; text-align: justify; border-width: 0px 0px 0px 4px; border-left-style: solid; border-left-color: rgb(0, 0, 0); background-color: rgb(222, 222, 222);\">\r\n		第一步：</h2>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		将web内的所有文件 上传到空间 &nbsp;注：上传之前请先备份原文件，因未备份造成任何损失，柒码模板网概不负责！ &nbsp;注意：（由于有很多人反应安装后首页样式都乱的，所以强烈要求安装到根目录，如：127.0.0.1 / www.xxx.com，或者二级域名也可以，但不要安装到二级目录：127.0.0.1/web/） &nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<h2 style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-weight: 500; line-height: 1.1; color: rgb(51, 51, 51); margin: 0px; font-size: 16px; padding: 10px 20px 9px; text-align: justify; border-width: 0px 0px 0px 4px; border-left-style: solid; border-left-color: rgb(0, 0, 0); background-color: rgb(222, 222, 222);\">\r\n		第二步：</h2>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		打开浏览器 输入http://你的网址/install/index.php &nbsp;如果出现Dir 看，请往下看。当打开安装页面的时候，你就会看到以下页面</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U91449-0.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		如果没有出现该页面，而是出现了一个空白页面写着dir，那么请删除install文件夹中的install.lock.txt并且把index.php.bak改成index.php然后输入：http://你的网址/install/index.php同意协议勾上，然后点继续,之后会出现以下页面。</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U94505-1.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<h2 style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-weight: 500; line-height: 1.1; color: rgb(51, 51, 51); margin: 0px; font-size: 16px; padding: 10px 20px 9px; text-align: justify; border-width: 0px 0px 0px 4px; border-left-style: solid; border-left-color: rgb(0, 0, 0); background-color: rgb(222, 222, 222);\">\r\n		第三步：</h2>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		再继续。下步将进入填写数据库的步骤。这个数据库是什么大家应该知道了吧。织梦程序所需要的是php空间和mysql数据库接上一步骤后。你将看到以下页面。按照图示，填写相应的内容即可。</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U93M8-2.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" />&nbsp;&nbsp;<img src=\"http://up.a0218.com/uploads/allimg/151002/161U9AU-3.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		（注意：默认数据包那个地方一定不能勾上，否则安装不成功）以上填写好了就可以，其他地方，不修改，全默认。继续。</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161Ua094-4.png\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px; width: 600px; height: 225px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<h2 style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-weight: 500; line-height: 1.1; color: rgb(51, 51, 51); margin: 0px; font-size: 16px; padding: 10px 20px 9px; text-align: justify; border-width: 0px 0px 0px 4px; border-left-style: solid; border-left-color: rgb(0, 0, 0); background-color: rgb(222, 222, 222);\">\r\n		第四步：</h2>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		点击&ldquo;登录进入后台&rdquo; &nbsp;或者输入</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		http://您的域名/dede/为了安全起见，dede这个文件夹的名字可以改掉，这个文件夹就是你后台登陆的网址。按照图片提示步骤。进入系统数据库恢复页面</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U96234-5.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		点了数据还原后。你将看到的是我们程序备份的数据库。</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U91K6-6.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		当数据库恢复完成以后，你将看到以下提示：</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161Ua409-7.png\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		数据还原到此就还原了，现在后台登陆的账号密码都变成admin了，不再是你安装时候所填写的了</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		解释：因为在测试的时候用的都是admin，所以数据库备份后的账号密码都是admin，当你进行数据库还原后，账号和密码就都恢复到了admin，不再是你安装时候填写的账号和密码。所以数据库后还原后，大家需要修改密码。</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<h2 style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-weight: 500; line-height: 1.1; color: rgb(51, 51, 51); margin: 0px; font-size: 16px; padding: 10px 20px 9px; text-align: justify; border-width: 0px 0px 0px 4px; border-left-style: solid; border-left-color: rgb(0, 0, 0); background-color: rgb(222, 222, 222);\">\r\n		第五步：</h2>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		（设置网站系统参数）操作：</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U92Q5-8.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		<span style=\"color:#ff0000;\">注：此时务必要点击一下确定按钮，不管有没有更改过设置，都要点击，否则会出现/templets/default/index.htm Not Found!的情况</span><br />\r\n		到这里网站的设置就完成了。最后步骤。我们来生成整个站点的html页面。 &nbsp;先更新缓存，再生成全部</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U95020-9.jpg\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		因为是首次更新，所以要更新所有！ &nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		&nbsp;<img src=\"http://up.a0218.com/uploads/allimg/151002/161U94554-10.png\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<h2 style=\"box-sizing: border-box; font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-weight: 500; line-height: 1.1; color: rgb(51, 51, 51); margin: 0px; font-size: 16px; padding: 10px 20px 9px; text-align: justify; border-width: 0px 0px 0px 4px; border-left-style: solid; border-left-color: rgb(0, 0, 0); background-color: rgb(222, 222, 222);\">\r\n		附加内容：</h2>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		说明一下广告设置问题和友情链接管理。</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: center;\">\r\n		<img src=\"http://up.a0218.com/uploads/allimg/151002/161U91H8-11.png\" style=\"box-sizing: border-box; border: 0px; vertical-align: middle; margin: 0px; padding: 0px;\" /></p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		&nbsp;</p>\r\n	<p style=\"box-sizing: border-box; margin: 0px; padding: 0px 0px 20px; color: rgb(51, 51, 51); font-family: \'Microsoft YaHei\', 微软雅黑, SimSun, 宋体; font-size: 14px; line-height: 24px; text-align: justify;\">\r\n		以上步骤每个步骤都非常重要，都不漏。漏一步那你将安装不成功。</p>\r\n</div>\r\n<br />\r\n','','','58.16.238.147');
INSERT INTO `qimaweb_addonarticle` VALUES('65','12','<p>\r\n	客户遇到一个问题，DEDECMS（V5.7）后台添加文档时，本地上传缩略图无法自动添加水印（系统设置里的图片水印设置没有问题），找了半天，终于找到了解决方法，留个记号：</p>\r\n<p>\r\n	打开<span style=\"color:#ff0000;\">dede</span>/archives_do.php</p>\r\n<p>\r\n	找到第111行：</p>\r\n<pre>\r\n	$upfile = AdminUpload(&#39;litpic&#39;, &#39;imagelit&#39;, 0, false );\r\n</pre>\r\n改成：\r\n<pre>\r\n	$upfile = AdminUpload(&#39;litpic&#39;, &#39;imagelit&#39;, 0, true );\r\n</pre>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	然后打开include/helpers/upload.helper.php<br />\r\n	找到第97行：</p>\r\n<pre>\r\n	if(($ftype==&#39;image&#39;) &amp;&amp; $watermark)\r\n\r\n</pre>\r\n改成：\r\n<pre>\r\n	if(($ftype==&#39;image&#39;||$ftype==&#39;imagelit&#39;) &amp;&amp; $watermark)\r\n</pre>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	PS：上面提到的红色<span style=\"color:#ff0000;\">dede</span>是指您的dedecms默认网站管理路径。</p>\r\n','','','58.16.237.215');
INSERT INTO `qimaweb_addonarticle` VALUES('66','12','<p>\r\n	解决用户中心编辑文档时出现的&ldquo;提交表单同系统配置不相符，请重新提交&rdquo;的错误<br />\r\n	普通文章找到member/article_edit.php<br />\r\n	软件文档找到member/soft_edit.php<br />\r\n	图集文档找到member/album_edit.php<br />\r\n	查找</p>\r\n<pre>\r\n$inadd_f .= &#39;,&#39;.$vs[0].&quot; =&#39;&quot;.${$vs[0]}.&quot;&#39; &quot;;</pre>\r\n在其之后另行一行加入\r\n<pre>\r\n$inadd_f1 .= &#39;,&#39;.$vs[0];</pre>\r\n查找<br />\r\n<pre>\r\nif ($fontiterm != $inadd_f)</pre>\r\n修改为<br />\r\n<pre>\r\nif ($fontiterm != $inadd_f1)</pre>\r\n<p>\r\n	替换完以后即可解决问题</p>\r\n','','','58.16.219.225');
INSERT INTO `qimaweb_addonarticle` VALUES('67','12','<p>\r\n	织梦DedeCMS5.7网站模板会员中心错误的修改方法：</p>\r\n<p>\r\n	在会员中心发布商品或分类信息时时，直接报错：数据校验不对，程序返回 内容来自</p>\r\n<p>\r\n	原因：member/inc/inc_archives_functions.php函数function PrintAutoFieldsEdit　内缺少输出dede_fieldshash字段值，导致编辑程序条件判断一直为真。</p>\r\n<p>\r\n	临时处理方法：</p>\r\n<p>\r\n	打开文件member/inc/inc_archives_functi***.php</p>\r\n<p>\r\n	查找</p>\r\n<pre>\r\n	function PrintAutoFieldsEdit(&amp;$fieldset, &amp;$fieldValues, $loadtype=&#39;all&#39;)&nbsp;</pre>\r\n<p>\r\n	在</p>\r\n<pre>\r\n	$dtp = new DedeTagParse();&nbsp;</pre>\r\n<p>\r\n	之前加入</p>\r\n<pre>\r\n	global $cfg_cookie_encode;&nbsp;</pre>\r\n<p>\r\n	查找</p>\r\n<pre>\r\n	echo &quot;&lt;input type=&#39;hidden&#39; name=&#39;dede_addonfields&#39; value=\\&quot;&quot;.$dede_addonfields.&quot;\\&quot;&gt;\\r\\n&quot;;&nbsp;</pre>\r\n<p>\r\n	在其之后另行一行加入&nbsp;</p>\r\n<pre>\r\n	echo &quot;&lt;input type=\\&quot;hidden\\&quot; name=\\&quot;dede_fieldshash\\&quot; value=\\&quot;&quot;.md5($dede_addonfields.$cfg_cookie_encode).&quot;\\&quot; /&gt;&quot;;&nbsp;</pre>\r\n','','','58.16.219.225');
