view mconfig.inc.php.example @ 120:2c594958050e

Make test vote keys "testN" where N >= 1
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 14:22:26 +0300
parents 2f3fd26babed
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";

?>