New wilcard path detection and modifications in the node admin hook
[estigi.git] / settings.default.php
blob847e30bb14d8112b038a0d56c90d72c324b2ae56
1 <?php
3 if(!defined('LIFE_IS_GOOD')){
4 die('Hacking Attempt!');
5 exit;
8 /**
9 * Settings file with the basic configuration and database connection
10 * Read the README.txt (not ready yet) file for information
13 global $db;
15 $db['user'] = '';
16 $db['pwd'] = '';
17 $db['host'] = 'localhost';
18 $db['db'] = '';
19 $db['pre'] = ''; /* This will have a new implementation in order to have a pre variable for each table column there is*/
21 $cookie_domain = 'estigi.com'; //Not really working yet I think
23 $update_free_access = FALSE; //No idea what this is
25 //This will all go to the session settings page
26 ini_set('arg_separator.output', '&amp;');
27 ini_set('magic_quotes_runtime', 0);
28 ini_set('magic_quotes_sybase', 0);
29 ini_set('session.cache_expire', 200000);
30 ini_set('session.cache_limiter', 'none');
31 ini_set('session.cookie_lifetime', 2000000);
32 ini_set('session.gc_maxlifetime', 200000);
33 ini_set('session.save_handler', 'user');
34 ini_set('session.use_cookies', 1);
35 ini_set('session.use_only_cookies', 1);
36 ini_set('session.use_trans_sid', 0);
37 ini_set('url_rewriter.tags', '');