view mconfig.inc.php.example @ 123:5837b9333964

Add new "about" page, and setting for default page.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 15:18:09 +0300
parents 2f3fd26babed
children 9c20703a7a61
line wrap: on
line source

<?
// Site configuration, important settings that MUST be reviewed and set
// correctly, and generally should not be changed afterwards ...
// Apart from the debug, and timeout settings.
$siteSettings = array(
//  "admPassword"     => "xxx",
  "sqlDB"           => "sqlite:fap.sqlite3",

  "debug"           => false,

  "defaultPage"     => "about", // Default page

  "userKeyLength"   => 8,
  "voteMin"         => -1,
  "voteMax"         => 2,

  "voteKeyMode"     => -1, // See msite.inc.php for VOTE_*

  "voteTimeout"     => 120,
  "admTimeout"      => 15,
);

date_default_timezone_set("Europe/Helsinki");

$securePages = array(
  "/fap2012/admin" => true,
  "/fap2012/register" => true,
  "/fap2012/vote" => false,
);


$pageTitle = "Finnish Amiga Party 2022";
$pageCharset = "utf-8";
$pageCSS = "fap.css";

?>