1 Star 0 Fork 300

陈小春 / smeoa

forked from 小微OA / smeoa 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install.php 6.62 KB
一键复制 编辑 原始数据 按行查看 历史
小微OA 提交于 2014-08-11 10:24 . 安装文件更新
<?php
$db_config_files = "App/Conf/db.php";
if (isset($_POST["install"])){
$db_host = $_POST["db_host"];
$db_user = $_POST["db_user"];
$db_pass = $_POST["db_pass"];
$db_dbname=$_POST["db_dbname"];
$db_tag = $_POST["db_tag"];
$config_str = "<?php\n";
$config_str .= "return array(\n";
if($_POST['mod_rewrite']){
$config_str .= " 'URL_MODEL'=>2, // 如果你的环境不支持PATHINFO 请设置为3,\n";
}else{
$config_str .= " 'URL_MODEL'=>0, // 如果你的环境不支持PATHINFO 请设置为3,\n";
}
$config_str .= " 'DB_TYPE'=>'mysql',\n";
$config_str .= " 'DB_HOST'=>'" . $db_host . "',\n";
$config_str .= " 'DB_NAME'=>'" . $db_dbname . "',\n";
$config_str .= " 'DB_USER'=>'" . $db_user . "',\n";
$config_str .= " 'DB_PWD'=>'" . $db_pass . "',\n";
$config_str .= " 'DB_PORT'=>'3306',\n";
$config_str .= " 'DB_PREFIX'=>'" . $db_tag . "',\n";
$config_str .= " );\n";
$ff = fopen($db_config_files, "w ");
fwrite($ff, $config_str);
if (!@$link = mysql_connect($db_host, $db_user, $db_pass)) {//检查数据库连接情况
echo "<meta charset='utf-8' />";
echo "<script>\n
window.onload=function(){
alert('数据库连接失败! 请返回上一页检查连接参数');
location.href='install.php';
}
</script>";
die;
} else {
if(!mysql_select_db($db_dbname)){
echo "<meta charset='utf-8' />";
echo "<script>\n
window.onload=function(){
alert('请确认数据库是否存在? 请返回上一页检查连接参数');
location.href='install.php';
}
</script>";
die;
}else{
mysql_select_db($db_dbname);
mysql_query("set names 'utf8'");
$lines = file("Data/Sql/demo.sql");
$sqlstr = "";
foreach ($lines as $line) {
$line = trim($line);
if ($line != "") {
if (!($line{0} == "#" || $line{0} . $line{1} == "--")) {
$sqlstr .= $line;
}
}
}
$sqlstr = rtrim($sqlstr, ";");
$sqls = explode(";", $sqlstr);
foreach ($sqls as $val) {
$val = str_replace("`think_", "`" . $db_tag, $val);
mysql_query($val);
}
rename("install.php", "install.lock");
echo "<meta charset='utf-8' />";
echo "<script>\n
window.onload=function(){
alert('安装成功');
location.href='index.php';
}
</script>";
die;
}
}
}
?>
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8' />
<title>smeoa</title>
<meta content='' name='description' />
<meta content='' name='author' />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="Public/css/bootstrap.min.css" rel="stylesheet" >
<link href="Public/css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="page-header">
<h1>小微OA系统 <small>让工作更轻松快乐</small></h1>
</div>
<form method="POST" class="well form-horizontal">
<div class="form-group">
<label class="control-label col-md-4" for="name" >安装文件可写:</label>
<div class="col-md-8">
<?php
if (!is_writable("install.php")){
echo "<button type='button' class='btn btn-danger form-con'>Fail</button><p>请检查install.php是否有修改权限</p>";
} else {
echo "<button type='button' class='btn btn-success form-con'>OK</button>";
}
?>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name" >配置文件可写:</label>
<div class="col-md-8">
<?php
if (!is_writable($db_config_files)) {
echo "<button type='button' class='btn btn-danger form-con'>Fail</button><p>请检查App\Conf目录写入权限</p>";
} else {
echo "<button type='button' class='btn btn-success form-con'>OK</button>";
}
?>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name" >IMAP扩展:</label>
<div class="col-md-8">
<?php
if (!function_exists('imap_open')){
echo "<button type='button' class='btn btn-danger form-con'>Fail</button><p>无法正常收发邮件</p>";
} else {
echo "<button type='button' class='btn btn-success form-con'>OK</button>";
}
?>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name" >Mod_rewrite扩展:</label>
<input type="hidden" name="mod_rewrite" id="mod_rewrite">
<div class="col-md-8">
<script src="Public/rewrite/checker"></script>
<script>if(modRewriteChecker){
document.getElementById("mod_rewrite").value="true";
document.write("<button type='button' class='btn btn-success form-con'>OK</button>");
}else{
document.write("<button type='button' class='btn btn-warning form-con'>Warning</button><p>URL_MODEL将使用普通模式</p>");
}</script>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name" >填写主机:</label>
<div class="col-md-8">
<input type="text" name="db_host" value="localhost" class="form-control"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name">用 户 名:</label>
<div class="col-md-8">
<input type="text" name="db_user" value="root" class="form-control"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name">密  码:</label>
<div class="col-md-8">
<input type="text" name="db_pass" value="test" class="form-control"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name">数据库名:</label>
<div class="col-md-8">
<input type="text" name="db_dbname" value="demo" class="form-control"/>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="name">数据前缀:</label>
<div class="col-md-8">
<input type="text" name="db_tag" value="smeoa_" class="form-control"/>
</div>
</div>
<div>
<p><h4 class="text-danger">* 执行安装程序之前请手动创建数据库<h4></p>
<?php
if (is_writable($db_config_files)&&(is_writable("install.php"))) {
echo "<button type=\"submit\" name=\"install\" class=\"btn btn-default\">下一步</button>";
} else {
}
?>
</div>
</form>
</div>
</div>
</body>
</html>
PHP
1
https://gitee.com/cxchtml/smeoa.git
git@gitee.com:cxchtml/smeoa.git
cxchtml
smeoa
smeoa
master

搜索帮助