mirror of
https://github.com/LyLme/lylme_spage.git
synced 2024-11-17 14:34:08 +08:00
更新 v1.8.0版本
This commit is contained in:
parent
c66b0320e2
commit
350410f35b
@ -1,24 +1,24 @@
|
||||
<?php
|
||||
include("../include/common.php");
|
||||
if(isset($_POST['user']) && isset($_POST['pass'])){
|
||||
$user=daddslashes($_POST['user']);
|
||||
$pass=daddslashes($_POST['pass']);
|
||||
if($user==$conf['admin_user'] && $pass==$conf['admin_pwd']) {
|
||||
$session=md5($user.$pass);
|
||||
$token=authcode("{$user}\t{$session}", 'ENCODE', SYS_KEY);
|
||||
setcookie("admin_token", $token, time() + 604800);
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
exit("<script language='javascript'>alert('登陆管理中心成功!');window.location.href='./';</script>");
|
||||
}elseif ($pass != $conf['admin_pwd']) {
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
exit("<script language='javascript'>alert('用户名或密码不正确!');history.go(-1);</script>");
|
||||
}
|
||||
}elseif(isset($_GET['logout'])){
|
||||
setcookie("admin_token", "", time() - 604800);
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
exit("<script language='javascript'>alert('您已成功注销本次登陆!');window.location.href='./login.php';</script>");
|
||||
}elseif(isset($islogin)==1){
|
||||
exit("<script language='javascript'>alert('您已登陆!');window.location.href='./';</script>");
|
||||
if(isset($_POST['user']) && isset($_POST['pass'])) {
|
||||
$user = daddslashes($_POST['user']);
|
||||
$pass = md5('lylme' . daddslashes($_POST['pass']));
|
||||
if($user == $conf['admin_user'] && $pass == $conf['admin_pwd']) {
|
||||
$session = md5($user . $pass);
|
||||
$token = authcode("{$user}\t{$session}", 'ENCODE', SYS_KEY);
|
||||
setcookie("admin_token", $token, time() + 604800);
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
exit("<script language='javascript'>alert('登陆管理中心成功!');window.location.href='./';</script>");
|
||||
} elseif ($pass != $conf['admin_pwd']) {
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
exit("<script language='javascript'>alert('用户名或密码不正确!');history.go(-1);</script>");
|
||||
}
|
||||
} elseif(isset($_GET['logout'])) {
|
||||
setcookie("admin_token", "", time() - 604800);
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
exit("<script language='javascript'>alert('您已成功注销本次登陆!');window.location.href='./login.php';</script>");
|
||||
} elseif(isset($islogin) == 1) {
|
||||
exit("<script language='javascript'>alert('您已登陆!');window.location.href='./';</script>");
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
@ -76,9 +76,10 @@ if(isset($_POST['user']) && isset($_POST['pass'])){
|
||||
|
||||
<body>
|
||||
<?php
|
||||
if(!empty($background = background())){
|
||||
$background = str_replace('./','../',$background);
|
||||
echo '<div class="row lylme-wrapper" style="background-image: url('.$background.');background-size: cover;">';}
|
||||
if(!empty($background = background())) {
|
||||
$background = str_replace('./', '../', $background);
|
||||
echo '<div class="row lylme-wrapper" style="background-image: url(' . $background . ');background-size: cover;">';
|
||||
}
|
||||
?>
|
||||
<div class="row lyear-wrapper">
|
||||
<div class="lyear-login">
|
||||
@ -103,7 +104,7 @@ if(!empty($background = background())){
|
||||
</form>
|
||||
<hr>
|
||||
<footer class="col-sm-12 text-center">
|
||||
<p class="m-b-0">Copyright ©2021 - <?php echo(date('Y')); ?> <a href="/"><?php echo explode("-", $conf['title'])[0];?></a></p>
|
||||
<p class="m-b-0">Copyright <?php echo(date('Y')); ?> <a href="/"><?php echo explode("-", $conf['title'])[0];?></a></p>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,57 +1,44 @@
|
||||
<?php
|
||||
<?php
|
||||
$title = '账号安全';
|
||||
include './head.php';
|
||||
$set=isset($_GET['set'])?$_GET['set']:null;
|
||||
if($set=='save'){
|
||||
$user=$_POST['new-usernameuser'];
|
||||
$oldpwd=$_POST['oldpwd'];
|
||||
$newpwd=$_POST['newpwd'];
|
||||
$repwd=$_POST['confirmpwd'];
|
||||
|
||||
if($oldpwd==$conf['admin_pwd'])
|
||||
{
|
||||
if(empty($newpwd)){//未修改密码
|
||||
if(empty($user))
|
||||
{
|
||||
echo '<script>alert("未做出更改");history.go(-1);</script>';//只修改用户名
|
||||
$set = isset($_GET['set']) ? $_GET['set'] : null;
|
||||
if($set == 'save') {
|
||||
$user = $_POST['new-usernameuser'];
|
||||
$oldpwd = $_POST['oldpwd'];
|
||||
$newpwd = $_POST['newpwd'];
|
||||
$repwd = $_POST['confirmpwd'];
|
||||
|
||||
if(md5('lylme' . $oldpwd) == $conf['admin_pwd']) {
|
||||
if(empty($newpwd)) {//未修改密码
|
||||
if(empty($user)) {
|
||||
echo '<script>alert("未做出更改");history.go(-1);</script>';
|
||||
} else {
|
||||
//只修改用户名
|
||||
saveSetting('admin_user', $user);
|
||||
echo '<script>alert("用户名修改成功!\n新用户名:' . $user . '\n请牢记,将重新登录!");window.location.href="./";</script>';
|
||||
}
|
||||
} elseif(!empty($newpwd)) {//修改密码
|
||||
if ($newpwd == $repwd && empty($user)) {
|
||||
$admin_pwd = md5('lylme' . $newpwd);
|
||||
saveSetting('admin_pwd', $admin_pwd);
|
||||
echo '<script>alert("密码修改成功!\n新密码:' . $newpwd . '\n请牢记,将重新登录!");window.location.href="./";</script>';
|
||||
} elseif($newpwd == $repwd) {
|
||||
$admin_pwd = md5('lylme' . $newpwd);
|
||||
saveSetting('admin_user', $user);
|
||||
saveSetting('admin_pwd', $admin_pwd);
|
||||
echo '<script>alert("修改成功!\n新用户名:' . $user . '\n新密码:' . $newpwd . '\n请牢记,将重新登录!");window.location.href="./";</script>';
|
||||
}
|
||||
|
||||
} else {
|
||||
echo '<script>alert("两次新密码不一致!");history.go(-1);</script>';
|
||||
}
|
||||
else
|
||||
{
|
||||
saveSetting('admin_user',$user);
|
||||
echo '<script>alert("用户名修改成功!\n新用户名:'.$user.'\n请牢记,将重新登录!");window.location.href="./";</script>';
|
||||
}
|
||||
}
|
||||
else if(!empty($newpwd))
|
||||
{//修改密码
|
||||
if ($newpwd==$repwd && empty($user))
|
||||
{
|
||||
saveSetting('admin_pwd',$newpwd);
|
||||
echo '<script>alert("密码修改成功!\n新密码:'.$newpwd.'\n请牢记,将重新登录!");window.location.href="./";</script>';
|
||||
}
|
||||
else if($newpwd==$repwd)
|
||||
{
|
||||
saveSetting('admin_user',$user);
|
||||
saveSetting('admin_pwd',$newpwd);
|
||||
echo '<script>alert("修改成功!\n新用户名:'.$user.'\n新密码:'.$newpwd.'\n请牢记,将重新登录!");window.location.href="./";</script>';
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
echo '<script>alert("两次新密码不一致!");history.go(-1);</script>';
|
||||
}
|
||||
|
||||
}
|
||||
} else {
|
||||
echo '<script>alert("当前密码错误!");history.go(-1);</script>';
|
||||
}
|
||||
|
||||
else{
|
||||
echo '<script>alert("当前密码错误!");history.go(-1);</script>';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
else{
|
||||
?>
|
||||
} else {
|
||||
?>
|
||||
|
||||
<!--页面主要内容-->
|
||||
<main class="lyear-layout-content">
|
||||
@ -100,7 +87,7 @@ else{
|
||||
|
||||
</main>
|
||||
<!--End 页面主要内容-->
|
||||
<?php
|
||||
<?php
|
||||
}
|
||||
include './footer.php';
|
||||
?>
|
@ -1,35 +1,42 @@
|
||||
<?php
|
||||
@header ("Content-type:text/html;charset=utf-8");
|
||||
|
||||
@header("Content-type:text/html;charset=utf-8");
|
||||
define('IN_CRONLITE', true);
|
||||
define('SYS_KEY', 'lylme_key');
|
||||
define('SYSTEM_ROOT', dirname(__FILE__).'/');
|
||||
define('ROOT', dirname(SYSTEM_ROOT).'/');
|
||||
error_reporting(0);
|
||||
require ROOT.'config.php';
|
||||
if(!defined('SQLITE') && (!$dbconfig['user']||!$dbconfig['pwd']||!$dbconfig['dbname']))
|
||||
{
|
||||
@unlink(ROOT.'install/install.lock');
|
||||
header('Content-type:text/html;charset=utf-8');
|
||||
echo '你还没安装!<a href="install/">点此安装</a>';
|
||||
exit();
|
||||
define('SYSTEM_ROOT', dirname(__FILE__) . '/');
|
||||
define('ROOT', dirname(SYSTEM_ROOT) . '/');
|
||||
//error_reporting(0);
|
||||
require ROOT . 'config.php';
|
||||
if(!defined('SQLITE') && (!$dbconfig['user'] || !$dbconfig['pwd'] || !$dbconfig['dbname'])) {
|
||||
@unlink(ROOT . 'install/install.lock');
|
||||
header("Location:");
|
||||
exit();
|
||||
}
|
||||
include_once(SYSTEM_ROOT."db.class.php");
|
||||
$DB=new DB($dbconfig['host'],$dbconfig['user'],$dbconfig['pwd'],$dbconfig['dbname'],$dbconfig['port']);
|
||||
$rs= $DB->query("SELECT * FROM `lylme_config`");
|
||||
while($row = $DB->fetch($rs)) $conf[$row['k']]=$row['v'];
|
||||
include_once(SYSTEM_ROOT."lists.php");
|
||||
include_once(SYSTEM_ROOT."function.php");
|
||||
include_once(SYSTEM_ROOT."member.php");
|
||||
include_once(SYSTEM_ROOT."tj.php");
|
||||
include_once(SYSTEM_ROOT."version.php");
|
||||
include_once(SYSTEM_ROOT."updbase.php");
|
||||
$linksrows=$DB->num_rows($DB->query("SELECT * FROM `lylme_links`"));
|
||||
$groupsrows=$DB->num_rows($DB->query("SELECT * FROM `lylme_groups`"));
|
||||
require SYSTEM_ROOT . "db.class.php";
|
||||
$DB = new DB($dbconfig['host'], $dbconfig['user'], $dbconfig['pwd'], $dbconfig['dbname'], $dbconfig['port']);
|
||||
$web_config = $DB->query("SELECT * FROM `lylme_config`");
|
||||
while($row = $DB->fetch($web_config)) {
|
||||
$conf[$row['k']] = $row['v'];
|
||||
}
|
||||
require SYSTEM_ROOT . "lists.php";
|
||||
require SYSTEM_ROOT . "function.php";
|
||||
require SYSTEM_ROOT . "member.php";
|
||||
require SYSTEM_ROOT . "tj.php";
|
||||
require SYSTEM_ROOT . "version.php";
|
||||
require SYSTEM_ROOT . "updbase.php";
|
||||
require SYSTEM_ROOT . "site.php";
|
||||
|
||||
$cdnpublic = cdnpublic($conf['cdnpublic']);
|
||||
$templatepath ='./template/'.$conf["template"];
|
||||
$template = $templatepath.'/index.php';
|
||||
$templatepath = './template/' . $conf["template"];
|
||||
$template = $templatepath . '/index.php';
|
||||
$background = $conf["background"];
|
||||
$wap_background = $conf["wap_background"];
|
||||
if(checkmobile()){if(!empty($wap_background)){$background_img = $wap_background;}
|
||||
else{$background_img = $background; }}else{$background_img = $background; }
|
||||
?>
|
||||
if(checkmobile()) {
|
||||
if(!empty($wap_background)) {
|
||||
$background_img = $wap_background;
|
||||
} else {
|
||||
$background_img = $background;
|
||||
}
|
||||
} else {
|
||||
$background_img = $background;
|
||||
}
|
||||
|
@ -1,53 +1,53 @@
|
||||
<?php
|
||||
if(!empty($_GET['url'])){
|
||||
|
||||
if(!empty($_GET['url'])) {
|
||||
$url = $_GET['url'];
|
||||
header("Location:$url");
|
||||
exit();
|
||||
}
|
||||
include("common.php");
|
||||
session_start(); //设置session
|
||||
if($_POST['exit']=='exit'){
|
||||
if($_POST['exit'] == 'exit') {
|
||||
//注销登录
|
||||
$_SESSION['pass'] = 0;
|
||||
$_SESSION['list'] = array();
|
||||
header("Location: ".$_SERVER['HTTP_REFERER']);
|
||||
exit();
|
||||
$_SESSION['pass'] = null;
|
||||
$_SESSION['list'] = array();
|
||||
header("Location: " . $_SERVER['HTTP_REFERER']);
|
||||
exit('注销登录成功');
|
||||
}
|
||||
if($_SESSION['pass'] != 1){
|
||||
@$pass = daddslashes($_POST['pass']);
|
||||
if($_SESSION['pass'] != 1) {
|
||||
//未登录
|
||||
$pass = daddslashes($_POST['pass']);
|
||||
if(!empty($pass)){
|
||||
if(!empty($pass)) {
|
||||
//用户提交登录
|
||||
$show = array();
|
||||
$pwds = $DB->query("SELECT `pwd_id`, `pwd_key` FROM `lylme_pwd` WHERE `pwd_key` LIKE '".$pass."';");
|
||||
while ($pwd = $DB->fetch($pwds)) {
|
||||
array_push($show,$pwd[pwd_id]);
|
||||
}
|
||||
if(empty($show)){
|
||||
//无数据
|
||||
exit('<script>alert("密码错误!");window.location.href="'.$_SERVER['HTTP_REFERER'].'";</script>');
|
||||
}
|
||||
else{
|
||||
//有数据
|
||||
$_SESSION['list'] = $show;
|
||||
$_SESSION['pass'] = 1;
|
||||
$pwds = $DB->query("SELECT `pwd_id`, `pwd_key` FROM `lylme_pwd` WHERE `pwd_key` LIKE '" . $pass . "';");
|
||||
while ($pwd = $DB->fetch($pwds)) {
|
||||
array_push($show, $pwd['pwd_id']);
|
||||
}
|
||||
if(empty($show)) {
|
||||
//无数据
|
||||
exit('<script>alert("密码错误!");window.location.href="' . $_SERVER['HTTP_REFERER'] . '";</script>');
|
||||
} else {
|
||||
//有数据
|
||||
$_SESSION['list'] = $show;
|
||||
$_SESSION['pass'] = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
//已登录
|
||||
if(!empty($pass)){
|
||||
if(!empty($pass)) {
|
||||
$show = array();
|
||||
$pwds = $DB->query("SELECT `pwd_id`, `pwd_key` FROM `lylme_pwd` WHERE `pwd_key` LIKE '".$pass."';");
|
||||
while ($pwd = $DB->fetch($pwds)) {
|
||||
array_push($show,$pwd['pwd_id']);
|
||||
}
|
||||
if(empty($show)){
|
||||
$_SESSION['pass'] = 0;
|
||||
$pwds = $DB->query("SELECT `pwd_id`, `pwd_key` FROM `lylme_pwd` WHERE `pwd_key` LIKE '" . $pass . "';");
|
||||
while ($pwd = $DB->fetch($pwds)) {
|
||||
array_push($show, $pwd['pwd_id']);
|
||||
}
|
||||
if(empty($show)) {
|
||||
$_SESSION['pass'] = null;
|
||||
$_SESSION['list'] = array();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(basename($_SERVER['PHP_SELF']) != basename(__FILE__)) return;
|
||||
header("Location: ../");
|
||||
?>
|
||||
if(basename($_SERVER['PHP_SELF']) != basename(__FILE__)) {
|
||||
return;
|
||||
}
|
||||
header("Location: ../");
|
||||
|
3
include/site.php
Normal file
3
include/site.php
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
class site {}
|
@ -1,52 +1,52 @@
|
||||
<?php
|
||||
$file = SYSTEM_ROOT."/log.txt";
|
||||
if(!file_exists($file)){
|
||||
touch($file);
|
||||
}
|
||||
else{
|
||||
$fp=fopen($file,'r+');
|
||||
$content='';
|
||||
if (flock($fp,LOCK_EX)){
|
||||
while (($buffer=fgets($fp,1024))!=false){
|
||||
$content=$content.$buffer;
|
||||
}
|
||||
$tjdate=unserialize($content);
|
||||
//设置记录键值
|
||||
$tjtotal = 'total';
|
||||
$tjmonth = date('Ym');
|
||||
$tjtoday = date('Ymd');
|
||||
$tjyesterday = date('Ymd',strtotime("-1 day"));
|
||||
$tongji = array();
|
||||
if(strpos($_SERVER['REQUEST_URI'],'admin')==false){
|
||||
|
||||
$tongji[$tjtotal] = $tjdate[$tjtotal] + 1;
|
||||
// 本月访问量增加
|
||||
$tongji[$tjmonth] = $tjdate[$tjmonth] + 1;
|
||||
// 今日访问增加
|
||||
$tongji[$tjtoday] = $tjdate[$tjtoday] + 1;
|
||||
//保持昨天访问
|
||||
$tongji[$tjyesterday] = $tjdate[$tjyesterday];
|
||||
ftruncate($fp,0); // 将文件截断到给定的长度
|
||||
rewind($fp); // 倒回文件指针的位置
|
||||
fwrite($fp, serialize($tongji));
|
||||
}
|
||||
else{
|
||||
$tongji[$tjtotal] = $tjdate[$tjtotal] ;
|
||||
// 本月访问量增加
|
||||
$tongji[$tjmonth] = $tjdate[$tjmonth];
|
||||
// 今日访问增加
|
||||
$tongji[$tjtoday] = $tjdate[$tjtoday];
|
||||
//保持昨天访问
|
||||
$tongji[$tjyesterday] = $tjdate[$tjyesterday];
|
||||
}
|
||||
flock($fp,LOCK_UN);
|
||||
fclose($fp);
|
||||
//输出数据
|
||||
$tjtotal = $tongji[$tjtotal];
|
||||
$tjmonth = $tongji[$tjmonth];
|
||||
$tjtoday = $tongji[$tjtoday];
|
||||
$tjyesterday = $tongji[$tjyesterday]?$tongji[$tjyesterday]:0;
|
||||
//访总问 {$tjtotal} 本月 {$tjmonth} 昨日 {$tjyesterday} 今日 {$tjtoday}
|
||||
$linksrows = $DB->num_rows($DB->query("SELECT * FROM `lylme_links`")); //链接数量
|
||||
$groupsrows = $DB->num_rows($DB->query("SELECT * FROM `lylme_groups`")); //分类数量
|
||||
$file = SYSTEM_ROOT . "/log.txt";
|
||||
if(!file_exists($file)) {
|
||||
touch($file);
|
||||
} else {
|
||||
$fp = fopen($file, 'r+');
|
||||
$content = '';
|
||||
if (flock($fp, LOCK_EX)) {
|
||||
while (($buffer = fgets($fp, 1024)) != false) {
|
||||
$content = $content . $buffer;
|
||||
}
|
||||
$tjdate = unserialize($content);
|
||||
//设置记录键值
|
||||
$tjtotal = 'total';
|
||||
$tjmonth = date('Ym');
|
||||
$tjtoday = date('Ymd');
|
||||
$tjyesterday = date('Ymd', strtotime("-1 day"));
|
||||
$tongji = array();
|
||||
if(strpos($_SERVER['REQUEST_URI'], 'admin') == false) {
|
||||
|
||||
$tongji[$tjtotal] = $tjdate[$tjtotal] + 1;
|
||||
// 本月访问量增加
|
||||
$tongji[$tjmonth] = $tjdate[$tjmonth] + 1;
|
||||
// 今日访问增加
|
||||
$tongji[$tjtoday] = $tjdate[$tjtoday] + 1;
|
||||
//保持昨天访问
|
||||
$tongji[$tjyesterday] = $tjdate[$tjyesterday];
|
||||
ftruncate($fp, 0); // 将文件截断到给定的长度
|
||||
rewind($fp); // 倒回文件指针的位置
|
||||
fwrite($fp, serialize($tongji));
|
||||
} else {
|
||||
$tongji[$tjtotal] = $tjdate[$tjtotal] ;
|
||||
// 本月访问量增加
|
||||
$tongji[$tjmonth] = $tjdate[$tjmonth];
|
||||
// 今日访问增加
|
||||
$tongji[$tjtoday] = $tjdate[$tjtoday];
|
||||
//保持昨天访问
|
||||
$tongji[$tjyesterday] = $tjdate[$tjyesterday];
|
||||
}
|
||||
flock($fp, LOCK_UN);
|
||||
fclose($fp);
|
||||
//输出数据
|
||||
$tjtotal = $tongji[$tjtotal];
|
||||
$tjmonth = $tongji[$tjmonth];
|
||||
$tjtoday = $tongji[$tjtoday];
|
||||
$tjyesterday = $tongji[$tjyesterday] ? $tongji[$tjyesterday] : 0;
|
||||
//访总问 {$tjtotal} 本月 {$tjmonth} 昨日 {$tjyesterday} 今日 {$tjtoday}
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
@ -1,74 +1,91 @@
|
||||
<?php
|
||||
if(empty(constant("VERSION")))return 0;
|
||||
function get_vernum($version){
|
||||
$vn = explode('.',str_replace('v','',$version));
|
||||
$vernum = $vn[0].sprintf("%02d",$vn[1]).sprintf("%02d",$vn[2]);
|
||||
return $vernum;
|
||||
|
||||
if(empty(constant("VERSION"))) {
|
||||
return 0;
|
||||
}
|
||||
function get_vernum($version)
|
||||
{
|
||||
$vn = explode('.', str_replace('v', '', $version));
|
||||
$vernum = $vn[0] . sprintf("%02d", $vn[1]) . sprintf("%02d", $vn[2]);
|
||||
return $vernum;
|
||||
}
|
||||
$sqlvn = get_vernum($conf['version']); //数据库版本
|
||||
$filevn = get_vernum(constant("VERSION")); // 文件版本
|
||||
if($sqlvn < $filevn){
|
||||
if($sqlvn < $filevn) {
|
||||
//文件版本大于数据库版本执行更新
|
||||
$sql= '';
|
||||
if($sqlvn < 10101) {
|
||||
$version = 'v1.1.1';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update.sql');
|
||||
$sql = '';
|
||||
if($sqlvn < 10101) {
|
||||
$version = 'v1.1.1';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update.sql');
|
||||
}
|
||||
if($sqlvn < 10103) {
|
||||
$version = 'v1.1.3';
|
||||
@unlink(ROOT . 'include/head.php');
|
||||
@unlink(ROOT . 'include/home.php');
|
||||
@unlink(ROOT . 'include/apply.php');
|
||||
@unlink(ROOT . 'include/footer.php');
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update1.sql');
|
||||
}
|
||||
if($sqlvn < 10104) {
|
||||
$version = 'v1.1.4';
|
||||
}
|
||||
if($sqlvn < 10105) {
|
||||
$version = 'v1.1.5';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update2.sql');
|
||||
}
|
||||
if($sqlvn < 10106) {
|
||||
$version = 'v1.1.6';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update3.sql');
|
||||
}
|
||||
if($sqlvn < 10109) {
|
||||
$version = 'v1.1.9';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update4.sql');
|
||||
}
|
||||
if($sqlvn < 10200) {
|
||||
$version = 'v1.2.0';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update5.sql');
|
||||
}
|
||||
if($sqlvn < 10205) {
|
||||
$version = 'v1.2.5';
|
||||
}
|
||||
if($sqlvn < 10300) {
|
||||
$version = 'v1.3.0';
|
||||
}
|
||||
if($sqlvn < 10304) {
|
||||
$version = 'v1.3.4';
|
||||
}
|
||||
if($sqlvn < 10500) {
|
||||
$version = 'v1.5.0';
|
||||
}
|
||||
if($sqlvn < 10501) {
|
||||
$version = 'v1.5.1';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update6.sql');
|
||||
}
|
||||
if($sqlvn < 10600) {
|
||||
$version = 'v1.6.0';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update7.sql');
|
||||
}
|
||||
if($sqlvn < 10700) {
|
||||
$version = 'v1.7.0';
|
||||
}
|
||||
if($sqlvn < 10800) {
|
||||
$version = 'v1.8.0';
|
||||
$sql = $sql . file_get_contents(ROOT . 'install/data/update8.sql');
|
||||
if (!isset($conf['md5pass'])) {
|
||||
//MD5加密密码
|
||||
$admin_pwd = md5('lylme' . $conf['admin_pwd']);
|
||||
$DB->query("INSERT INTO `lylme_config` (`k`, `v`, `description`) VALUES ('md5pass', '1', '启用md5加密密码');");
|
||||
saveSetting('admin_pwd', $admin_pwd);
|
||||
}
|
||||
|
||||
}
|
||||
$sql = explode(';', $sql);
|
||||
for ($i = 0;$i < count($sql);$i++) {
|
||||
if (trim($sql[$i]) == '') {
|
||||
continue;
|
||||
}
|
||||
if($DB->query($sql[$i])) {
|
||||
}
|
||||
}
|
||||
saveSetting('version', $version);
|
||||
}
|
||||
if($sqlvn < 10103) {
|
||||
$version = 'v1.1.3';
|
||||
@unlink(ROOT.'include/head.php');
|
||||
@unlink(ROOT.'include/home.php');
|
||||
@unlink(ROOT.'include/apply.php');
|
||||
@unlink(ROOT.'include/footer.php');
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update1.sql');
|
||||
}
|
||||
if($sqlvn < 10104) {
|
||||
$version = 'v1.1.4';
|
||||
}
|
||||
if($sqlvn < 10105) {
|
||||
$version = 'v1.1.5';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update2.sql');
|
||||
}
|
||||
if($sqlvn < 10106) {
|
||||
$version = 'v1.1.6';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update3.sql');
|
||||
}
|
||||
if($sqlvn < 10109) {
|
||||
$version = 'v1.1.9';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update4.sql');
|
||||
}
|
||||
if($sqlvn < 10200) {
|
||||
$version = 'v1.2.0';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update5.sql');
|
||||
}
|
||||
if($sqlvn < 10205) {
|
||||
$version = 'v1.2.5';
|
||||
}
|
||||
if($sqlvn < 10300) {
|
||||
$version = 'v1.3.0';
|
||||
}
|
||||
if($sqlvn < 10304) {
|
||||
$version = 'v1.3.4';
|
||||
}
|
||||
if($sqlvn < 10500) {
|
||||
$version = 'v1.5.0';
|
||||
}
|
||||
if($sqlvn < 10501) {
|
||||
$version = 'v1.5.1';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update6.sql');
|
||||
}
|
||||
if($sqlvn < 10600) {
|
||||
$version = 'v1.6.0';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update7.sql');
|
||||
}
|
||||
if($sqlvn < 10700) {
|
||||
$version = 'v1.7.0';
|
||||
}
|
||||
$sql=explode(';',$sql);
|
||||
for ($i=0;$i<count($sql);$i++) {
|
||||
if (trim($sql[$i])=='')continue;
|
||||
if($DB->query($sql[$i])) {
|
||||
}
|
||||
}
|
||||
saveSetting('version',$version);
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
<?php
|
||||
define('VERSION', '1.7.0');
|
||||
?>
|
||||
|
||||
define('VERSION', '1.8.0');
|
||||
|
14
index.php
14
index.php
@ -1,9 +1,11 @@
|
||||
<?php
|
||||
|
||||
@header('Content-Type: text/html; charset=UTF-8');
|
||||
if (!file_exists('install/install.lock'))
|
||||
exit('<title>安装程序</title>您还未安装,点击<a href="install"><font color="blue">这里</font></a>开始安装!');
|
||||
include "./include/common.php";
|
||||
if (!file_exists('install/install.lock')) {
|
||||
header("Location:/install");
|
||||
exit();
|
||||
}
|
||||
require "./include/common.php";
|
||||
session_start(); //设置session
|
||||
$_SESSION['list'] = isset($_SESSION['list'])?$_SESSION['list']:array();
|
||||
include $template;
|
||||
?>
|
||||
$_SESSION['list'] = isset($_SESSION['list']) ? $_SESSION['list'] : array();
|
||||
require $template;
|
||||
|
@ -34,21 +34,23 @@ and (max-width:320px){.form-wrapper{padding-top:10%;border-radius:2px;margin:50p
|
||||
<body>
|
||||
<?php
|
||||
|
||||
if(!empty($background = background())){
|
||||
$background = str_replace('./','../',$background);
|
||||
echo '<div class="body" style="background-image: url('.$background.');">';}
|
||||
if(!empty($background = background())) {
|
||||
$background = str_replace('./', '../', $background);
|
||||
echo '<div class="body" style="background-image: url(' . $background . ');">';
|
||||
}
|
||||
?>
|
||||
<div class="form-wrapper">
|
||||
|
||||
<div class="nav">
|
||||
|
||||
<?php
|
||||
if($DB->num_rows($DB->query("SELECT * FROM `lylme_pwd`"))!=0){echo '<h1>访问管理</h1>';?>
|
||||
<?php
|
||||
if($DB->num_rows($DB->query("SELECT * FROM `lylme_pwd`")) != 0) {
|
||||
echo '<h1>访问管理</h1>';?>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
session_start(); //设置session
|
||||
if($_SESSION['pass'] != 1){?>
|
||||
<?php
|
||||
session_start(); //设置session
|
||||
if(isset($_SESSION['pass']) != 1) {?>
|
||||
<p>请输入密码登录</p>
|
||||
<form name="form" action="../include/go.php" method="POST">
|
||||
<div class="form">
|
||||
@ -60,15 +62,15 @@ if(!empty($background = background())){
|
||||
<input type="submit" class="button" title="登录" value="登录">
|
||||
</div>
|
||||
</div>
|
||||
</form><?php }else{ ?>
|
||||
</form><?php } else { ?>
|
||||
<form name="form" action="../include/go.php" method="POST">
|
||||
<div class="form">
|
||||
<div class="button-panel">
|
||||
<p> 欢迎回来,您已登录!<br><br>用户组:
|
||||
<?php foreach($_SESSION['list'] as $list){
|
||||
echo(' ['.$list.'] ');
|
||||
<?php foreach($_SESSION['list'] as $list) {
|
||||
echo(' [' . $list . '] ');
|
||||
}
|
||||
?></p>
|
||||
?></p>
|
||||
<div class="form-item">
|
||||
<input type="hidden" autocomplete="new-password" name="exit" required="required" value="exit" >
|
||||
</div>
|
||||
@ -78,9 +80,11 @@ if(!empty($background = background())){
|
||||
|
||||
</form>
|
||||
<?php
|
||||
}
|
||||
}else{echo '<h2>当前站点未启用链接加密</h2>';}
|
||||
?>
|
||||
}
|
||||
} else {
|
||||
echo '<h2>当前站点未启用链接加密</h2>';
|
||||
}
|
||||
?>
|
||||
<a href="../" class="home">返回首页</a>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user