|
升级成功之后,记得把穿搭配置一下,位置【内容】-》穿搭设置
1.增加爱淘穿搭模块 同时优化地图功能支持穿搭推送【ok】
说明:由于涉及到的文件和功能比较多,本次更新只有电脑板,没问题就更新手机版。
搭配采集位置【采集-内容采集-穿搭采集】
需要你到后台增加一个路由位置:【系统->核心配置-站点SEO-首页URL路由配置】
/^style\/(\d+)$/ => index/style/cate?id=:1
2.美丽说采集 关键词分割问题 感谢@.__飯飯 的反馈 【ok】
3.搜索优化[web+wap] 感谢@独孤九剑 的反馈 【ok】
4.特殊分类优化 解决在特殊分类下筛选特殊分类没有商品的问题 【OK】
5.优化QQ登录[web+wap] 兼容当前新版登录 感谢大家的反馈和测试 【ok】
6.文章内页聚合阅读点击后进入首页 改成 不可点击 感谢 @新网站 的反馈 【ok】
7.修复【系统-核心配置-站点设置-二维码】中二维码-3上传按钮不起作用的问题 【ok】
8.优化手机版登录页面的快捷登录在部分服务器上无法正常跳转的问题 感谢@上善若水 的反馈 【ok】
9.优化电脑板的百度登录显示图标 之前是文字 现在改为百度图标 【ok】
10.修复 积分页面 用户登录之后 点击头像旁小手机 出现404的问题 感谢@美街说-优品网 的反馈【ok】
如果升级过程中没有报错 请忽略下面的说明
另外由于涉及到的添加数据表 如果你最后一步的SQL执行失败,请手动复制下面的语句执行
update ffx_setting set data='7.14',remark=unix_timestamp() where name='ffxia_version';
insert into `ffx_menu` VALUES ('203', '穿搭管理', '80', 'Style', 'index', '', '', '0', '3', '1');
insert into `ffx_menu` VALUES ('204', '穿搭列表', '203', 'Style', 'index', '', '', '0', '1', '1');
insert into `ffx_menu` VALUES ('205', '搭配列表', '204', 'Style', 'index', '', '', '0', '1', '1');
insert into `ffx_menu` VALUES ('206', '添加搭配', '204', 'Style', 'add', '', '', '0', '2', '1');
insert into `ffx_menu` VALUES ('207', '编辑搭配', '204', 'Style', 'edit', '', '', '0', '3', '0');
insert into `ffx_menu` VALUES ('208', '删除搭配', '204', 'Style', 'delete', '', '', '0', '4', '0');
insert into `ffx_menu` VALUES ('209', '穿搭分类', '203', 'Istyle', 'index', '', '', '0', '2', '1');
insert into `ffx_menu` VALUES ('210', '穿搭设置', '203', 'Setting', 'index', '&type=style', '', '0', '3', '1');
insert into `ffx_menu` VALUES ('211', '分类列表', '209', 'Istyle', 'index', '', '', '0', '1', '1');
insert into `ffx_menu` VALUES ('212', '添加穿搭分类', '209', 'Istyle', 'add', '', '', '0', '2', '0');
insert into `ffx_menu` VALUES ('213', '删除穿搭分类', '209', 'Istyle', 'delete', '', '', '0', '3', '0');
insert into `ffx_menu` VALUES ('214', '编辑穿搭分类', '209', 'Istyle', 'edit', '', '', '0', '4', '0');
insert into `ffx_menu` VALUES ('215', '穿搭采集', '92', 'Collect', 'style', '', '', '0', '2', '1');
DROP TABLE IF EXISTS `ffx_istyle`
CREATE TABLE `ffx_istyle`(
`id` smallint(5) unsigned not null AUTO_INCREMENT,
`name` varchar(50) not null DEFAULT '',
`pid` smallint(5) unsigned not null DEFAULT 0,
`spid` varchar(50) not null DEFAULT '',
`sort` varchar(50) not null DEFAULT 'id desc',
`thiscid` tinyint(1) not null DEFAULT '1',
`add_time` int(11) unsigned not null DEFAULT 0,
`ordid` tinyint(3) unsigned not null DEFAULT '255',
`status` tinyint(1) not null DEFAULT 1,
`seo_title` varchar(255) not null DEFAULT '',
`seo_keys` varchar(255) not null DEFAULT '',
`seo_desc` varchar(500) not null DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
)ENGINE=MyISAM DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `ffx_style`;
CREATE TABLE `ffx_style`(
`id` int(11) unsigned not null AUTO_INCREMENT,
`ordid` int(11) not null DEFAULT '9999',
`cid` int(11) not null DEFAULT '0',
`nick` varchar(100) not null DEFAULT '',
`pic` varchar(200) not null DEFAULT '',
`qid` varchar(20) not null DEFAULT '',
`items` tinyint(3) unsigned not null DEFAULT 0,
`intro` varchar(500) not null DEFAULT '',
`status` tinyint(1) not null DEFAULT '1',
`likes` int(11) unsigned not null DEFAULT '0',
`hits` int(11) unsigned not null DEFAULT 0,
`seo_title` varchar(255) not null DEFAULT '',
`seo_keys` varchar(255) not null DEFAULT '',
`seo_desc` varchar(500) not null DEFAULT '',
`add_time` int(11) unsigned not null DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=INNODB AUTO_INCREMENT=100000 DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `ffx_style_items`;
CREATE TABLE `ffx_style_items`(
`id` int(11) unsigned not null AUTO_INCREMENT,
`styleid` int(11) unsigned not null DEFAULT 0,
`title` varchar(200) not null DEFAULT '',
`item_url` varchar(500) not null DEFAULT '',
`img_url` varchar(500) not null DEFAULT '',
`tag` varchar(100) not null DEFAULT '',
`ordid` tinyint(3) unsigned not null DEFAULT 255,
`price` decimal(11,2) not null DEFAULT '0.00',
`yprice` decimal(11,2) not null DEFAULT '0.00',
PRIMARY KEY (`id`)
)ENGINE=INNODB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `ffx_style_pics`;
CREATE TABLE `ffx_style_pics`(
`id` int(11) unsigned not null AUTO_INCREMENT,
`styleid` int(11) unsigned not null DEFAULT 0,
`img_url` varchar(500) not null DEFAULT '',
`ordid` tinyint(3) unsigned not null DEFAULT 255,
PRIMARY KEY (`id`)
)ENGINE=INNODB DEFAULT CHARSET=utf8;
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|