PageAdmin网站内容管理系统(CMS)交流论坛
pageadmin - 2009/12/31 22:39:00
新版本增加了以下功能
1、增加了自定义模型,方便用户可设计自己需要的功能
2、增加了数据采集功能(支持文章、产品和自定义表单采集)
3、整合了栏目管理功能,让操作更加便捷
4、增加了缩略图和水印功能
5、加强了会员中心的发布功能
6、增加了支持后台目录修改
升级方法(相对20090814版),为了安全:请先把您网站数据库做一个备份,有备无患!
1、首先登陆后台》》基本信息设置》数据库操作。
在运行sql语句的输入框中中复制SQL语句运行,SQL版本和ACCESS版本的SQL语句略有不同,由于SQL语句比较长,具体代码见回复贴。
2、运行完以上SQL后,复制您当前网站正在使用的/images、/upload、/database(ACCESS数据库目录)、这三个目录覆盖最新版本对应目录即可。
pageadmin - 2009/12/31 22:41:00
以下为ACCESS版本的SQL
- alter table template drop constraint prod1id;
- alter table template drop constraint prod2id;
- alter table template drop constraint infor1id;
- alter table template drop constraint infor2id;
- alter table lanmu2 drop constraint prod1id;
- alter table lanmu2 drop constraint prod2id;
- alter table lanmu2 drop constraint infor1id;
- alter table lanmu2 drop constraint infor2id;
- alter table lanmu3 drop constraint prod1id;
- alter table lanmu3 drop constraint prod2id;
- alter table lanmu3 drop constraint infor1id;
- alter table lanmu3 drop constraint infor2id;
- alter table product drop constraint prod1id;
- alter table product drop constraint prod2id;
- alter table [information] drop constraint inforid;
- alter table [information] drop constraint lanmu2id1;
- alter table lanmu3 alter column prod_order int default 0;
- create Table collection(id int identity(1,1) primary key,c_name nvarchar(50),c_table varchar(50),c_tablename nvarchar(50),c_encode varchar(50),c_order int default 0,c_url varchar(250),c_url_startpage int default 1,c_url_endpage int default 1,c_urls text,c_list_starthtml ntext,c_list_endhtml ntext,c_list_domain varchar(250),c_list_urlcontains varchar(200),c_list_urlnotcontains varchar(200),c_saveimage int default 1,xuhao int default 0,thedate datetime);
- create Table zdymodel(id int identity(1,1) primary key,planguage varchar(50),name nvarchar(50),f_id int default 0,f_table varchar(50),nav_head_model ntext,nav_list_model ntext,nav_bottom_model ntext,template_head_model ntext,template_list_model ntext,template_bottom_model ntext,lanmu_head_model ntext,lanmu_list_model ntext,lanmu_bottom_model ntext,detail_head_model ntext,detail_model ntext,detail_bottom_model ntext,search_head_model ntext,search_list_model ntext,search_bottom_model ntext,xuhao int default 0);
- create Table zdyform_sort(id int identity(1,1) primary key,planguage varchar(50),fid int default 0,ftable varchar(50),parent_id int default 0,sort_level int default 1,sort_name nvarchar(50),allow_memtype varchar(250),xuhao int default 0);
- alter table lanmu1 alter column target varchar(50);
- alter table lanmu2 alter column target varchar(50);
- alter table lanmu3 alter column target varchar(50);
- alter table template alter column target nvarchar(50);
- alter table zdyform_field add search int default 0,collection int default 0,fckeditor int default 0,field_js ntext;
- alter table lanmu2 add zdymodel_id int default 0,zdymodel_table varchar(50),sort1id int default 0,sort2id int default 0,zdymodel_order varchar(50),zdymodel_condition varchar(50);
- alter table template add zdymodel_id int default 0,zdymodel_table varchar(50),sort1id int default 0,sort2id int default 0,zdymodel_order varchar(50),zdymodel_condition varchar(50);
- alter table lanmu3 add lanmu3_target varchar(50),zdymodel_id int default 0,zdymodel_table varchar(50),sort1id int default 0,sort2id int default 0,zdymodel_order varchar(50),zdymodel_condition varchar(50),zdymodel_show_num int default 20;
- alter table network add cprovince nvarchar(50);
- alter table zdyform_field add value_type nvarchar(50);
- alter table product add username varchar(50),show int default 0,list_order int default 0,price_unit nvarchar(50),thumbnail nvarchar(100),sort1id int default 0,sort2id int default 0,sort1 nvarchar(50),sort2 nvarchar(50);
- alter table information add thumbnail nvarchar(100),sort1id int default 0,sort2id int default 0,sort1 nvarchar(50),sort2 nvarchar(50),clicks int default 0;
- alter table prod1 add allow_memtype varchar(200);
- alter table prod2 add allow_memtype varchar(200);
- alter table comments add planguage varchar(50);
- alter table lanmu2 add show_tj int default 0;
- alter table lanmu2 add list_order int default 0;
- alter table template add list_order int default 0;
- alter table template add show_tj int default 0;
- alter table slide add list_order int default 0;
- update lanmu1 set target='_self';
- update lanmu2 set target='_self',zdymodel_id=0,sort1id=0,sort2id=0;
- update lanmu3 set lanmu3_target='_self',target='_self',zdymodel_id=0,sort1id=0,sort2id=0,zdymodel_show_num=20;
- update template set target='_self',zdymodel_id=0,sort1id=0,sort2id=0;
- update template set sort1id=infor1id,sort2id=infor2id where thetype='article';
- update template set sort1id=prod1id,sort2id=prod2id where thetype='product';
- update lanmu2 set sort1id=infor1id,sort2id=infor2id where thetype='article';
- update lanmu2 set sort1id=prod1id,sort2id=prod2id where thetype='product';
- update lanmu3 set sort1id=infor1id,sort2id=infor2id where thetype='article';
- update lanmu3 set sort1id=prod1id,sort2id=prod2id where thetype='product';
- update lanmu3 set prod_order=0 where prod_order is null;
- update zdyform_field set search=0,fckeditor=0;
- update product set list_order=0,show=1,thumbnail=upload,sort1id=prod1id,sort2id=prod2id,sort1=prod1,sort2=prod2;
- update information set thumbnail=upload,sort1id=infor1id,sort2id=infor2id,sort1=infor1,sort2=infor2,clicks=click;
- update comments set planguage='cn' where planguage is null;
- update template set list_order=0;
- update template set show_tj=0 where show_tj is null;
- update lanmu2 set show_tj=0,list_order=0;
- update slide set list_order=0;
- alter table template drop column prod1id;
- alter table template drop column prod2id;
- alter table template drop column infor1id;
- alter table template drop column infor2id;
- alter table lanmu2 drop column prod1id;
- alter table lanmu2 drop column prod2id;
- alter table lanmu2 drop column infor1id;
- alter table lanmu2 drop column infor2id;
- alter table lanmu3 drop column prod1id;
- alter table lanmu3 drop column prod2id;
- alter table lanmu3 drop column infor1id;
- alter table lanmu3 drop column infor2id;
- alter table product drop column prod1id;
- alter table product drop column prod2id;
- alter table product drop column prod1;
- alter table product drop column prod2;
- alter table information drop column click;
- alter table information drop column infor1;
- alter table information drop column infor2;
- alter table information drop column infor1id;
- alter table information drop column infor2id
复制代码
pageadmin - 2009/12/31 22:45:00
以下为mssql server版本的SQL
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu1') and b.id=a.cdefault and a.name='target' and b.name like 'DF%'
- exec('alter table lanmu1 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu2') and b.id=a.cdefault and a.name='target' and b.name like 'DF%'
- exec('alter table lanmu2 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu3') and b.id=a.cdefault and a.name='target' and b.name like 'DF%'
- exec('alter table lanmu3 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu3') and b.id=a.cdefault and a.name='prod_order' and b.name like 'DF%'
- exec('alter table lanmu3 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('template') and b.id=a.cdefault and a.name='target' and b.name like 'DF%'
- exec('alter table template drop constraint '+@name);
- declare @name varchar(100) declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('template') and b.id=a.cdefault and a.name='prod1id' and b.name like 'DF%'
- exec('alter table template drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('template') and b.id=a.cdefault and a.name='prod2id' and b.name like 'DF%'
- exec('alter table template drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('template') and b.id=a.cdefault and a.name='infor1id' and b.name like 'DF%'
- exec('alter table template drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('template') and b.id=a.cdefault and a.name='infor2id' and b.name like 'DF%'
- exec('alter table template drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu2') and b.id=a.cdefault and a.name='prod1id' and b.name like 'DF%'
- exec('alter table lanmu2 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu2') and b.id=a.cdefault and a.name='prod2id' and b.name like 'DF%'
- exec('alter table lanmu2 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu2') and b.id=a.cdefault and a.name='infor1id' and b.name like 'DF%'
- exec('alter table lanmu2 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu2') and b.id=a.cdefault and a.name='infor2id' and b.name like 'DF%'
- exec('alter table lanmu2 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu3') and b.id=a.cdefault and a.name='prod1id' and b.name like 'DF%'
- exec('alter table lanmu3 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu3') and b.id=a.cdefault and a.name='prod2id' and b.name like 'DF%'
- exec('alter table lanmu3 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu3') and b.id=a.cdefault and a.name='infor1id' and b.name like 'DF%'
- exec('alter table lanmu3 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('lanmu3') and b.id=a.cdefault and a.name='infor2id' and b.name like 'DF%'
- exec('alter table lanmu3 drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('product') and b.id=a.cdefault and a.name='prod1id' and b.name like 'DF%'
- exec('alter table product drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('product') and b.id=a.cdefault and a.name='prod2id' and b.name like 'DF%'
- exec('alter table product drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('information') and b.id=a.cdefault and a.name='infor1id' and b.name like 'DF%'
- exec('alter table information drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('information') and b.id=a.cdefault and a.name='infor2id' and b.name like 'DF%'
- exec('alter table information drop constraint '+@name);
- declare @name varchar(100)
- select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('information') and b.id=a.cdefault and a.name='click' and b.name like 'DF%'
- exec('alter table information drop constraint '+@name);
- alter table lanmu3 add constraint defaultname default 0 for prod_order;
- create Table collection(id int identity(1,1) primary key,c_name nvarchar(50),c_table varchar(50),c_tablename nvarchar(50),c_encode varchar(50),c_order int default 0,c_url varchar(250),c_url_startpage int default 1,c_url_endpage int default 1,c_urls text,c_list_starthtml ntext,c_list_endhtml ntext,c_list_domain varchar(250),c_list_urlcontains varchar(200),c_list_urlnotcontains varchar(200),c_saveimage int default 1,xuhao int default 0,thedate datetime);
- create Table zdymodel(id int identity(1,1) primary key,planguage varchar(50),name nvarchar(50),f_id int default 0,f_table varchar(50),nav_head_model ntext,nav_list_model ntext,nav_bottom_model ntext,template_head_model ntext,template_list_model ntext,template_bottom_model ntext,lanmu_head_model ntext,lanmu_list_model ntext,lanmu_bottom_model ntext,detail_head_model ntext,detail_model ntext,detail_bottom_model ntext,search_head_model ntext,search_list_model ntext,search_bottom_model ntext,xuhao int default 0);
- create Table zdyform_sort(id int identity(1,1) primary key,planguage varchar(50),fid int default 0,ftable varchar(50),parent_id int default 0,sort_level int default 1,sort_name nvarchar(50),allow_memtype varchar(250),xuhao int default 0);
- alter table lanmu1 alter column target varchar(50);
- alter table lanmu2 alter column target varchar(50);
- alter table lanmu3 alter column target varchar(50);
- alter table template alter column target nvarchar(50);
- alter table zdyform_field add search int default 0,collection int default 0,fckeditor int default 0,field_js ntext;
- alter table lanmu2 add zdymodel_id int default 0,zdymodel_table varchar(50),sort1id int default 0,sort2id int default 0,zdymodel_order varchar(50),zdymodel_condition varchar(50);
- alter table template add zdymodel_id int default 0,zdymodel_table varchar(50),sort1id int default 0,sort2id int default 0,zdymodel_order varchar(50),zdymodel_condition varchar(50);
- alter table lanmu3 add lanmu3_target varchar(50),zdymodel_id int default 0,zdymodel_table varchar(50),sort1id int default 0,sort2id int default 0,zdymodel_order varchar(50),zdymodel_condition varchar(50),zdymodel_show_num int default 20;
- alter table network add cprovince nvarchar(50);
- alter table zdyform_field add value_type nvarchar(50);
- alter table product add username varchar(50),show int default 0,list_order int default 0,price_unit nvarchar(50),thumbnail nvarchar(100),sort1id int default 0,sort2id int default 0,sort1 nvarchar(50),sort2 nvarchar(50);
- alter table information add thumbnail nvarchar(100),sort1id int default 0,sort2id int default 0,sort1 nvarchar(50),sort2 nvarchar(50),clicks int default 0;
- alter table prod1 add allow_memtype varchar(200);
- alter table prod2 add allow_memtype varchar(200);
- alter table comments add planguage varchar(50);
- alter table lanmu2 add show_tj int default 0;
- alter table lanmu2 add list_order int default 0;
- alter table template add list_order int default 0;
- alter table template add show_tj int default 0;
- alter table slide add list_order int default 0;
- update lanmu1 set target='_self';
- update lanmu2 set target='_self',zdymodel_id=0,sort1id=0,sort2id=0;
- update lanmu3 set lanmu3_target='_self',target='_self',zdymodel_id=0,sort1id=0,sort2id=0,zdymodel_show_num=20;
- update template set target='_self',zdymodel_id=0,sort1id=0,sort2id=0;
- update template set sort1id=infor1id,sort2id=infor2id where thetype='article';
- update template set sort1id=prod1id,sort2id=prod2id where thetype='product';
- update lanmu2 set sort1id=infor1id,sort2id=infor2id where thetype='article';
- update lanmu2 set sort1id=prod1id,sort2id=prod2id where thetype='product';
- update lanmu3 set sort1id=infor1id,sort2id=infor2id where thetype='article';
- update lanmu3 set sort1id=prod1id,sort2id=prod2id where thetype='product';
- update lanmu3 set prod_order=0 where prod_order is null;
- update zdyform_field set search=0,fckeditor=0;
- update product set list_order=0,show=1,thumbnail=upload,sort1id=prod1id,sort2id=prod2id,sort1=prod1,sort2=prod2;
- update information set thumbnail=upload,sort1id=infor1id,sort2id=infor2id,sort1=infor1,sort2=infor2,clicks=click;
- update comments set planguage='cn' where planguage is null;
- update template set list_order=0;
- update template set show_tj=0 where show_tj is null;
- update lanmu2 set show_tj=0,list_order=0;
- update slide set list_order=0;
- alter table template drop column prod1id;
- alter table template drop column prod2id;
- alter table template drop column infor1id;
- alter table template drop column infor2id;
- alter table lanmu2 drop column prod1id;
- alter table lanmu2 drop column prod2id;
- alter table lanmu2 drop column infor1id;
- alter table lanmu2 drop column infor2id;
- alter table lanmu3 drop column prod1id;
- alter table lanmu3 drop column prod2id;
- alter table lanmu3 drop column infor1id;
- alter table lanmu3 drop column infor2id;
- alter table product drop column prod1id;
- alter table product drop column prod2id;
- alter table product drop column prod1;
- alter table product drop column prod2;
- alter table information drop column click;
- alter table information drop column infor1;
- alter table information drop column infor2;
- alter table information drop column infor1id;
- alter table information drop column infor2id
复制代码
lsxdpzx - 2010/1/1 0:51:00
不错的程序!到哪儿下载?
feca - 2010/1/1 4:54:00
美:):strong:
feca - 2010/1/1 5:34:00
升级成功
feca - 2010/1/1 7:58:00
本地升级后文章能发布,产品发布键无反应,运行中出现以下错误:
1:CHECK 约束 'show_tj' 不存在。
2:CHECK 约束 'prod1id' 不存在。
3:CHECK 约束 'prod2id' 不存在。
4:CHECK 约束 'infor1id' 不存在。
5:CHECK 约束 'infor2id' 不存在。
6:CHECK 约束 'prod1id' 不存在。
7:CHECK 约束 'prod2id' 不存在。
8:CHECK 约束 'infor1id' 不存在。
9:CHECK 约束 'infor2id' 不存在。
10:CHECK 约束 'prod1id' 不存在。
11:CHECK 约束 'prod2id' 不存在。
12:CHECK 约束 'infor1id' 不存在。
13:CHECK 约束 'infor2id' 不存在。
14:CHECK 约束 'prod1id' 不存在。
15:CHECK 约束 'prod2id' 不存在。
16:CHECK 约束 'inforid' 不存在。
17:CHECK 约束 'lanmu2id1' 不存在。
18:表 'collection' 已存在。
19:表 'zdymodel' 已存在。
20:表 'zdyform_sort' 已存在。
21:字段 'search' 已经存在于表 'zdyform_field' 中。
22:字段 'zdymodel_id' 已经存在于表 'lanmu2' 中。
23:字段 'show_zt' 已经存在于表 'template' 中。
24:字段 'lanmu3_target' 已经存在于表 'lanmu3' 中。
25:字段 'cprovince' 已经存在于表 'network' 中。
26:字段 'value_type' 已经存在于表 'zdyform_field' 中。
27:字段 'username' 已经存在于表 'product' 中。
28:字段 'thumbnail' 已经存在于表 'information' 中。
29:字段 'allow_memtype' 已经存在于表 'prod1' 中。
30:字段 'allow_memtype' 已经存在于表 'prod2' 中。
31:至少一个参数没有被指定值。
32:至少一个参数没有被指定值。
33:至少一个参数没有被指定值。
34:至少一个参数没有被指定值。
35:至少一个参数没有被指定值。
36:至少一个参数没有被指定值。
37:至少一个参数没有被指定值。
38:至少一个参数没有被指定值。
39:至少一个参数没有被指定值。
40:在表 'template' 中没有字段 'show_tj'。
41:在表 'template' 中没有字段 'prod1id'。
42:在表 'template' 中没有字段 'prod2id'。
43:在表 'template' 中没有字段 'infor1id'。
44:在表 'template' 中没有字段 'infor2id'。
45:在表 'lanmu2' 中没有字段 'prod1id'。
46:在表 'lanmu2' 中没有字段 'prod2id'。
47:在表 'lanmu2' 中没有字段 'infor1id'。
48:在表 'lanmu2' 中没有字段 'infor2id'。
49:在表 'lanmu3' 中没有字段 'prod1id'。
50:在表 'lanmu3' 中没有字段 'prod2id'。
51:在表 'lanmu3' 中没有字段 'infor1id'。
52:在表 'lanmu3' 中没有字段 'infor2id'。
53:在表 'product' 中没有字段 'prod1id'。
54:在表 'product' 中没有字段 'prod2id'。
55:在表 'product' 中没有字段 'prod1'。
56:在表 'product' 中没有字段 'prod2'。
57:在表 'information' 中没有字段 'click'。
58:在表 'information' 中没有字段 'infor1'。
59:在表 'information' 中没有字段 'infor2'。
60:在表 'information' 中没有字段 'infor1id'。
61:在表 'information' 中没有字段 'infor2id'。
feca - 2010/1/1 8:26:00
为何本地全新安装产品发布键也无反应,编辑的可以
tianshi - 2010/1/1 11:52:00
不错不错,新版本太强了
zz100179 - 2010/1/1 17:13:00
升级不了,有详细的教程吗,谢谢
小熊猫 - 2010/1/1 21:19:00
不错不错,支持下。
pspike - 2010/1/1 21:42:00
不错不错,新年发布新版本,哈哈..
jyxmzj - 2010/1/2 9:12:00
总于出来了,看看自定义表单功能有多大提升!!
jyxmzj - 2010/1/2 9:20:00
看看新版自定义表单功能有何改进!!
word2008 - 2010/1/3 0:58:00
运行中出现以下错误:
1:CHECK 约束 'show_tj' 不存在。
2:CHECK 约束 'prod1id' 不存在。
3:CHECK 约束 'prod2id' 不存在。
4:CHECK 约束 'infor1id' 不存在。
5:CHECK 约束 'infor1id' 不存在。
6:CHECK 约束 'infor2id' 不存在。
蓝色风格的学校网站模板升级出错啊,,,,
wallace_xu - 2010/1/3 15:09:00
asaaaaaaaaaaaaa
tyoil - 2010/1/4 11:45:00
升级....俺不会! 但俺也想知道,在哪里可以下载?
wei0303 - 2010/1/4 13:24:00
不错。。功能要进一步加强呀。。
giswqs - 2010/1/4 13:46:00
Upgrade fail.
运行中出现以下错误:
1:CHECK constraint 'show_tj' does not exist.
2:CHECK constraint 'prod1id' does not exist.
3:CHECK constraint 'prod2id' does not exist.
4:CHECK constraint 'infor1id' does not exist.
5:CHECK constraint 'infor2id' does not exist.
6:CHECK constraint 'prod1id' does not exist.
7:CHECK constraint 'prod2id' does not exist.
8:CHECK constraint 'infor1id' does not exist.
9:CHECK constraint 'infor2id' does not exist.
10:CHECK constraint 'prod1id' does not exist.
11:CHECK constraint 'prod2id' does not exist.
12:CHECK constraint 'infor1id' does not exist.
13:CHECK constraint 'infor2id' does not exist.
14:CHECK constraint 'prod1id' does not exist.
15:CHECK constraint 'prod2id' does not exist.
16:CHECK constraint 'inforid' does not exist.
17:CHECK constraint 'lanmu2id1' does not exist.
18:Table 'collection' already exists.
19:Table 'zdymodel' already exists.
20:Table 'zdyform_sort' already exists.
21:Field 'search' already exists in table 'zdyform_field'.
22:Field 'zdymodel_id' already exists in table 'lanmu2'.
23:Field 'show_zt' already exists in table 'template'.
24:Field 'lanmu3_target' already exists in table 'lanmu3'.
25:Field 'cprovince' already exists in table 'network'.
26:Field 'value_type' already exists in table 'zdyform_field'.
27:Field 'username' already exists in table 'product'.
28:Field 'thumbnail' already exists in table 'information'.
29:Field 'allow_memtype' already exists in table 'prod1'.
30:Field 'allow_memtype' already exists in table 'prod2'.
31:Field 'planguage' already exists in table 'comments'.
32:No value given for one or more required parameters.
33:No value given for one or more required parameters.
34:No value given for one or more required parameters.
35:No value given for one or more required parameters.
36:No value given for one or more required parameters.
37:No value given for one or more required parameters.
38:No value given for one or more required parameters.
39:No value given for one or more required parameters.
40:No value given for one or more required parameters.
41:There is no field named 'show_tj' in table 'template'.
42:There is no field named 'prod1id' in table 'template'.
43:There is no field named 'prod2id' in table 'template'.
44:There is no field named 'infor1id' in table 'template'.
45:There is no field named 'infor2id' in table 'template'.
46:There is no field named 'prod1id' in table 'lanmu2'.
47:There is no field named 'prod2id' in table 'lanmu2'.
48:There is no field named 'infor1id' in table 'lanmu2'.
49:There is no field named 'infor2id' in table 'lanmu2'.
50:There is no field named 'prod1id' in table 'lanmu3'.
51:There is no field named 'prod2id' in table 'lanmu3'.
52:There is no field named 'infor1id' in table 'lanmu3'.
53:There is no field named 'infor2id' in table 'lanmu3'.
54:There is no field named 'prod1id' in table 'product'.
55:There is no field named 'prod2id' in table 'product'.
56:There is no field named 'prod1' in table 'product'.
57:There is no field named 'prod2' in table 'product'.
58:There is no field named 'click' in table 'information'.
59:There is no field named 'infor1' in table 'information'.
60:There is no field named 'infor2' in table 'information'.
61:There is no field named 'infor1id' in table 'information'.
62:There is no field named 'infor2id' in table 'information'.
wei0303 - 2010/1/4 13:53:00
1:CHECK 约束 'show_tj' 不存在。
2:CHECK 约束 'prod1id' 不存在。
3:CHECK 约束 'prod2id' 不存在。
4:CHECK 约束 'infor1id' 不存在。
5:CHECK 约束 'infor1id' 不存在。
6:CHECK 约束 'infor2id' 不存在。
我升级出现这些提示。然后就不能用了
我的系统版本是V2.1 20090814的
xinlu - 2010/1/4 19:55:00
运行中出现以下错误:
1:CHECK 约束 'show_tj' 不存在。
2:CHECK 约束 'prod1id' 不存在。
3:CHECK 约束 'prod2id' 不存在。
4:CHECK 约束 'infor1id' 不存在。
5:CHECK 约束 'infor1id' 不存在。
6:CHECK 约束 'infor2id' 不存在。
发出来才发现,我的问题跟楼上的一模一样。。
paboy - 2010/1/6 12:54:00
升级方法(相对20080804版本),为了安全:请先把您网站数据库做一个备份,有备无患!
我用的是20090814版本的,可以升级吗?
paboy - 2010/1/6 12:55:00
楼主说明升级方法:升级方法(相对20080804版本),为了安全:请先把您网站数据库做一个备份,有备无患!
我们大家都是用20090814版本的。估计不行哦
493077919 - 2010/1/7 12:10:00
升级的后台就登不上去了
yinlu82 - 2010/1/7 21:05:00
嘻嘻 有下载么??
TBC888 - 2010/1/8 13:07:00
从610直接升级怎么弄呀?
xiaoqiao0011 - 2010/1/11 15:12:00
太麻烦了.升级一次就得重新上传.一搞就是几个钟.
zjlme - 2010/1/11 16:11:00
:smoke
wangningbom - 2010/1/14 8:39:00
怎么不好使啊 。。。。。
wc1231 - 2010/1/18 11:20:00
没看懂老大的升级说明,能解释一下吗?
1、首先登陆后台》》基本信息设置》数据库操作。
在运行sql语句的输入框中中复制SQL语句运行,SQL版本和ACCESS版本的SQL语句略有不同,由于SQL语句比较长,具体代码见回复贴。
是在空间上的老版中运行一下这个SQL?
2、运行完以上SQL后,复制您当前网站正在使用的/images、/upload、/database(ACCESS数据库目录)、这三个目录覆盖最新版本对应目录即可。
要把新版先上传覆盖掉老的?然后再用先前备份过的老的/images、/upload、/database来覆盖新版本相应目录?
小的愚钝,望不吝赐教!