Files
littleTiger/install/templates/step5.php
2019-02-28 19:48:21 +08:00

43 lines
1.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title><?php echo $Title; ?> - <?php echo $Powered; ?></title>
<link rel="stylesheet" href="./css/install.css?v=9.0" />
<script src="js/jquery.js"></script>
<?php
$uri = $_SERVER['REQUEST_URI'];
$root = substr($uri, 0,strpos($uri, "install"));
$admin = $root."../index.php/Admin/admin/";
?>
</head>
<body>
<div class="wrap">
<?php require './templates/header.php';?>
<section class="section">
<div class="">
<div class="success_tip cc"> <a href="<?php echo $admin;?>" class="f16 b">安装完成,进入后台管理</a>
<p>为了您站点的安全安装完成后即可将网站根目录下的“install”文件夹删除或者/install/目录下创建install.lock文件防止重复安装。<p>
</div>
<div class="bottom tac">
<a href="../index.php" class="btn">进入前台</a>
<a href="../index.php/Admin/Admin/login.html" class="btn btn_submit J_install_btn">进入后台</a>
</div>
<div class=""> </div>
</div>
</section>
</div>
<?php require './templates/footer.php';?>
<script>
$(function(){
$.ajax({
type: "POST",
url: "http://service.tp-shop.cn/index.php?m=Home&c=Index&a=user_push",
data: {domain:'<?php echo $host;?>',last_domain:'<?php echo $host?>',key_num:'<?php echo $curent_version;?>',install_time:'<?php echo $time;?>',serial_number:'<?php echo $mt_rand_str;?>'},
dataType: 'json',
success: function(){}
});
});
</script>
</body>
</html>