dedecms数据还原不了怎么解决

dedecms数据还原不了怎么解决,第1张

由于dedecms将ckeditor做了集成,和一般的只针对于ckeditor对configjs修改不同,以后是我在dedecms 57版本上添加行间距按钮的方法:

1、下载ckeditor的行距插件包 ;

2解压到ckeditor/plugins目录下;

3、由于dedecms 57自己集成了一个dedepage插件,用来添加ckeditor自定义插件,在/include/ckeditor/plugins/dedepage文件夹下,打开pluginjs文件在最后面添加: requires : [ 'lineheight' ],添加完之后的代码如下:

// Register a plugin named "dedepage"

(function()

{

CKEDITORpluginsadd( 'dedepage',

{

init : function( editor )

{

// Register the command

editoraddCommand( 'dedepage',{

exec : function( editor )

{

// Create the element that represents a print break

// alert('dedepageCmd!');

editorinsertHtml("#p#副标题#e#");

}

});

// alert('dedepage!');

// Register the toolbar button

editoruiaddButton( 'MyPage',

{

label : '插入分页符',

command : 'dedepage',

icon: 'images/dedepagegif'

});

// alert(editorname);

},

requires : [ 'fakeobjects' ],

requires : [ 'lineheight' ]

});

})();

4、修改/include/ckeditor/ckeditorincphp文件,在$toolbar['Basic'] 的最后一行添加元素Code,修改后代码如下:

