当前位置:网站首页>织梦后台发布文章编辑出现一片空白的解决办法
织梦后台发布文章编辑出现一片空白的解决办法
2022-08-06 16:17:00 【网站建设影子】
以下修改是针对dedecms 后台发布后的文章不能进行编辑修改,点击编辑出现一片空白的解决办法希望能帮助的大家!
找到该文件dede/archives_do.php
大约在39行(dedecms5.7版本)
if($dopost=='editArchives')
{
$query = "SELECT arc.id,arc.typeid,ch.maintable,ch.editcon
FROM `dede_arctiny` arc
LEFT JOIN `dede_arctype` tp ON tp.id=arc.typeid
LEFT JOIN `dede_channeltype` ch ON ch.id=arc.channel
WHERE arc.id='$aid' ";
$row = $dsql->GetOne($query);
$gurl = $row['editcon'];
if($gurl=='') $gurl='article_edit.php';
header("location:{$gurl}?aid=$aid");
exit();
}将上面的替换为一下代码
//编辑文档
function editArchives(){ }
---------------------------*/
if($dopost=='editArchives')
{
$query = "SELECT arc.id,arc.typeid,ch.maintable,ch.editcon
FROM `dede_arctiny` arc
LEFT JOIN `dede_arctype` tp ON tp.id=arc.typeid
LEFT JOIN `dede_channeltype` ch ON ch.id=arc.channel
WHERE arc.id='$aid' ";
$row = $dsql->GetOne($query);
$gurl = $row['editcon'];
if($gurl=='') $gurl='article_edit.php';
echo '<META HTTP-EQUIV="REFRESH" CONTENT="1; URL='.$gurl.'?aid='.$aid.'">';
exit();
}边栏推荐
猜你喜欢

湖仓一体电商项目(七):业务需求和分层设计及流程图

SAP CRM Fiori 应用 My Opportunity 的分页读取逻辑,在 GM4 - AG3 无法正常工作

Another proof of the strength of China's manufacturing, the number of Chinese companies in the top 500 is the largest

LeetCode: 392. Judgment Subsequence —— Simple

Detailed explanation of IK tokenizer

Electron学习——解决npm install electron --save-dev出错/缓慢的问题

阿里架构师力推jvm架构解析文档,把JVM调优实战讲的明明白白

LeetCode: 205. Isomorphic Strings - Simple

C语言函数参数中的三个点(三点 “...”)是干什么用的?(可变参数)<stdarg.h>、va_start 宏、va_arg 宏、va_end 宏

LeetCode·Daily Question·1408. String Matching in Array·Simulation
随机推荐
基于TCP/IP协议,定义原始的字节流协议传输Student类
同花顺登录证券账号安全么
nvidia-smi报错(重装Nvidia驱动)
小程序中实现搜索功能
启牛帮开通的中信证券VIP账户是安全的吗?怎么开
获取 table 距离窗口上方的高度(有深度的文章)
Enterprise monitoring server build
小程序图片转base64方案(多种解决方案)
Understand the principles of xss, csrf, ddos attacks and how to avoid them
cmd命令行工具
面试官:项目中最大的风险是什么?
d2-admin基本使用
SAP CRM Fiori 应用 My Opportunity 的分页读取逻辑,在 GM4 - AG3 无法正常工作
深入理解AVLTree【旋转控制平衡(单旋、双旋)】
reits基金开户在手机操作安全吗?
cmd command line tool
蚂蚁集团搭建行业首个全图风控,首次详解技术架构
Helm deployment ES and Kibana (default open SSL)
【C补充】二维数组作为形式参数的注意事项
SAP ABAP OData 服务的分页加载数据集的实现(Paging)试读版