view mconfig.inc.php.example @ 220:db433a1d22b4

Fix test data creation.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 18 Nov 2013 01:27:52 +0200
parents a3f0f2a3551a
children 3640f2311e1c
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(
  "/fap2013/admin" => true,
  "/fap2013/register" => true,
  "/fap2013/vote" => false,
);


$pageTitle = "Finnish Amiga Party 2013";
$pageCharset = "utf-8";
$pageCSS = array(
  "main.css" => "",
  "desktop.css" => "only screen and (min-width: 801px)",
  "mobile.css" => "only screen and (max-width: 799px), only screen and (max-device-width: 799px)"
);

?>