$toolbar['Basic'] = array(

array( 'Source','-','Templates'),

array( 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Print'),

array( 'Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'),

array( 'ShowBlocks'),array('Image','Flash','Addon'),array('Maximize'),'/',

array( 'Bold','Italic','Underline','Strike','-'),

array( 'NumberedList','BulletedList','-','Outdent','Indent','Blockquote'),

array( 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'),

array( 'Table','HorizontalRule','Smiley','SpecialChar'),

array( 'Link','Unlink','Anchor'),'/',

array( 'Styles','Format','Font','FontSize'),

array( 'TextColor', 'BGColor', 'MyPage','MultiPic'),

array( 'lineheight')

);

至此OK!

ps,简单的自定义行距功能

1修改该功能的语言,在lineheight(就是行距插件的目录)/lang目录下添加相应的语言包,修改pluginjs文件115行为相应的语言。

2更改行距的功能按钮,修改pluginjs文件139行。

修改文件/include/arcarchivesclass

将以下代码

       $next = (is_array($nextR)  " where arcid={$nextR['id']} " : ' where 1>2 ');

       $pre = (is_array($preR)  " where arcid={$preR['id']} " : ' where 1>2 ');       

       $query = "Select arcid,arctitle,arcshorttitle,arctypeid,arcismake,arcsenddate,arcarcrank,arcmoney,arcfilename,arclitpic,

               ttypedir,ttypename,tnamerule,tnamerule2,tispart,tmoresite,tsiteurl,tsitepath

               from `#@__archives` arc left join #@__arctype t on arctypeid=tid  ";

改为如下

            if($this->ChannelUnit->ChannelInfos[‘issystem‘]!=-1){                

               $next = (is_array($nextR)  " where arcid={$nextR[‘id‘]} " : ‘ where 1>2 ‘);      

               $pre = (is_array($preR)  " where arcid={$preR[‘id‘]} " : ‘ where 1>2 ‘);    

               $query = "Select arcid,arctitle,arcshorttitle,arctypeid,arcismake,arcsenddate,arcarcrank,arcmoney,arcfilename,arclitpic,

                     ttypedir,ttypename,tnamerule,tnamerule2,tispart,tmoresite,tsiteurl,tsitepath

                     from `#@__archives` arc left join #@__arctype t on arctypeid=tid  ";

            }else{              

               $next = (is_array($nextR)  " where arcaid={$nextR[‘id‘]} " : ‘ where 1>2 ‘);                

               $pre = (is_array($preR)  " where arcaid={$preR[‘id‘]} " : ‘ where 1>2 ‘);                

               $query = "Select arcaid,arctitle,arctypeid,arcsenddate,arcarcrank,arclitpic, 

                              ttypedir,ttypename,tnamerule,tnamerule2,tispart,tmoresite,tsiteurl,tsitepath

                     from `"$this->ChannelUnit->ChannelInfos[‘addtable‘]"` arc left join #@__arctype t on arctypeid=tid  ";

            }

您好,跟版网团队很高兴为您解答:

遇到这种问题通常是备份的数据有问题造成的,如果是用织梦默认的数据库恢复功能的话,请检查data/backupdata中table开头的txt文档里面是不是只有一些drop类的sql语句,如果是的话,可能是备份时候表结构没有备份造成的。这种情况,如果你没有数据库其他备份,只能从织梦原版的备份中提取一个表结构放到这个里面,然后重新安装恢复。

希望我的回答能够帮到您。如果有其他问题也可再找我。

参考dedecms的帮助文档中的arclist标签

标签名称:arclist

标记简介:织梦常用标记,也称为自由列表标记,其中imglist、imginfolist、specart、coolart、autolist都是由该标记所定义的不同属性延伸出来的别名标记。

功能说明:获取指定文档列表

适用范围:全局使用

基本语法:

{dede:arclist flag='h' typeid='' row='' col='' titlelen='' infolen='' imgwidth='' imgheight='' listtype='' orderby='' keyword='' limit='0,1'}

<a href='[field:arcurl/]'>[field:title/]</a>

{/dede:arclist}

参数说明:

col='' 分多少列显示(默认为单列),53版中本属性可以通过多种方式进行多行显示

如果col='1'要多列显示的可用div+css实现

以下为通过div+css实现多列的示例:

<style type=text/css>

div{width:400px;float:left;}

</style>

{dede:arclist row='10' titlelen='24' orderby='pubdate' idlist='' col='2'}

•[field:textlink/]([field:pubdate function=MyDate('m-d',@me)/])<br/>

{/dede:arclist}

当col>1将使用原来的table多列方式显示

row='10' 返回文档列表总数

typeid='' 栏目ID,在列表模板和档案模板中一般不需要指定,在首页模板中允许用","分开表示多个栏目;

getall='1' 在没有指定这属性的情况下,在栏目页、文章页模板,不会获取以","分开的多个栏目的下级子类

titlelen = '30' 标题长度 等同于titlelength

infolen='160' 表示内容简介长度 等同于infolength

imgwidth='120' 缩略图宽度

imgheight='90' 缩略图高度

listtype='all' 栏目类型 image含有缩略图 commend推荐

orderby='sortrank' 文档排序方式

§ orderby='hot' 或 orderby='click' 表示按点击数排列

§ orderby='sortrank' 或 orderby='pubdate' 按出版时间排列

§ orderby='near'

§ orderby=='lastpost' 按最后评论时间

§ orderby=='scores' 按得分排序

§ orderby='id' 按文章ID排序

§ orderby='rand' 随机获得指定条件的文档列表

keyword='' 含有指定关键字的文档列表,多个关键字用","分

innertext = '' 单条记录样式

aid='' 指定文档ID

idlist ='' 提取特定文档(文档ID)

channelid 频道ID

limit='起始ID,记录数' (起始ID从0开始)表示限定的记录范围(如:limit='1,2' 表示从ID为1的记录开始,取2条记录)

flag = 'h' 自定义属性值:头条[h]推荐[c][p]幻灯[f]滚动[s]跳转[j]图文[a]加粗[b]

noflag = '' 同flag,但这里是表示不包含这些属性

orderway='desc' 值为 desc 或 asc ,指定排序方式是降序还是顺向排序,默认为降序

subday='天数' 表示在多少天以内的文档

用arclist调用于附加表字段的方法:

要获取附加表内容,必须符合两个条件

1、指定 channelid 属性

2、指定要获得的字段 addfields='字段1,字段'

如:

{dede:arclist addfields='filetype,language,softtype' row='8' channelid='3'}

[field:textlink /] - [field:softtype /]<br />

{/dede:arclist}

底层模板字段:

ID(同 id),typeid,sortrank,flag,ismake,channel,arcrank,click,money,title,shorttitle,color,writer,

source,litpic(同picname),pubdate,senddate,mid, lastpost,scores,goodpost,badpost,notpost,

description(同infos),filename, image, imglink, fulltitle, textlink, typelink,plusurl, memberurl, templeturl,

stime(pubdate 的"0000-00-00"格式)

其中:

textlink = <a href='arcurl'>title</a>

typelink = <a href='typeurl'>typename</a>

imglink = <a href='arcurl'><img src='picname' border='0' width='imgwidth' height='imgheight'></a>

image = <img src='picname' border='0' width='imgwidth' height='imgheight' alt=’titile’>

字段调用方法:[field:varname/]

如:

{dede:arclist infolen='100'}

[field:textlink/]

<br>

[field:infos/]

<br>

{/dede:arclist}

注:底层模板里的Field实现也是织梦标记的一种形式,因此支持使用PHP语法,Function扩展等功能。

如: 给当天发布的内容加上 (new) 标志

[field:senddate runphp='yes']

$ntime = time();

$oneday = 3600 24;

if(($ntime - @me)<$oneday) @me = "<font color='red'>(new)</font>";

else @me = "";

[/field:senddate]

1、首先登录织梦网站后台,点击:系统—>SQL命令行工具(如图所示)。

2、打开SQL命令运行器,运行代码:ALTER TABLE `数据表前缀_archives` MODIFY COLUMN `keywords` char(168)(如图所示)。

3、找到article_editphp、article_addphp文件(如图所示)。

4、打开文件article_addphp,并找到代码:$keywords = cn_substrR($keywords,60),然后把数字60改成168(如图所示)。

5、打开文件article_editphp,并找到代码:$keywords = trim(cn_substrR($keywords,60));然后把数字60改成168,织梦程序修改标签限制字数就可以了。

方法搞错了你,首先不应该直接把原空间的数据都上传到了新空间

dede转移空间只需要转移四个东西即可:备份数据文档、模板、样式和网页的文件夹、uploads文件夹

需要指出的是,在新空间里面先安装一个dede系统,数据库和数据表前缀都要和原来的保持一致!这点非常重要。然后把备份的数据文件传到对应目录下,后台恢复即可!其余的就很简单了

我的网站 百度搜索 无涯学习网 第一个就是

=============================

回复你的补充:可能是编码的问题,你数据库编码或者两次的安装程序编码不一样吧?建议检查一下这方面

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » dedecms数据还原不了怎么解决

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情