slitaz-forge diff forum/vanilla-config/config.php @ rev 0

Adding system and vanilla config files for the forum
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Dec 22 10:25:56 2010 +0100 (2010-12-22)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/forum/vanilla-config/config.php	Wed Dec 22 10:25:56 2010 +0100
     1.3 @@ -0,0 +1,72 @@
     1.4 +<?php if (!defined('APPLICATION')) exit();
     1.5 +
     1.6 +// Conversations
     1.7 +$Configuration['Conversations']['Version'] = '2.0.16';
     1.8 +
     1.9 +// Database
    1.10 +$Configuration['Database']['Name'] = 'slitaz_forum';
    1.11 +$Configuration['Database']['Host'] = 'localhost';
    1.12 +$Configuration['Database']['User'] = '***'; 
    1.13 +$Configuration['Database']['Password'] = '***';
    1.14 +
    1.15 +// EnabledApplications
    1.16 +$Configuration['EnabledApplications']['Conversations'] = 'conversations';
    1.17 +$Configuration['EnabledApplications']['Skeleton'] = 'skeleton';
    1.18 +$Configuration['EnabledApplications']['Vanilla'] = 'vanilla';
    1.19 +
    1.20 +// EnabledPlugins
    1.21 +$Configuration['EnabledPlugins']['HtmLawed'] = 'HtmLawed';
    1.22 +$Configuration['EnabledPlugins']['Gravatar'] = 'Gravatar';
    1.23 +$Configuration['EnabledPlugins']['FileUpload'] = 'FileUpload';
    1.24 +$Configuration['EnabledPlugins']['WhosOnline'] = 'WhosOnline';
    1.25 +$Configuration['EnabledPlugins']['Minify'] = 'Minify';
    1.26 +$Configuration['EnabledPlugins']['cleditor'] = 'cleditor';
    1.27 +$Configuration['EnabledPlugins']['Tagging'] = 'Tagging';
    1.28 +
    1.29 +// Garden
    1.30 +$Configuration['Garden']['Title'] = 'SliTaz Forum';
    1.31 +$Configuration['Garden']['Cookie']['Salt'] = 'VS0GNTQ0ML';
    1.32 +$Configuration['Garden']['Cookie']['Domain'] = '';
    1.33 +$Configuration['Garden']['Version'] = '2.0.16';
    1.34 +$Configuration['Garden']['RewriteUrls'] = FALSE;
    1.35 +$Configuration['Garden']['CanProcessImages'] = TRUE;
    1.36 +$Configuration['Garden']['Installed'] = TRUE;
    1.37 +$Configuration['Garden']['Errors']['MasterView'] = 'error.master.php';
    1.38 +$Configuration['Garden']['Theme'] = 'slitaz-2';
    1.39 +$Configuration['Garden']['Messages']['Cache'] = 'a:1:{i:0;s:6:"[Base]";}';
    1.40 +$Configuration['Garden']['EditContentTimeout'] = '-1';
    1.41 +$Configuration['Garden']['RequiredUpdates'] = 'a:0:{}';
    1.42 +$Configuration['Garden']['UpdateCheckDate'] = 1292966704;
    1.43 +$Configuration['Garden']['Registration']['Method'] = 'Captcha';
    1.44 +$Configuration['Garden']['Registration']['CaptchaPrivateKey'] = '6Ld7zwgAAAAAAPo5ydoZaBn_8Wapn7nb0dypEf6M';
    1.45 +$Configuration['Garden']['Registration']['CaptchaPublicKey'] = '6Ld7zwgAAAAAALF1IeGgtdlEg1WYupYxd5ZqGIpg';
    1.46 +$Configuration['Garden']['Registration']['InviteExpiration'] = '-1 week';
    1.47 +$Configuration['Garden']['Registration']['InviteRoles'] = 'a:2:{i:8;s:1:"0";i:16;s:1:"0";}';
    1.48 +
    1.49 +// Plugins
    1.50 +$Configuration['Plugins']['GettingStarted']['Dashboard'] = '1';
    1.51 +$Configuration['Plugins']['GettingStarted']['Categories'] = '1';
    1.52 +$Configuration['Plugins']['GettingStarted']['Plugins'] = '1';
    1.53 +$Configuration['Plugins']['GettingStarted']['Discussion'] = '1';
    1.54 +$Configuration['Plugins']['FileUpload']['Enabled'] = TRUE;
    1.55 +$Configuration['Plugins']['OpenID']['Enabled'] = FALSE;
    1.56 +$Configuration['Plugins']['Tagging']['Enabled'] = TRUE;
    1.57 +
    1.58 +// Routes
    1.59 +$Configuration['Routes']['DefaultController'] = 'a:2:{i:0;s:10:"categories";i:1;s:8:"Internal";}';
    1.60 +
    1.61 +// Vanilla
    1.62 +$Configuration['Vanilla']['Version'] = '2.0.16';
    1.63 +$Configuration['Vanilla']['Categories']['Use'] = TRUE;
    1.64 +$Configuration['Vanilla']['Discussions']['PerPage'] = '30';
    1.65 +$Configuration['Vanilla']['Comments']['AutoRefresh'] = '0';
    1.66 +$Configuration['Vanilla']['Comments']['PerPage'] = '50';
    1.67 +$Configuration['Vanilla']['Archive']['Date'] = '';
    1.68 +$Configuration['Vanilla']['Archive']['Exclude'] = FALSE;
    1.69 +
    1.70 +// WhosOnline
    1.71 +$Configuration['WhosOnline']['Frequency'] = '20';
    1.72 +$Configuration['WhosOnline']['Location']['Show'] = 'every';
    1.73 +$Configuration['WhosOnline']['Hide'] = TRUE;
    1.74 +
    1.75 +// Last edited by pankso (213.3.10.214)2010-12-21 16:25:04
    1.76 \ No newline at end of file