59 lines
2.5 KiB
PHP
59 lines
2.5 KiB
PHP
<?php
|
|
// Load the language support
|
|
require_once('../config/language.php');
|
|
//Load the Pi-Star Release file
|
|
$pistarReleaseConfig = '/etc/pistar-release';
|
|
$configPistarRelease = array();
|
|
$configPistarRelease = parse_ini_file($pistarReleaseConfig, true);
|
|
//Load the Version Info
|
|
require_once('../config/version.php');
|
|
?>
|
|
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
|
<head>
|
|
<meta name="robots" content="index" />
|
|
<meta name="robots" content="follow" />
|
|
<meta name="language" content="English" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<meta name="Author" content="Andrew Taylor (MW0MWZ)" />
|
|
<meta name="Description" content="CDN Expert Editor" />
|
|
<meta name="KeyWords" content="CDN" />
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
|
|
<meta http-equiv="Expires" content="0" />
|
|
<title>CDN - Digital Voice Dashboard - Expert Editor</title>
|
|
<link rel="stylesheet" type="text/css" href="../css/pistar-css.php" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<?php include './header-menu.inc'; ?>
|
|
<div class="contentwide">
|
|
|
|
<h2>Expert Editors</h2>
|
|
<div class="settings-card">
|
|
<div class="field-row"><div class="field-note" style="flex:1 1 100%;font-size:13px;">
|
|
<b>**WARNING**</b><br /><br />
|
|
CDN Expert editors have been created to make editing some of the extra settings in the
|
|
config files more simple, allowing you to update some areas of the config files without the
|
|
need to login to your Pi over SSH.<br />
|
|
<br />
|
|
Please keep in mind when making your edits here, that these config files can be updated by
|
|
the dashboard, and that your edits can be over-written. It is assumed that you already know
|
|
what you are doing editing the files by hand, and that you understand what parts of the files
|
|
are maintained by the dashboard.<br />
|
|
<br />
|
|
With that warning in mind, you are free to make any changes you like, for help come to the Facebook
|
|
group (link at the bottom of the page) and ask for help if / when you need it.<br />
|
|
73 and enjoy your CDN experiance.<br />
|
|
CDN Team.
|
|
</div></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|