<?php
// Check that the file can be securely run
if(!defined('WK_VALID')) require('../core/forbidden.php');
// FOR DEVELOPMENT ONLY !
// IF YOU'RE NOT A DEVELOPER, DELETE THIS FILE AND USE THE INSTALLER INSTEAD.
// WIKINGCONF
// Generated on 14-12-07 at 21:18 (server time)
//
// You should not edit this file,
// unless you know what you're doing.
// Always have a backup !
$wkConf = array(
/* Wiki settings */
'name' => 'Development wiki',
'baseurl' => 'http://localhost/wiking/wk/',
'lang' => 'fr',
'contact' => 'hide@address.com',
'lock_key' => '8b5c4eeb7b22dc19e1cd5013f005384b',
'url-rewriting' => false,
'homepage' => 'Nom_de_ma_pagee',
'theme' => 'default',
'open' => true,
'publicdir' => 'data/public/',
'cookie' => 'wkng',
/* Cache settings */
'use-cache' => true,
'cache-dir' => dirname(__FILE__) . '/../data/cache/',
'cache-expiration' => 3600, // (in seconds ; 3600s = 1 hour)
/* Data storage */
'use_sql' => false,
'storage' => dirname(__FILE__) . '/../data/storage/',
/* Database settings */
'db' => array(
'engine' => 'mysql',
'server' => 'localhost',
'port' => '3306',
'username' => 'root',
'password' => 'root',
'dbname' => 'wiking',
'persistent' => false,
'dbprefix' => 'wk_'
)
);
?>