@@ -1,10 +1,10 @@ | |||
# DedeCMSV6 | |||
# DedeBIZ | |||
国内流行的内容管理系统(CMS)多端全媒体解决方案,DedeCMSV6系统基于PHP7.X开发,具有很强的可扩展性,并且完全开放源代码。DedeBIZ商业支持采用现流行的Go语言设计开发,让DedeCMS系统拥有简单易用、灵活扩展特性之外更安全、高效。模板设计制作简单一直是系统的一大特点,全新的版本延续了之前标签引擎,同时采用响应式模板引擎Bootstrap作为系统模板渲染引擎,让搭建跨终端(移动、PC)全媒体站点更简单。 | |||
国内流行的内容管理系统(CMS)多端全媒体解决方案,DedeBIZ系统基于PHP7.X开发,具有很强的可扩展性,并且完全开放源代码。DedeBIZ商业支持采用现流行的Go语言设计开发,让DedeCMS系统拥有简单易用、灵活扩展特性之外更安全、高效。模板设计制作简单一直是系统的一大特点,全新的版本延续了之前标签引擎,同时采用响应式模板引擎Bootstrap作为系统模板渲染引擎,让搭建跨终端(移动、PC)全媒体站点更简单。 | |||
## 版本说明 | |||
DedeCMSV6.x是一个LTS版本,支持将到2022年10月截止,目前DedeCMSV6已经发布,可以[点击下载](https://www.dedebiz.com/download)获取。 | |||
DedeBIZ.x是一个LTS版本,支持将到2022年10月截止,目前DedeBIZ已经发布,可以[点击下载](https://www.dedebiz.com/download)获取。 | |||
## 参与开源 | |||
@@ -14,7 +14,7 @@ DedeCMSV6.x是一个LTS版本,支持将到2022年10月截止,目前DedeCMSV6 | |||
我们将会收集、整理新的功能需求制定新的Roadmap。 | |||
[开发者](https://www.dedebiz.com/developer)可以到[工单管理](https://www.zhelixie.com/DedeBiz/DedeCMSV6/issues)中进行交流反馈。 | |||
[开发者](https://www.dedebiz.com/developer)可以到[工单管理](https://www.zhelixie.com/DedeBiz/DedeBIZ/issues)中进行交流反馈。 | |||
普通用户可以通过微信公众号或者邮件的方式进行反馈,详见本页底部资源。 | |||
@@ -95,8 +95,8 @@ NAME: | |||
USAGE: | |||
php ./dedebiz command [arguments...] | |||
COMMANDS: | |||
serv,s Run cli web server for DedeCMSV6 | |||
make,m Make DedeCMSV6 HTML | |||
serv,s Run cli web server for DedeBIZ | |||
make,m Make DedeBIZ HTML | |||
update,u Update to latest system | |||
help,h Shows a list of commands or help | |||
quick,q Quick start a development environment | |||
@@ -112,13 +112,13 @@ WEBSITE: | |||
## 版权信息 | |||
详细参考:[DedeCMSV6站点授权协议](https://www.dedebiz.com/license) | |||
详细参考:[DedeBIZ站点授权协议](https://www.dedebiz.com/license) | |||
我们对DedeCMSV6系统授权的态度是“鼓励但不强制”,购买授权是对知识产权的尊重,是对我们技术服务的认可。 | |||
我们对DedeBIZ系统授权的态度是“鼓励但不强制”,购买授权是对知识产权的尊重,是对我们技术服务的认可。 | |||
## 相关资源 | |||
- [DedeCMSV6](https://www.dedebiz.com) | |||
- [DedeBIZ](https://www.dedebiz.com) | |||
- [帮助中心](https://www.dedebiz.com/help) | |||
@@ -14,7 +14,7 @@ $workDir = dirname(__FILE__) . "/src"; | |||
chdir($workDir); | |||
if (substr(php_sapi_name(), 0, 3) === 'cgi') { | |||
die("DedeCMSV6:needs php-cli to run\n\n"); | |||
die("DedeBIZ:needs php-cli to run\n\n"); | |||
} | |||
$helpStr = " | |||
@@ -23,8 +23,8 @@ NAME: | |||
USAGE: | |||
php ./dedebiz command [arguments...] | |||
COMMANDS: | |||
serv,s Run cli web server for DedeCMSV6 | |||
make,m Make DedeCMSV6 HTML | |||
serv,s Run cli web server for DedeBIZ | |||
make,m Make DedeBIZ HTML | |||
update,u Update to latest system | |||
help,h Shows a list of commands or help | |||
quick,q Quick start a development environment | |||
@@ -75,9 +75,9 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { | |||
// PHP5.4以下不支持内建服务器 | |||
// 用于开发调试 | |||
if (phpversion() < "5.4") { | |||
die("DedeCMSV6:command web server not support\n\n"); | |||
die("DedeBIZ:command web server not support\n\n"); | |||
} | |||
echo "Start Dev Server For DedeCMSV6\n\r"; | |||
echo "Start Dev Server For DedeBIZ\n\r"; | |||
echo "Open http://localhost:8088\n\r"; | |||
passthru(PHP_BINARY . ' -S localhost:8088 -t' . escapeshellarg('./')); | |||
} else if (count($argv) > 1 && ($argv[1] == "make" || $argv[1] == "m")) { | |||
@@ -296,23 +296,23 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { | |||
} else if (count($argv) > 1 && ($argv[1] == "quick" || $argv[1] == "q")){ | |||
define("DEDEINC", $workDir."/include"); | |||
require_once(DEDEINC . "/cli.class.php"); | |||
// 快速开始一个用于开发的DedeCMSV6环境,基于SQLite无其他依赖 | |||
if (file_exists($workDir."/data/dedecmsv6.db")) { | |||
// 快速开始一个用于开发的DedeBIZ环境,基于SQLite无其他依赖 | |||
if (file_exists($workDir."/data/DedeBIZ.db")) { | |||
DedeCli::write("development environment has inited"); | |||
echo "Start Dev Server For DedeCMSV6\n\r"; | |||
echo "Start Dev Server For DedeBIZ\n\r"; | |||
echo "Open http://localhost:8088\n\r"; | |||
passthru(PHP_BINARY . ' -S localhost:8088 -t' . escapeshellarg('./')); | |||
exit; | |||
} | |||
// 初始化安装一个开发环境 | |||
$db = new SQLite3($workDir.'/data/dedecmsv6.db'); | |||
$db = new SQLite3($workDir.'/data/DedeBIZ.db'); | |||
$fp = fopen($workDir."/install/common.inc.php","r"); | |||
$configStr1 = fread($fp,filesize($workDir."/install/common.inc.php")); | |||
fclose($fp); | |||
@chmod($workDir."/data",0777); | |||
$dbtype = "sqlite"; | |||
$dbhost = ""; | |||
$dbname = "dedecmsv6"; | |||
$dbname = "DedeBIZ"; | |||
$dbuser = ""; | |||
$dbpwd = ""; | |||
$dbprefix = "dede_"; | |||
@@ -334,7 +334,7 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { | |||
$baseurl = "http://127.0.0.1:8088"; | |||
$indexUrl = "/"; | |||
$cmspath = ""; | |||
$webname = "DedeCMSV6本地测试开发站点"; | |||
$webname = "DedeBIZ本地测试开发站点"; | |||
$adminmail = "admin@dedebiz.com"; | |||
$fp = fopen($workDir."/install/config.cache.inc.php","r"); | |||
@@ -459,9 +459,9 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { | |||
Values('1','10','0','{$adminuser}的空间','','person','',''); "; | |||
$db->exec($adminquery); | |||
if (phpversion() < "5.4") { | |||
die("DedeCMSV6:command web server not support\n\n"); | |||
die("DedeBIZ:command web server not support\n\n"); | |||
} | |||
echo "Start Dev Server For DedeCMSV6\n\r"; | |||
echo "Start Dev Server For DedeBIZ\n\r"; | |||
echo "Open http://localhost:8088\n\r"; | |||
passthru(PHP_BINARY . ' -S localhost:8088 -t' . escapeshellarg('./')); | |||
exit; | |||
@@ -48,8 +48,6 @@ input,input[type=text],input[type=password] { | |||
border:1px solid #eee | |||
} | |||
input[type=checkbox],input[type=radio] { | |||
width:14px; | |||
height:14px; | |||
vertical-align:bottom | |||
} | |||
textarea { | |||
@@ -433,10 +431,10 @@ option.stype { | |||
cursor:pointer | |||
} | |||
.maintable { | |||
width:98% !important | |||
width:98%!important | |||
} | |||
a.btn { | |||
color:white !important | |||
color:white!important | |||
} | |||
span.page-link { | |||
background-color:#ddd | |||
@@ -45,7 +45,7 @@ form { | |||
margin-left:10px; | |||
height:46px; | |||
line-height:46px; | |||
font-size:24px; | |||
font-size:18px; | |||
font-weight:600; | |||
color:#fff | |||
} | |||
@@ -63,10 +63,12 @@ form { | |||
line-height:46px; | |||
overflow:hidden | |||
} | |||
.top .top_link ul li.welcome { | |||
border-right:none; | |||
color:#fff; | |||
padding-right:10px | |||
.top .top_link ul li.welcome img { | |||
margin-top:-2px; | |||
margin-right:10px; | |||
width:30px; | |||
height:30px; | |||
vertical-align:middle | |||
} | |||
.top .top_link ul li { | |||
float:left; | |||
@@ -79,8 +81,7 @@ form { | |||
text-decoration:none | |||
} | |||
.top .top_link ul li a:hover { | |||
color:#fff; | |||
text-decoration:underline | |||
color:#ccc | |||
} | |||
.top .top_link .quick { | |||
padding:3px 0px 0px 0px; | |||
@@ -313,19 +314,18 @@ body.hidemenu .right { | |||
display:none | |||
} | |||
.allmenu { | |||
width:720px; | |||
width:800px; | |||
background:#fff; | |||
border:2px solid #999; | |||
z-index:999; | |||
position:absolute; | |||
left:50%; | |||
top:38px; | |||
margin-left:-350px; | |||
top:76px; | |||
margin-left:-400px; | |||
display:none; | |||
padding:10px | |||
} | |||
.allmenu .allmenu-box { | |||
width:720px; | |||
margin:0 auto; | |||
text-align:left; | |||
overflow:hidden; | |||
@@ -333,7 +333,7 @@ body.hidemenu .right { | |||
} | |||
.maptop { | |||
float:left; | |||
width:108px; | |||
width:130px; | |||
overflow:hidden; | |||
padding-right:6px; | |||
padding-left:6px; | |||
@@ -73,7 +73,7 @@ table{background:#fff} | |||
</head> | |||
<body class="bg"> | |||
<div id="floater" class="napisdiv"> | |||
<a href="javascript:nullLink();" onClick="document.getElementById('floater').style.display='none';"><img src='img/picviewnone.gif' id='picview' border='0' alt='关闭预览'></a> | |||
<a href="javascript:nullLink();" onClick="document.getElementById('floater').style.display='none';"><img src="img/picviewnone.gif" id='picview' alt="关闭预览"></a> | |||
</div> | |||
<script src="../js/float.js"></script> | |||
<script> | |||
@@ -221,7 +221,7 @@ table{background:#fff} | |||
<input type="hidden" name="job" value="upload"> | |||
<tr> | |||
<td> | |||
上传:<input type="file" name="imgfile" style="width:160px"> | |||
上传:<input type="file" name="imgfile" style="width:160px;border:none"> | |||
<label><input type="checkbox" name="needwatermark" value="1" class="np" <?php if ($photo_markup == '1') echo "checked"; ?> /> 水印 </label> | |||
<label><input type="checkbox" name="resize" value="1" class="np"> 缩小 </label> | |||
宽:<input type="text" name="iwidth" value="<?php echo $cfg_ddimg_width ?>" style="width:46px"> | |||
@@ -82,7 +82,7 @@ table{background:#fff} | |||
<input type="hidden" name="activepath" value="<?php echo $activepath ?>"> | |||
<input type="hidden" name="f" value="<?php echo $f ?>"> | |||
<input type="hidden" name="job" value="upload"> | |||
上传:<input type="file" name="uploadfile" size="24"> | |||
上传:<input type="file" name="uploadfile" size="24" style="border:none"> | |||
| |||
改名:<input type="text" name="newname" style="width:160px"> | |||
| |||
@@ -187,7 +187,7 @@ table{background:#fff} | |||
<input type="hidden" name="job" value="upload"> | |||
<tr> | |||
<td> | |||
上传:<input type="file" name="uploadfile" style="width:260px"> | |||
上传:<input type="file" name="uploadfile" style="width:260px;border:none"> | |||
改名:<input type="text" name="filename" style="width:160px"> | |||
<button type="submit" name="sb1" class="btn btn-success btn-sm">确定</button> | |||
</td> | |||
@@ -443,7 +443,7 @@ $actionSearch[10] = array( | |||
), | |||
14 => array( | |||
'title' => '病毒扫描[S]', | |||
'description' => '以DedeCMSV6开发模式为标准对现有的文件进行扫描并进行判断', | |||
'description' => '以DedeBIZ开发模式为标准对现有的文件进行扫描并进行判断', | |||
'purview' => 'sys_verifies', | |||
'linkurl' => 'sys_safetest.php' | |||
), | |||
@@ -1,84 +1,68 @@ | |||
<!DOCTYPE html> | |||
<html xmlns="http://www.w3.org/1999/xhtml"> | |||
<html> | |||
<head> | |||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
<title><?php echo $cfg_webname; ?>-<?php echo $cfg_softname." ".$cfg_version; ?></title> | |||
<link href="css/frame.css" rel="stylesheet" type="text/css" /> | |||
<script src="../static/js/jquery.js" language="javascript" type="text/javascript"></script> | |||
<script src="js/frame.js" language="javascript" type="text/javascript"></script> | |||
<link href="images/style<?php echo $cfg_admin_skin;?>/style.css" rel="stylesheet" type="text/css" /> | |||
<style type="text/css"> | |||
#skinlist { | |||
display: block; | |||
height: 11px; | |||
margin-top: 10px; | |||
overflow: hidden; | |||
width: 86px; | |||
} | |||
#skin div { | |||
float: left; | |||
} | |||
#skin li { | |||
cursor: pointer; | |||
float: left; | |||
height: 11px; | |||
width: 14px; | |||
} | |||
#def div, | |||
#s1 div, | |||
#s2 div, | |||
#s3 div, | |||
#s4 div { | |||
background-image: url("images/skinbutton.png"); | |||
background-repeat: no-repeat; | |||
} | |||
#s1 div { | |||
background-position: 0 0px; | |||
} | |||
#s2 div { | |||
background-position: 0 -11px; | |||
} | |||
#s3 div { | |||
background-position: 0 -22px; | |||
} | |||
#s4 div { | |||
background-position: 0 -33px; | |||
} | |||
#s1 div.sel { | |||
background: url("images/skinbutton.png") no-repeat scroll -14px top transparent; | |||
} | |||
#s2 div.sel { | |||
background: url("images/skinbutton.png") no-repeat scroll -14px -11px transparent; | |||
} | |||
#s3 div.sel { | |||
background: url("images/skinbutton.png") no-repeat scroll -14px -22px transparent; | |||
} | |||
#s4 div.sel { | |||
background: url("images/skinbutton.png") no-repeat scroll -14px -33px transparent; | |||
} | |||
<meta charset="<?php echo $cfg_soft_lang; ?>"> | |||
<title><?php echo $cfg_webname; ?>-<?php echo $cfg_soft_enname; ?> <?php echo $cfg_version_detail; ?></title> | |||
<link rel="stylesheet" href="css/frame.css"> | |||
<link rel="stylesheet" href="images/style<?php echo $cfg_admin_skin;?>/style.css"> | |||
<script src="../static/js/jquery.js"></script> | |||
<script src="js/frame.js"></script> | |||
<style> | |||
#skinlist { | |||
display:block; | |||
height:11px; | |||
margin-top:10px; | |||
overflow:hidden; | |||
width:86px | |||
} | |||
#skin div { | |||
float:left | |||
} | |||
#skin li { | |||
cursor:pointer; | |||
float:left; | |||
height:11px; | |||
width:14px | |||
} | |||
#def div,#s1 div,#s2 div,#s3 div,#s4 div { | |||
background-image:url("images/skinbutton.png"); | |||
background-repeat:no-repeat | |||
} | |||
#s1 div { | |||
background-position:0 0px | |||
} | |||
#s2 div { | |||
background-position:0 -11px | |||
} | |||
#s3 div { | |||
background-position:0 -22px | |||
} | |||
#s4 div { | |||
background-position:0 -33px | |||
} | |||
#s1 div.sel { | |||
background:url("images/skinbutton.png") no-repeat scroll -14px top transparent | |||
} | |||
#s2 div.sel { | |||
background:url("images/skinbutton.png") no-repeat scroll -14px -11px transparent | |||
} | |||
#s3 div.sel { | |||
background:url("images/skinbutton.png") no-repeat scroll -14px -22px transparent | |||
} | |||
#s4 div.sel { | |||
background:url("images/skinbutton.png") no-repeat scroll -14px -33px transparent | |||
} | |||
</style> | |||
</head> | |||
<body class="showmenu"> | |||
<div class="pagemask"></div> | |||
<iframe class="iframemask"></iframe> | |||
<div class="allmenu"> | |||
<div class="allmenu-box"> | |||
<?php | |||
echo $mapstring; | |||
?> | |||
<br style='clear:both' /> | |||
echo $mapstring; | |||
?> | |||
<br style="clear:both"> | |||
</div> | |||
</div> | |||
<div class="head"> | |||
@@ -87,36 +71,30 @@ | |||
<div class="top_version"><?php echo $cfg_version_detail; ?></div> | |||
<div class="top_link"> | |||
<ul> | |||
<li class="welcome">您好:<?php echo $cuserLogin->getUserName(); ?> ,欢迎使用DedeBIZV6!</li> | |||
<li><a href="index_menu.php" target="menu">主菜单</a></li> | |||
<li><a href="#" onclick="JumpFrame('index_menu.php','index_body.php');">系统主页</a></li> | |||
<li class="welcome"><img src="/static/img/avatar.png" title="<?php echo $cuserLogin->getUserName(); ?>"><?php echo $cuserLogin->getUserName(); ?><a href="exit.php" target="_top">注销</a></li> | |||
<li><a href="#" onclick="JumpFrame('index_menu.php','index_body.php');">后台主页</a></li> | |||
<li><a href="#" onclick="JumpFrame('catalog_menu.php','public_guide.php');">内容发布</a></li> | |||
<li><a href="#" onclick="JumpFrame('index_menu.php','content_list.php');">内容维护</a></li> | |||
<li><a href="../index.php?upcache=1" target="_blank">网站主页</a></li> | |||
<li><a href="../member" target="_blank">会员中心</a></li> | |||
<li><a href="exit.php" target="_top">注销</a></li> | |||
<li><a href="../index.php?upcache=1" target="_blank">网站主页</a></li> | |||
</ul> | |||
</div> | |||
</div> | |||
<div class="topnav"> | |||
<div class="menuact"> <a href="#" id="togglemenu">隐藏菜单</a> | |||
<?php | |||
<div class="menuact"><a href="#" id="togglemenu">隐藏菜单</a> | |||
<?php | |||
if($cuserLogin->getUserType() >= 10) echo '<a href="#" id="allmenu">功能地图</a>'; | |||
?> | |||
</div> | |||
<div id="skin"> | |||
<div> | |||
<div id="skin"><div> | |||
</div> | |||
</div> | |||
<div class="nav" id="nav"> </div> | |||
<div class="nav" id="nav"></div> | |||
<div class="sysmsg"> | |||
<h3>滚动消息:</h3> | |||
<div class="scroll"> | |||
<form action="action_search.php" target="main" method="post"> | |||
<input name="keyword" type="text" value="功能搜索" onfocus="if(this.value=='功能搜索'){this.value='';}" | |||
onblur="if(this.value==''){this.value='功能搜索';}" class="allsearch" style="width:150px;" /> | |||
<input name="keyword" type="text" value="功能搜索" onfocus="if(this.value=='功能搜索'){this.value='';}" onblur="if(this.value==''){this.value='功能搜索';}" class="allsearch"> | |||
<input name="" type="submit" value="搜索" class="np" /> | |||
<a href='<?php echo $cfg_biz_gitUrl;?>' target='_blank'>代码托管</a> <a href='<?php echo $cfg_biz_helpUrl;?>' | |||
target='_blank'>帮助中心</a> | |||
@@ -187,5 +165,4 @@ | |||
})(jQuery); | |||
</script> | |||
</body> | |||
</html> |
@@ -21,9 +21,6 @@ div { | |||
padding:0; | |||
margin:0 | |||
} | |||
.sitemu a { | |||
font-size:12px | |||
} | |||
dl.bitem { | |||
clear:both; | |||
width:140; | |||
@@ -62,18 +59,16 @@ div.items { | |||
padding-top:2px; | |||
float:left | |||
} | |||
li { | |||
height:24px | |||
} | |||
.sitemu li { | |||
padding:0 0 0 18px; | |||
height:24px; | |||
line-height:24px; | |||
background:url(images/arr4.gif) no-repeat 5px 9px | |||
} | |||
a.mmac div { | |||
background:url(images/leftbg2.gif) no-repeat; | |||
height:38px!important; | |||
padding:8px 4px 4px 10; | |||
padding:8px 4px 4px 10px; | |||
word-wrap:break-word; | |||
word-break:break-all; | |||
font-weight:600; | |||
@@ -82,7 +77,7 @@ a.mmac div { | |||
a.mm div { | |||
background:url(images/leftmbg1.gif) no-repeat; | |||
height:38px!important; | |||
padding:8px 4px 4px 10; | |||
padding:8px 4px 4px 10px; | |||
word-wrap:break-word; | |||
word-break:break-all; | |||
font-weight:600; | |||
@@ -268,7 +268,7 @@ $action = isset($action) ? $action : ''; | |||
<dl style="margin-left:0.5%;margin-right:0.5%; width:97%" id="item1" class="dbox"> | |||
<dt class="lside"><span class="l" style="float:left">系统运行目录权限检测</span><span style="float:right; margin-right:20px"><a href="index_body.php">返回主页</a></span><span style="float:right; margin-right:20px"><a href="https://www.dedebiz.com/help" target="_blank">帮助说明</a></span></dt> | |||
<dd> | |||
<div style="padding:10px"> 说明:本程序用于检测DedeCMSV6站点所涉及的目录权限,并且提供一个全面的检测说明,您可以根据检测报告来配置站点以保证站点更为安全。</div> | |||
<div style="padding:10px"> 说明:本程序用于检测DedeBIZ站点所涉及的目录权限,并且提供一个全面的检测说明,您可以根据检测报告来配置站点以保证站点更为安全。</div> | |||
<div id="tableHeader" style="margin-left:10px"> | |||
<table width="784" border="0" cellpadding="0" cellspacing="1" bgcolor="#047700" id="scanTable"> | |||
<thead> | |||
@@ -152,7 +152,7 @@ function _upload() {} | |||
exit(); | |||
} else { | |||
if (!preg_match("#\.(htm|html)$#", $upfile_name)) { | |||
ShowMsg("DedeCMSV6模板只能用 .htm 或 .html扩展名!", "-1"); | |||
ShowMsg("DedeBIZ模板只能用 .htm 或 .html扩展名!", "-1"); | |||
exit(); | |||
} | |||
if (preg_match("#[\\\\\/]#", $upfile_name)) { | |||
@@ -11,7 +11,7 @@ | |||
error_reporting(E_ALL || ~E_NOTICE); | |||
$verMsg = 'V6'; | |||
$dfDbname = 'dedecmsv6'; | |||
$dfDbname = 'DedeBIZ'; | |||
$cfg_version_detail = '6.0.3'; // 详细版本号 | |||
$errmsg = ''; | |||
@@ -513,7 +513,7 @@ INSERT INTO `#@__co_onepage` VALUES('5','www.dedebiz.com','DedeBIZ','1','gb2312' | |||
('4','www.techweb.com.cn','Techweb','1','gb2312','<div class="content_txt">{@body}</div>\t\n'), | |||
('6','tw.news.yahoo.com','台湾雅虎','1','big5','<div id="ynwsartcontent">{@body}</div>\t\n'); | |||
INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com', 'DedeCMSV6', '', '', '', 1226375403, 1, 2); | |||
INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com', 'DedeBIZ', '', '', '', 1226375403, 1, 2); | |||
INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com/help', '帮助中心', '', '', '', 1227772717, 1, 2); | |||
INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com/auth', '授权中心', '', '', '', 1227772703, 1, 2); | |||
INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (3, 'https://www.dedebiz.com/git', '代码托管', '', '', '', 1603767210, 1, 1); | |||
@@ -4,7 +4,7 @@ | |||
<head> | |||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |||
<title>安装程序 - DedeCMSV6 - DedeBIZ技术支持 | |||
<title>安装程序 - DedeBIZ - DedeBIZ技术支持 | |||
</title> | |||
<link rel="stylesheet" href="../static/css/bootstrap.min.css"> | |||
<link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet"> | |||
@@ -16,7 +16,7 @@ | |||
<body> | |||
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm"> | |||
<h5 class="my-0 mr-md-auto font-weight-normal text-success">DedeCMSV6安装程序</h5> | |||
<h5 class="my-0 mr-md-auto font-weight-normal text-success">DedeBIZ安装程序</h5> | |||
<nav class="my-2 my-md-0 mr-md-3"> | |||
<a class="p-2 text-dark" href="https://www.dedebiz.com/git" target="_blank">代码托管</a> | |||
<a class="p-2 text-dark" href="https://www.dedebiz.com/help" target="_blank">帮助中心</a> | |||
@@ -76,7 +76,7 @@ | |||
<div class="mb-3"> | |||
<label for="dbname" class="form-label">数据库名称</label> | |||
<div class="input-group mb-3"> | |||
<input id="dbname" name="dbname" type="text" class="form-control" placeholder="dedecmsv6"> | |||
<input id="dbname" name="dbname" type="text" class="form-control" placeholder="DedeBIZ"> | |||
<div class="input-group-append"> | |||
<button class="btn btn-outline-success" type="button" id="btnCheckConnect">检查连接</button> | |||
</div> | |||
@@ -33,7 +33,7 @@ if ($fmdo == 'sendMail') { | |||
$mailbody .= "欢迎注册成为[{$cfg_webname}]的会员。\r\n"; | |||
$mailbody .= "要通过注册,还必须进行最后一步操作,请点击或复制下面链接到地址栏访问这地址:\r\n\r\n"; | |||
$mailbody .= "{$url}\r\n\r\n"; | |||
$mailbody .= "Power by https://www.dedebiz.com DedeCMSV6内容管理系统\r\n"; | |||
$mailbody .= "Power by https://www.dedebiz.com DedeBIZ内容管理系统\r\n"; | |||
$headers = "From: " . $cfg_adminemail . "\r\nReply-To: " . $cfg_adminemail; | |||
@@ -1,7 +1,7 @@ | |||
<footer class="bg-success"> | |||
<div class="copyright py-5"> | |||
<p class="text-center"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS<?php echo $cfg_version;?></strong></a> © 2021 <a href="https://www.dedebiz.com" target="_blank" title="DedeBIZ商业技术支持,提供更专业强大的站点应用开发技术">DedeBIZ技术支持</a><br /> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS<?php echo $cfg_version;?></strong></a> © 2021 <a href="https://www.dedebiz.com" target="_blank" title="DedeBIZ商业技术支持,提供更专业强大的站点应用开发技术">DedeBIZ技术支持</a><br /> | |||
<?php echo $cfg_powerby;?> <?php echo $cfg_beian;?> | |||
</p> | |||
</div> | |||
@@ -44,7 +44,7 @@ else if ($action == 'send') { | |||
$msg = RemoveXSS(dede_htmlspecialchars($msg)); | |||
$mailtitle = "你的好友给你推荐了一篇文章"; | |||
$mailbody .= "$msg \r\n\r\n"; | |||
$mailbody .= "Powered by https://www.dedebiz.com DedeCMSV6内容管理系统!"; | |||
$mailbody .= "Powered by https://www.dedebiz.com DedeBIZ内容管理系统!"; | |||
$headers = "From: " . $cfg_adminemail . "\r\nReply-To: " . $cfg_adminemail; | |||
if (!empty($cfg_bizcore_appid) && !empty($cfg_bizcore_key)) { | |||
@@ -167,7 +167,7 @@ $fields['typeurl'] = GetTypeUrl($fields['typeid'],MfTypedir($fields['typedir']), | |||
<div class="footer cbox"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
</div> | |||
</body> | |||
@@ -1,7 +1,7 @@ | |||
<footer class="bg-success"> | |||
<div class="copyright py-5"> | |||
<p class="text-center"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global.cfg_version/}</strong></a> © 2021 <a href="https://www.dedebiz.com" target="_blank" title="DedeBIZ商业技术支持,提供更专业强大的站点应用开发技术">DedeBIZ技术支持</a><br /> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global.cfg_version/}</strong></a> © 2021 <a href="https://www.dedebiz.com" target="_blank" title="DedeBIZ商业技术支持,提供更专业强大的站点应用开发技术">DedeBIZ技术支持</a><br /> | |||
{dede:global.cfg_powerby/} {dede:global.cfg_beian/} | |||
</p> | |||
</div> | |||
@@ -1,7 +1,7 @@ | |||
<footer class="bg-success mt-3"> | |||
<div class="copyright py-5"> | |||
<p class="text-center"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS<?php echo $cfg_version;?></strong></a> © 2021 <a href="https://www.dedebiz.com" target="_blank" title="DedeBIZ商业技术支持,提供更专业强大的站点应用开发技术">DedeBIZ技术支持</a><br /> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS<?php echo $cfg_version;?></strong></a> © 2021 <a href="https://www.dedebiz.com" target="_blank" title="DedeBIZ商业技术支持,提供更专业强大的站点应用开发技术">DedeBIZ技术支持</a><br /> | |||
<?php echo $cfg_powerby;?> <?php echo $cfg_beian;?> | |||
</p> | |||
</div> | |||
@@ -33,7 +33,7 @@ | |||
<div class="footer_left"></div> | |||
<div class="footer_body"> | |||
<p class="powered"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
</div> | |||
<div class="footer_right"></div> | |||
</div> | |||
@@ -32,7 +32,7 @@ | |||
<div class="footer_left"></div> | |||
<div class="footer_body"> | |||
<p class="powered"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
</div> | |||
<div class="footer_right"></div> | |||
</div> | |||
@@ -61,7 +61,7 @@ | |||
<div class="footer_body"> | |||
<span class="gotop"><a href="javascript:scroll(0,0)"><img src="<?php echo $cfg_templets_skin; ?>/images/top.gif" height="11" width="61" alt="返回顶部"/></a></span> | |||
<p class="powered"> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeCMSV6内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
Powered by <a href="https://www.dedebiz.com" title="DedeBIZ内容管理系统-国内流行的内容管理系统(CMS)多端全媒体解决方案。" target="_blank"><strong>DedeCMS{dede:global name='cfg_version'/}</strong></a> © 2021 <a href="https://www.dedebiz.com/" target="_blank">DedeBIZ</a> Inc.<br /><div class="copyright">{dede:global name='cfg_powerby'/} {dede:global name='cfg_beian'/}</div></p> | |||
</div> | |||
<div class="footer_right"></div> | |||
</div> | |||