view mconfig.inc.php.example @ 97:2f3fd26babed

Helpful comment about how important it is to check the default site settings.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Oct 2013 20:30:12 +0300
parents 6edd7d623eab
children 5837b9333964
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,

  "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";

?>