| 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 | |
|---|