昨天成功把数据导入新网站了,感谢大家都帮助,但是今天又有新的问题出现了,在后台发表文章和发表软件时百度编辑器的窗口显示 无法找到该页面 又来麻烦大家了知道怎么处理的朋友请指教指教
哪位大神可以帮帮忙,恢复旧版数据过来了,发表文章,图片和软件的时候编辑器显示不出来刚装好V9的时候没有恢复数据之前是可以正常显示,一恢复数据过来就不显示了要怎么弄
把V4.60这个文件考到、ewebeditor/里可以显示旧版编辑器,但是所有的发表页面都显示一样的编辑器。没有恢复数据之前每个发表页面功能都不一样样式也比较简洁美观
恢复数据后只把旧版的data文件夹替换过来,除了数据库配置文件其他都没动。想不通到底是哪里的问题
这是发表软件:
这是发表图片:
这是发表文章:
下面是发表页面的代码
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<!--
-->
<head>
<title>后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="images/index.css" type="text/css">
<SCRIPT LANGUAGE="JavaScript" src="http://10.149.138.123/images/default/jquery-1.2.6.min.js"></SCRIPT>
</head>
<body>
<div class="TopContainer">
<div class="Logo"><a href="index.php?lfj=adminmap&job=list" target="main"><span><img src="images/logo.png"/></span></a></div>
<div class="TopMenus">
<ul class="ChangeShow">
<ol><span>上一页</span></ol>
<li><span>下一页</span></li>
</ul>
<div class="ListMenu">
<ul><li class='ck'><span onClick="showmenu('often','index.php?iframe=left&part=often')" class='often'>快捷菜单</span></li> <li><span onClick="showmenu('base','index.php?iframe=left&part=base')" class='base'>系统功能</span></li> <li><span onClick="showmenu('article','index.php?iframe=left&part=article')" class='article'>文章功能</span></li> <li><span onClick="showmenu('member','index.php?iframe=left&part=member')" class='member'>会员管理</span></li> <li><span onClick="showmenu('module','index.php?iframe=left&part=module')" class='module'>模块中心</span></li> <li><span onClick="showmenu('other','index.php?iframe=left&part=other')" class='other'>插件管理</span></li> </ul>
</div>
</div>
</div>
<table border="0" cellPadding="0" cellSpacing="0" height="100%" width="100%" style="table-layout: fixed;">
<tr><td width="205" height="98"></td><td></td></tr>
<tr>
<td><iframe frameborder="0" id="menu" name="menu" src="./index.php?iframe=left&part=often" scrolling="yes" style="height: 100%; visibility: inherit; width: 100%; z-index: 1;overflow: auto;"></iframe></td>
<td><iframe frameborder="0" id="main" name="main" src="./index.php?lfj=center&job=map" scrolling="yes" style="height: 100%; visibility: inherit; width: 100%; z-index: 1;overflow: auto;"></iframe></td>
</tr></table>
<script type="text/javascript">
var topmenu_width=115;
var topmenu_length=$('.TopMenus .ListMenu ul li').length;
var nowtopmenu=1;
function next_topmenu(){
nowtopmenu++;
if(nowtopmenu>topmenu_length){
nowtopmenu=1;
}
change_topmenu(nowtopmenu);
}
function prev_topmenu(){
nowtopmenu--;
if(nowtopmenu<1){
nowtopmenu=topmenu_length;
}
change_topmenu(nowtopmenu);
}
function change_topmenu(num){
var thisnum=(num-1);
var left_width=topmenu_width*thisnum;
$('.TopMenus .ListMenu ul').animate({'left':'-'+left_width+'px'},500);
}
$('.ChangeShow li').click(function(){
next_topmenu();
});
$('.ChangeShow ol').click(function(){
prev_topmenu();
});
function showmenu(name,url){
$('.TopMenus .ListMenu ul li').each(function(){
if($(this).find('span').hasClass(name)){
$(this).addClass('ck');
}else{
$(this).removeClass('ck');
}
});
$('#menu').attr("src",url);
}
</script>
</body>
<!---->
</html>
查看源代码.看看是不是编辑器的路径文件不存在