去评论
dz插件网

使用restore.php恢复数据库页面显示乱码UC后台显示乱码header('Content-Type: text/html; charset='.constant('UC_CHARSET'));

admin
2023/02/23 14:57:41
使用restore.php恢复数据库页面显示乱码UC后台显示乱码的统一解决方案:

如图所示,遇到乱码的情况:



数据库恢复页面:
编辑:restore.php
查找:
  1. define('DBCHARSET', $_config['db']['1']['dbcharset']);
在其下行添加:
  1. header('Content-Type: text/html; charset='.constant('UC_CHARSET'));
然后保存文件就可以了。


UC后台页面:【新版本dz程序已经默认添加!】
编辑\uc_server\admin.php
查找:
  1. define('RELEASE_ROOT', '');
在其下行添加:
  1. header('Content-Type: text/html; charset='.constant('UC_CHARSET'));
然后保存文件就正常显示页面了。