mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 17:59:21 +02:00
Made an redirect when it seems like the installation has already been completed.
This commit is contained in:
parent
c4acbd9e64
commit
c717912676
3 changed files with 186 additions and 129 deletions
|
@ -49,7 +49,8 @@ set_error_handler('ampache_error_handler');
|
|||
install ampache
|
||||
*/
|
||||
if (!install_check_status($configfile)) {
|
||||
Error::display('general');
|
||||
$redirect_url = "login.php";
|
||||
require_once Config::get('prefix') . '/templates/error_page.inc.php';
|
||||
exit;
|
||||
}
|
||||
|
||||
|
|
|
@ -67,7 +67,9 @@ function install_check_status($configfile) {
|
|||
to install ampache.
|
||||
*/
|
||||
if (!file_exists($configfile)) {
|
||||
return true;
|
||||
return false;
|
||||
} else {
|
||||
Error::add('general',_('Config file already exists, install is probably completed'));
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
54
templates/error_page.inc.php
Normal file
54
templates/error_page.inc.php
Normal file
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
/*
|
||||
|
||||
Copyright (c) Ampache.org
|
||||
All rights reserved.
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License v2
|
||||
as published by the Free Software Foundation.
|
||||
|
||||
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, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>"
|
||||
dir="<?php echo $dir;?>">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="refresh" content="10;URL=<?php echo($redirect_url);?>" />
|
||||
<link rel="shortcut icon" href="<?php echo $web_path; ?>/favicon.ico" />
|
||||
<title><?php echo( _("Ampache error page"));?></title>
|
||||
<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/base.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="<?php echo $web_path; ?><?php echo Config::get('theme_path'); ?>/templates/default.css" type="text/css" media="screen" />
|
||||
</head>
|
||||
<body>
|
||||
<!-- rfc3514 implementation -->
|
||||
<div id="rfc3514" style="display: none;">0x0</div>
|
||||
<div id="maincontainer">
|
||||
<div id="header">
|
||||
<div id="headerlogo">
|
||||
<img src="<?php echo $web_path; echo Config::get('theme_path'); ?>/images/ampache.png"
|
||||
title="<?php echo Config::get('site_title'); ?>"
|
||||
alt="<?php echo Config::get('site_title'); ?>" />
|
||||
</div>
|
||||
</div>
|
||||
<div> </div>
|
||||
<div id="errormsg">
|
||||
<?php echo (_("The folowing error has occured, you will automaticly be redirected after 10 seconds.") ); ?>
|
||||
<br /><br />
|
||||
<?php echo(_("Error messages"));?>:<br />
|
||||
<?php Error::display('general'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue