57 lines
2.8 KiB
PHP
57 lines
2.8 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* */
|
|
/* Thelia */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : info@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* This program is free software; you can redistribute it and/or modify */
|
|
/* it under the terms of the GNU General Public License as published by */
|
|
/* the Free Software Foundation; either version 3 of the License */
|
|
/* */
|
|
/* This program is distributed in the hope that it will be useful, */
|
|
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
|
/* GNU General Public License for more details. */
|
|
/* */
|
|
/* You should have received a copy of the GNU General Public License */
|
|
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
/* */
|
|
/*************************************************************************************/
|
|
$step=6;
|
|
include "header.php";
|
|
|
|
if($_SESSION['install']['step'] != $step && (empty($_POST['admin_login']) || empty($_POST['admin_password']) || ($_POST['admin_password'] != $_POST['admin_password_verif']))) {
|
|
header('location: config.php?err=1');
|
|
}
|
|
|
|
if($_SESSION['install']['step'] == 5) {
|
|
$admin = new \Thelia\Model\Admin();
|
|
$admin->setLogin($_POST['admin_login'])
|
|
->setPassword($_POST['admin_password'])
|
|
->setFirstname('admin')
|
|
->setLastname('admin')
|
|
->save();
|
|
|
|
$config = new \Thelia\Model\Config();
|
|
$config->setName('contact_email')
|
|
->setValue($_POST['email_contact'])
|
|
->save();
|
|
;
|
|
}
|
|
|
|
$_SESSION['install']['step'] = $step;
|
|
?>
|
|
|
|
<div class="well">
|
|
<p class="lead text-center">
|
|
Thank you have installed Thelia
|
|
</p>
|
|
<p class="lead text-center">
|
|
Don't forget to delete the web/install directory.
|
|
</p>
|
|
|
|
</div>
|
|
<?php include "footer.php"; ?>
|