@@ -1,6 +1,15 @@ | |||||
# 更新记录 | # 更新记录 | ||||
通过访问 https://www.dedebiz.com/git 获取完整更新记录 | 通过访问 https://www.dedebiz.com/git 获取完整更新记录 | ||||
# V6.5.6 | |||||
- PHP8高版本兼容性调整; | |||||
- SQLite支持兼容性调整; | |||||
- 默认启用开发模式,建议生成环境更改为安全模式; | |||||
- 优化DedeBIZ命令行工具; | |||||
- 搜索关键词功能优化; | |||||
- 安装目录更新SQL语句位置调整; | |||||
- 修复安装SQL没有正确执行的错误; | |||||
# V6.5.2 | # V6.5.2 | ||||
- 富文本编辑器支持AI操作,需要AI助手1.0.3版本; | - 富文本编辑器支持AI操作,需要AI助手1.0.3版本; | ||||
- SQL命令工具优化; | - SQL命令工具优化; | ||||
@@ -1 +1 @@ | |||||
20250326 | |||||
20250331 |
@@ -11,7 +11,7 @@ error_reporting(E_ALL || ~E_NOTICE); | |||||
define('INSLOCKFILE', dirname(__FILE__).'/install_lock.txt'); | define('INSLOCKFILE', dirname(__FILE__).'/install_lock.txt'); | ||||
$verMsg = 'V6'; | $verMsg = 'V6'; | ||||
$dfDbname = 'DedeBIZ'; | $dfDbname = 'DedeBIZ'; | ||||
$cfg_version_detail = '6.5.2'; //详细版本号 | |||||
$cfg_version_detail = '6.5.6'; //详细版本号 | |||||
$errmsg = ''; | $errmsg = ''; | ||||
if (version_compare(PHP_VERSION, '8.0.0', '>=') && function_exists("mysqli_report")) { | if (version_compare(PHP_VERSION, '8.0.0', '>=') && function_exists("mysqli_report")) { | ||||
mysqli_report(MYSQLI_REPORT_OFF); | mysqli_report(MYSQLI_REPORT_OFF); | ||||
@@ -1113,7 +1113,7 @@ class ListView | |||||
//开启伪静态对规则替换 | //开启伪静态对规则替换 | ||||
if ($cfg_rewrite == 'Y') { | if ($cfg_rewrite == 'Y') { | ||||
$purl = str_replace("/apps", "", $purl); | $purl = str_replace("/apps", "", $purl); | ||||
$nowurls = str_replace("/", ".php?", $purl); | |||||
$nowurls = preg_replace("/", ".php?", $purl); | |||||
$nowurls = explode("?", $nowurls); | $nowurls = explode("?", $nowurls); | ||||
$purl = $nowurls[0]; | $purl = $nowurls[0]; | ||||
} | } | ||||
@@ -968,7 +968,7 @@ class SgListView | |||||
//开启伪静态对规则替换 | //开启伪静态对规则替换 | ||||
if ($cfg_rewrite == 'Y') { | if ($cfg_rewrite == 'Y') { | ||||
$purl = str_replace("/apps", "", $purl); | $purl = str_replace("/apps", "", $purl); | ||||
$nowurls = str_replace("/", ".php?", $purl); | |||||
$nowurls = preg_replace("/", ".php?", $purl); | |||||
$nowurls = explode("?", $nowurls); | $nowurls = explode("?", $nowurls); | ||||
$purl = $nowurls[0]; | $purl = $nowurls[0]; | ||||
} | } | ||||
@@ -198,7 +198,7 @@ $cfg_medias_dir = $cfg_cmspath.$cfg_medias_dir; | |||||
$cfg_mediasurl = $cfg_mainsite.$cfg_medias_dir; | $cfg_mediasurl = $cfg_mainsite.$cfg_medias_dir; | ||||
//程序信息摘要,请不要删除则系统无法接收升级信息 | //程序信息摘要,请不要删除则系统无法接收升级信息 | ||||
$cfg_version = 'V6'; | $cfg_version = 'V6'; | ||||
$cfg_version_detail = '6.5.2';//详细版本号 | |||||
$cfg_version_detail = '6.5.6';//详细版本号 | |||||
$cfg_soft_lang = 'utf-8'; | $cfg_soft_lang = 'utf-8'; | ||||
$cfg_soft_public = 'base'; | $cfg_soft_public = 'base'; | ||||
$cfg_softname = '得德系统'; | $cfg_softname = '得德系统'; | ||||