文件类型 :CmsEasy手动升级包
文件版本 :v 5.0
文件编码 :UTF-8
更新日期 :2012-08-08
简要说明 : 未经许可擅自删除、修改、隐藏易通公司的版权标识和链接属于侵权行为,并遵守 《最终用户授权许可协议》 。如果你不同意本协议中的条款,请勿复制、下载、安装或以其他方式使用CmsEasy。
下载

更新日志

 1.升级概述:

从CmsEasy4.8升级到CmsEasy5.0
 
2.升级方法:
【第一步】
(1)备份现有的数据库和文件;
【第二步】
(1)下载升级包upgrade48to50,解压到任意地方;
(2)上传uploads里面的文件到程序安装目录,覆盖;
(3)运行http://您的cmseasy4.8安装目录/upgrade.php;
【第三步】
(1)删除upgrade文件夹和upgrade.php;
(2)进入后台进行网站配置;
(3)后台进行更新缓存;
 
3.备注:
(1)如果您改动了文件,请先相关备份,进行升级后,可以对照默认文件进行调整;
(2)请查阅“CmsEasy5.x说明.txt”文档;
 
 
 
 
更新内容:
 
 
增加会员权限配置;
增加不同会员组折扣配置;
增加内容有效时间;
增加购物后提示结算;
修正静态生成功能;
修正表单多选和安装问题;
修正回收站过期文章恢复问题;
修正bbs板块内无法发帖;
修正分类生成缩略图;
修正下载图片地址错误;
增加栏目封面内容分页;
修正上传图片大写后缀问题;
修正静态不支持title问题;
修正内链导致内容无法访问问题。
 
 
 
 
 
 
 
 
 
 
 
模板中:
 
archive/show_products.html 中
 
 
Code:
  1. <script type="text/javascript">  
  2.   
  3. $(function() {  
  4.   
  5.     // 放大镜  
  6.     var options =  
  7.     {  
  8.         zoomWidth: 350,  
  9.         zoomHeight: 250,  
  10.         showEffect:'show',  
  11.         hideEffect:'fadeout',  
  12.         fadeoutSpeed: 'slow',  
  13.         title :false  
  14.     }  
  15.     $(".jqzoom").jqzoom(options);  
  16.   
  17.     // 图片左右滚动  
  18.     $('#image_list').jcarousel();  
  19.   
  20.     // 点击小图更换大图  
  21.     $('#image_list img:only-child').click(function(){  
  22.         $('#current_img').attr('src'this.src);  
  23.         // 大图的命名方式为 小图 + 下划线  
  24.         $('#current_img').parent().attr('href'this.alt);  
  25.     });  
  26. });  
  27. </script>  
  28.   
  29.   
  30.   
  31. 改成    
  32.   
  33.   
  34.   
  35. <script type="text/javascript">  
  36.   
  37. $(function() {  
  38.     // 放大镜  
  39.     var options =  
  40.     {  
  41.         zoomWidth: 350,  
  42.         zoomHeight: 250,  
  43.         showEffect:'show',  
  44.         hideEffect:'fadeout',  
  45.         fadeoutSpeed: 'slow',  
  46.         title :false  
  47.     }  
  48.     $(".jqzoom").jqzoom(options);  
  49.     // 图片左右滚动  
  50.     $('#image_list').jcarousel();  
  51.     // 点击小图更换大图  
  52.     $('#image_list img:only-child').click(function(){  
  53.         $('#current_img').attr('src'this.src);  
  54.         // 大图的命名方式为 小图 + 下划线  
  55.         $('#current_img').parent().attr('href'this.alt);  
  56.     });  
  57.     $('#dialog').dialog({  
  58.         autoOpen: false,  
  59.         width   : 300,  
  60.         buttons : {  
  61.             "继续购物"    : function() {   
  62.                              $(this).dialog("close");   
  63.                            },   
  64.             "去购物车结算": function() {  
  65.                             window.location.href= "{url('archive/orders',true)}";  
  66.                             $(this).dialog("close");   
  67.                            }   
  68.                  }  
  69.     });  
  70.     $('#dialog_link').click(function(){  
  71.       $.get("{url('archive/doorders/aid/'.$archive['aid'],true)}"null,function(data){  
  72.         $('#dialog').dialog('open');  
  73.             return false;  
  74.       });  
  75.     });  
  76. });  
  77.   
  78. </script>  
  79.   
  80. <link type="text/css" href="common/js/jquery/ui/jquery-ui-1.7.3.custom.css" rel="stylesheet" />   
  81. <script type="text/javascript" src=""common/js/jquery/ui/jquery-ui-1.7.3.custom.min.js"></script>  
  82. <div id="dialog" title=""本站提示"><p>加入购物车成功!</p></div>