Ticket #6: config.php

File config.php, 0.7 kB (added by JAAulde, 20 months ago)

This section replaces lines 231 through 243 of original CI application/config.php

Line 
1/*
2|--------------------------------------------------------------------------
3| Cookie Related Variables
4|--------------------------------------------------------------------------
5| These are default values.  Each can be changed at will during a cookie operation
6|
7| 'cookie_prefix' = Set a prefix if you need to avoid collisions
8| 'cookie_lifetime' = Set length of time (seconds) cookies should live in browser.
9|                      0 means until browser closes.
10| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
11| 'cookie_path'   =  Typically will be a forward slash
12|
13*/
14$config['cookie_prefix'] = '';
15$config['cookie_lifetime'] = 0;
16$config['cookie_domain'] = '';
17$config['cookie_path'] = '/';
18