mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 01:39:28 +02:00
Add Ampache information in html header to automatically detect ampache webpage
Allow cross-domain request in default maintenance page example
This commit is contained in:
parent
7ed919c5b5
commit
92872e39f5
16 changed files with 18 additions and 0 deletions
|
@ -4,6 +4,9 @@
|
||||||
* This example redirect your visitors to a default maintenance information page hosted in ampache.org
|
* This example redirect your visitors to a default maintenance information page hosted in ampache.org
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
header("Access-Control-Allow-Origin: *");
|
||||||
|
header("Access-Control-Allow-Methods: GET, POST");
|
||||||
|
|
||||||
$domain = $_SERVER['HTTP_HOST'];
|
$domain = $_SERVER['HTTP_HOST'];
|
||||||
if (empty($domain)) {
|
if (empty($domain)) {
|
||||||
$domain = $_SERVER['SERVER_NAME'];
|
$domain = $_SERVER['SERVER_NAME'];
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
dir="<?php echo $dir;?>">
|
dir="<?php echo $dir;?>">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="refresh" content="10;URL=<?php echo($redirect_url);?>" />
|
<meta http-equiv="refresh" content="10;URL=<?php echo($redirect_url);?>" />
|
||||||
<?php UI::show_custom_style(); ?>
|
<?php UI::show_custom_style(); ?>
|
||||||
<title><?php echo( T_("Ampache error page"));?></title>
|
<title><?php echo( T_("Ampache error page"));?></title>
|
||||||
|
|
|
@ -31,6 +31,7 @@ $_SESSION['login'] = false;
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!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 is_rtl(AmpConfig::get('lang')) ? 'rtl' : 'ltr';?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>" dir="<?php echo is_rtl(AmpConfig::get('lang')) ? 'rtl' : 'ltr';?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<?php UI::show_custom_style(); ?>
|
<?php UI::show_custom_style(); ?>
|
||||||
<link rel="search" type="application/opensearchdescription+xml" title="<?php echo scrub_out(AmpConfig::get('site_title')); ?>" href="<?php echo $web_path; ?>/search.php?action=descriptor" />
|
<link rel="search" type="application/opensearchdescription+xml" title="<?php echo scrub_out(AmpConfig::get('site_title')); ?>" href="<?php echo $web_path; ?>/search.php?action=descriptor" />
|
||||||
<?php if (AmpConfig::get('use_rss')) { ?>
|
<?php if (AmpConfig::get('use_rss')) { ?>
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!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; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; Charset=<?php echo $charset; ?>" />
|
<meta http-equiv="Content-Type" content="text/html; Charset=<?php echo $charset; ?>" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta http-equiv="cache-control" content="max-age=0" />
|
<meta http-equiv="cache-control" content="max-age=0" />
|
||||||
|
|
|
@ -25,6 +25,7 @@ $htmllang = str_replace("_","-",AmpConfig::get('lang'));
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<?php UI::show_custom_style(); ?>
|
<?php UI::show_custom_style(); ?>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_("Album Art"); ?></title>
|
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_("Album Art"); ?></title>
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title>Ampache -- Debug Page</title>
|
<title>Ampache -- Debug Page</title>
|
||||||
<?php UI::show_custom_style(); ?>
|
<?php UI::show_custom_style(); ?>
|
||||||
|
|
|
@ -37,6 +37,7 @@ define('TABLE_RENDERED', 1);
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!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; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>" dir="<?php echo $dir; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<?php UI::show_custom_style(); ?>
|
<?php UI::show_custom_style(); ?>
|
||||||
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
||||||
|
|
|
@ -33,6 +33,7 @@ is_rtl(AmpConfig::get('lang')) ? $dir = 'rtl' : $dir = 'ltr';
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!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; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>" dir="<?php echo $dir; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<?php UI::show_custom_style(); ?>
|
<?php UI::show_custom_style(); ?>
|
||||||
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
||||||
|
|
|
@ -28,6 +28,7 @@ $_SESSION['login'] = true;
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_('Registration'); ?></title>
|
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_('Registration'); ?></title>
|
||||||
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title>Ampache -- Debug Page</title>
|
<title>Ampache -- Debug Page</title>
|
||||||
<link href="modules/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
<link href="modules/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title>Ampache -- Config Debug Page</title>
|
<title>Ampache -- Config Debug Page</title>
|
||||||
<link rel="stylesheet" href="templates/install.css" type="text/css" media="screen" />
|
<link rel="stylesheet" href="templates/install.css" type="text/css" media="screen" />
|
||||||
|
|
|
@ -26,6 +26,7 @@ $web_path = AmpConfig::get('web_path');
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_('Registration'); ?></title>
|
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_('Registration'); ?></title>
|
||||||
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/install.css" type="text/css" media="screen" />
|
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/install.css" type="text/css" media="screen" />
|
||||||
|
|
|
@ -32,6 +32,7 @@ $_SESSION['login'] = true;
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_('Registration'); ?></title>
|
<title><?php echo AmpConfig::get('site_title'); ?> - <?php echo T_('Registration'); ?></title>
|
||||||
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
<link rel="stylesheet" href="<?php echo AmpConfig::get('web_path'); ?>/templates/print.css" type="text/css" media="print" />
|
||||||
|
|
|
@ -28,6 +28,7 @@ header('Expires: ' . gmdate(DATE_RFC1123, time()-1));
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<title><?php echo AmpConfig::get('site_title'); ?></title>
|
<title><?php echo AmpConfig::get('site_title'); ?></title>
|
||||||
<meta property="og:title" content="<?php echo AmpConfig::get('site_title'); ?>" />
|
<meta property="og:title" content="<?php echo AmpConfig::get('site_title'); ?>" />
|
||||||
<meta property="og:image" content="<?php echo AmpConfig::get('web_path'); ?>/themes/reborn/images/ampache.png"/>
|
<meta property="og:image" content="<?php echo AmpConfig::get('web_path'); ?>/themes/reborn/images/ampache.png"/>
|
||||||
|
|
|
@ -55,6 +55,7 @@ $htmllang = str_replace("_","-",AmpConfig::get('lang'));
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!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; ?>">
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $htmllang; ?>" lang="<?php echo $htmllang; ?>">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo AmpConfig::get('site_charset'); ?>" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Ampache :: For the love of Music - Update</title>
|
<title>Ampache :: For the love of Music - Update</title>
|
||||||
|
|
|
@ -15,6 +15,7 @@ if (($_GET['btnSend']) || ($_GET['btnSendAuto'])) {
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<!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">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
|
<!-- Propulsed by Ampache | ampache.org -->
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<?php
|
<?php
|
||||||
if ($_GET['btnSendAuto']) {
|
if ($_GET['btnSendAuto']) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue