blob: 6867cee887780b7d9f0c58194ddb984e5042c05f [file] [log] [blame]
Andrey Andreeve734b382012-03-26 13:42:36 +03001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
Andrey Andreeve734b382012-03-26 13:42:36 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Academic Free License version 3.0
Andrey Andreeve734b382012-03-26 13:42:36 +030010 *
Derek Jones61df9062011-10-21 09:55:40 -050011 * This source file is subject to the Academic Free License (AFL 3.0) that is
Derek Jonesf4a4bd82011-10-20 12:18:42 -050012 * bundled with this package in the files license_afl.txt / license_afl.rst.
13 * It is also available through the world wide web at this URL:
14 * http://opensource.org/licenses/AFL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Derek Allard2067d1a2008-11-13 22:59:24 +000027
28/*
29|--------------------------------------------------------------------------
30| Base Site URL
31|--------------------------------------------------------------------------
32|
33| URL to your CodeIgniter root. Typically this will be your base URL,
34| WITH a trailing slash:
35|
36| http://example.com/
37|
Phil Sturgeon4df8b222010-12-15 14:23:14 +000038| If this is not set then CodeIgniter will guess the protocol, domain and
39| path to your installation.
40|
Derek Allard2067d1a2008-11-13 22:59:24 +000041*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000042$config['base_url'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000043
44/*
45|--------------------------------------------------------------------------
46| Index File
47|--------------------------------------------------------------------------
48|
49| Typically this will be your index.php file, unless you've renamed it to
50| something else. If you are using mod_rewrite to remove the page set this
51| variable so that it is blank.
52|
53*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000054$config['index_page'] = 'index.php';
Derek Allard2067d1a2008-11-13 22:59:24 +000055
56/*
57|--------------------------------------------------------------------------
58| URI PROTOCOL
59|--------------------------------------------------------------------------
60|
61| This item determines which server global should be used to retrieve the
Derek Jones4b9c6292011-07-01 17:40:48 -050062| URI string. The default setting of 'AUTO' works for most servers.
Derek Allard2067d1a2008-11-13 22:59:24 +000063| If your links do not seem to work, try one of the other delicious flavors:
64|
Andrey Andreevf2b19fe2012-10-31 16:16:24 +020065| 'AUTO' Default - auto detects
66| 'CLI' or 'argv' Uses $_SERVER['argv'] (for php-cli only)
67| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
68| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
69| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
70| 'ORIG_PATH_INFO' Uses $_SERVER['ORIG_PATH_INFO']
Derek Allard2067d1a2008-11-13 22:59:24 +000071|
72*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000073$config['uri_protocol'] = 'AUTO';
Derek Allard2067d1a2008-11-13 22:59:24 +000074
75/*
76|--------------------------------------------------------------------------
77| URL suffix
78|--------------------------------------------------------------------------
79|
80| This option allows you to add a suffix to all URLs generated by CodeIgniter.
81| For more information please see the user guide:
82|
83| http://codeigniter.com/user_guide/general/urls.html
84*/
85
Phil Sturgeon4df8b222010-12-15 14:23:14 +000086$config['url_suffix'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000087
88/*
89|--------------------------------------------------------------------------
90| Default Language
91|--------------------------------------------------------------------------
92|
93| This determines which set of language files should be used. Make sure
94| there is an available translation if you intend to use something other
95| than english.
96|
97*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000098$config['language'] = 'english';
Derek Allard2067d1a2008-11-13 22:59:24 +000099
100/*
101|--------------------------------------------------------------------------
102| Default Character Set
103|--------------------------------------------------------------------------
104|
105| This determines which character set is used by default in various methods
106| that require a character set to be provided.
107|
freewil8cc0cfe2011-08-27 21:53:00 -0400108| See http://php.net/htmlspecialchars for a list of supported charsets.
109|
Derek Allard2067d1a2008-11-13 22:59:24 +0000110*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000111$config['charset'] = 'UTF-8';
Derek Allard2067d1a2008-11-13 22:59:24 +0000112
113/*
114|--------------------------------------------------------------------------
115| Enable/Disable System Hooks
116|--------------------------------------------------------------------------
117|
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000118| If you would like to use the 'hooks' feature you must enable it by
Derek Jones4b9c6292011-07-01 17:40:48 -0500119| setting this variable to TRUE (boolean). See the user guide for details.
Derek Allard2067d1a2008-11-13 22:59:24 +0000120|
121*/
122$config['enable_hooks'] = FALSE;
123
124
125/*
126|--------------------------------------------------------------------------
127| Class Extension Prefix
128|--------------------------------------------------------------------------
129|
130| This item allows you to set the filename/classname prefix when extending
Derek Jones4b9c6292011-07-01 17:40:48 -0500131| native libraries. For more information please see the user guide:
Derek Allard2067d1a2008-11-13 22:59:24 +0000132|
133| http://codeigniter.com/user_guide/general/core_classes.html
134| http://codeigniter.com/user_guide/general/creating_libraries.html
135|
136*/
137$config['subclass_prefix'] = 'MY_';
138
139
140/*
141|--------------------------------------------------------------------------
142| Allowed URL Characters
143|--------------------------------------------------------------------------
144|
145| This lets you specify with a regular expression which characters are permitted
Derek Jones4b9c6292011-07-01 17:40:48 -0500146| within your URLs. When someone tries to submit a URL with disallowed
Derek Allard2067d1a2008-11-13 22:59:24 +0000147| characters they will get a warning message.
148|
149| As a security measure you are STRONGLY encouraged to restrict URLs to
Derek Jones4b9c6292011-07-01 17:40:48 -0500150| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
Derek Allard2067d1a2008-11-13 22:59:24 +0000151|
152| Leave blank to allow all characters -- but only if you are insane.
153|
154| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
155|
156*/
157$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
158
159
160/*
161|--------------------------------------------------------------------------
162| Enable Query Strings
163|--------------------------------------------------------------------------
164|
165| By default CodeIgniter uses search-engine friendly segment based URLs:
166| example.com/who/what/where/
167|
Derek Jones4b9c6292011-07-01 17:40:48 -0500168| By default CodeIgniter enables access to the $_GET array. If for some
Dan Horrigan65d603e2010-12-15 08:38:30 -0500169| reason you would like to disable it, set 'allow_get_array' to FALSE.
170|
Derek Allard2067d1a2008-11-13 22:59:24 +0000171| You can optionally enable standard query string based URLs:
172| example.com?who=me&what=something&where=here
173|
174| Options are: TRUE or FALSE (boolean)
175|
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000176| The other items let you set the query string 'words' that will
Derek Allard2067d1a2008-11-13 22:59:24 +0000177| invoke your controllers and its functions:
178| example.com/index.php?c=controller&m=function
179|
180| Please note that some of the helpers won't work as expected when
181| this feature is enabled, since CodeIgniter is designed primarily to
182| use segment based URLs.
183|
184*/
Phil Sturgeonc8089152010-12-27 19:06:28 +0000185$config['allow_get_array'] = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000186$config['enable_query_strings'] = FALSE;
Barry Mienydd671972010-10-04 16:33:58 +0200187$config['controller_trigger'] = 'c';
188$config['function_trigger'] = 'm';
189$config['directory_trigger'] = 'd'; // experimental not currently in use
Derek Allard2067d1a2008-11-13 22:59:24 +0000190
191/*
192|--------------------------------------------------------------------------
193| Error Logging Threshold
194|--------------------------------------------------------------------------
195|
Barry Mienydd671972010-10-04 16:33:58 +0200196| If you have enabled error logging, you can set an error threshold to
Derek Allard2067d1a2008-11-13 22:59:24 +0000197| determine what gets logged. Threshold options are:
198| You can enable error logging by setting a threshold over zero. The
199| threshold determines what gets logged. Threshold options are:
200|
201| 0 = Disables logging, Error logging TURNED OFF
202| 1 = Error Messages (including PHP errors)
203| 2 = Debug Messages
204| 3 = Informational Messages
205| 4 = All Messages
206|
Nithin333f9f92011-08-21 16:52:06 -0400207| You can also pass in a array with threshold levels to show individual error types
Iban Eguia83105952012-03-27 18:18:15 +0200208|
Nithin333f9f92011-08-21 16:52:06 -0400209| array(2) = Debug Messages, without Error Messages
210|
Derek Allard2067d1a2008-11-13 22:59:24 +0000211| For a live site you'll usually only enable Errors (1) to be logged otherwise
212| your log files will fill up very fast.
213|
214*/
215$config['log_threshold'] = 0;
216
217/*
218|--------------------------------------------------------------------------
219| Error Logging Directory Path
220|--------------------------------------------------------------------------
221|
222| Leave this BLANK unless you would like to set something other than the default
Eric Barnes3cf4c4e2011-01-12 09:10:08 -0500223| application/logs/ folder. Use a full server path with trailing slash.
Derek Allard2067d1a2008-11-13 22:59:24 +0000224|
225*/
226$config['log_path'] = '';
227
228/*
229|--------------------------------------------------------------------------
230| Date Format for Logs
231|--------------------------------------------------------------------------
232|
233| Each item that is logged has an associated date. You can use PHP date
234| codes to set your own date formatting
235|
236*/
237$config['log_date_format'] = 'Y-m-d H:i:s';
238
239/*
240|--------------------------------------------------------------------------
241| Cache Directory Path
242|--------------------------------------------------------------------------
243|
244| Leave this BLANK unless you would like to set something other than the default
Derek Jones4b9c6292011-07-01 17:40:48 -0500245| system/cache/ folder. Use a full server path with trailing slash.
Derek Allard2067d1a2008-11-13 22:59:24 +0000246|
247*/
248$config['cache_path'] = '';
249
250/*
251|--------------------------------------------------------------------------
252| Encryption Key
253|--------------------------------------------------------------------------
254|
Derek Jones5485db52010-08-30 21:31:08 -0500255| If you use the Encryption class or the Session class you
Derek Jones4b9c6292011-07-01 17:40:48 -0500256| MUST set an encryption key. See the user guide for info.
Iban Eguia83105952012-03-27 18:18:15 +0200257|
Kyle Ridolfo6a33e552011-10-27 15:40:06 -0300258| http://codeigniter.com/user_guide/libraries/encryption.html
259| http://codeigniter.com/user_guide/libraries/sessions.html
Derek Allard2067d1a2008-11-13 22:59:24 +0000260|
261*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000262$config['encryption_key'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000263
264/*
265|--------------------------------------------------------------------------
266| Session Variables
267|--------------------------------------------------------------------------
268|
dchill42ac740ab2012-08-30 10:49:28 -0400269| 'sess_driver' = the driver to load: cookie (Classic), native (PHP sessions),
270| or your custom driver name
271| 'sess_valid_drivers' = additional valid drivers which may be loaded
Derek Jones21ca8cc2010-09-27 08:49:29 -0500272| 'sess_cookie_name' = the name you want for the cookie
Barry Mienydd671972010-10-04 16:33:58 +0200273| 'sess_expiration' = the number of SECONDS you want the session to last.
Derek Jones4b9c6292011-07-01 17:40:48 -0500274| by default sessions last 7200 seconds (two hours). Set to zero for no expiration.
Derek Jones21ca8cc2010-09-27 08:49:29 -0500275| 'sess_expire_on_close' = Whether to cause the session to expire automatically
Derek Jones4b9c6292011-07-01 17:40:48 -0500276| when the browser window is closed
Derek Jones21ca8cc2010-09-27 08:49:29 -0500277| 'sess_encrypt_cookie' = Whether to encrypt the cookie
278| 'sess_use_database' = Whether to save the session data to a database
279| 'sess_table_name' = The name of the session database table
280| 'sess_match_ip' = Whether to match the user's IP address when reading the session data
281| 'sess_match_useragent' = Whether to match the User Agent when reading the session data
282| 'sess_time_to_update' = how many seconds between CI refreshing Session Information
Derek Allard2067d1a2008-11-13 22:59:24 +0000283|
284*/
dchill42ac740ab2012-08-30 10:49:28 -0400285$config['sess_driver'] = 'cookie';
286$config['sess_valid_drivers'] = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000287$config['sess_cookie_name'] = 'ci_session';
288$config['sess_expiration'] = 7200;
Derek Jones21ca8cc2010-09-27 08:49:29 -0500289$config['sess_expire_on_close'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000290$config['sess_encrypt_cookie'] = FALSE;
291$config['sess_use_database'] = FALSE;
292$config['sess_table_name'] = 'ci_sessions';
293$config['sess_match_ip'] = FALSE;
294$config['sess_match_useragent'] = TRUE;
Barry Mienydd671972010-10-04 16:33:58 +0200295$config['sess_time_to_update'] = 300;
Derek Allard2067d1a2008-11-13 22:59:24 +0000296
297/*
298|--------------------------------------------------------------------------
299| Cookie Related Variables
300|--------------------------------------------------------------------------
301|
302| 'cookie_prefix' = Set a prefix if you need to avoid collisions
303| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
Derek Jones4b9c6292011-07-01 17:40:48 -0500304| 'cookie_path' = Typically will be a forward slash
305| 'cookie_secure' = Cookies will only be set if a secure HTTPS connection exists.
Iban Eguia83105952012-03-27 18:18:15 +0200306| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)
Derek Allard2067d1a2008-11-13 22:59:24 +0000307|
308*/
Dumk0d55f7492012-07-03 11:21:45 +0300309$config['cookie_prefix'] = '';
310$config['cookie_domain'] = '';
311$config['cookie_path'] = '/';
Robin Sowelld6d9f452011-02-11 15:31:27 -0500312$config['cookie_secure'] = FALSE;
freewil4ad0fd82012-03-13 22:37:42 -0400313$config['cookie_httponly'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000314
315/*
316|--------------------------------------------------------------------------
317| Global XSS Filtering
318|--------------------------------------------------------------------------
319|
320| Determines whether the XSS filter is always active when GET, POST or
321| COOKIE data is encountered
322|
323*/
324$config['global_xss_filtering'] = FALSE;
325
326/*
327|--------------------------------------------------------------------------
Shane Pearson49ced912010-10-06 17:31:40 -0500328| Cross Site Request Forgery
Derek Allard958543a2010-07-22 14:10:26 -0400329|--------------------------------------------------------------------------
Shane Pearson49ced912010-10-06 17:31:40 -0500330| Enables a CSRF cookie token to be set. When set to TRUE, token will be
Derek Allard958543a2010-07-22 14:10:26 -0400331| checked on a submitted form. If you are accepting user data, it is strongly
332| recommended CSRF protection be enabled.
Eric Barnes9805ecc2011-01-16 23:35:16 -0500333|
334| 'csrf_token_name' = The token name
335| 'csrf_cookie_name' = The cookie name
336| 'csrf_expire' = The number in seconds the token should expire.
RS714b2e9fe2011-12-31 16:02:50 -0200337| 'csrf_regenerate' = Regenerate token on every submission
Alex Bilbieaeb2c3e2011-08-21 16:14:54 +0100338| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
Derek Allard958543a2010-07-22 14:10:26 -0400339*/
340$config['csrf_protection'] = FALSE;
Eric Barnes9805ecc2011-01-16 23:35:16 -0500341$config['csrf_token_name'] = 'csrf_test_name';
342$config['csrf_cookie_name'] = 'csrf_cookie_name';
343$config['csrf_expire'] = 7200;
RS714b2e9fe2011-12-31 16:02:50 -0200344$config['csrf_regenerate'] = TRUE;
Alex Bilbieaeb2c3e2011-08-21 16:14:54 +0100345$config['csrf_exclude_uris'] = array();
Derek Allard958543a2010-07-22 14:10:26 -0400346
347/*
348|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000349| Output Compression
350|--------------------------------------------------------------------------
351|
Derek Jones4b9c6292011-07-01 17:40:48 -0500352| Enables Gzip output compression for faster page loads. When enabled,
Derek Allard2067d1a2008-11-13 22:59:24 +0000353| the output class will test whether your server supports Gzip.
354| Even if it does, however, not all browsers support compression
355| so enable only if you are reasonably sure your visitors can handle it.
356|
Derek Jones4b9c6292011-07-01 17:40:48 -0500357| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
Derek Allard2067d1a2008-11-13 22:59:24 +0000358| means you are prematurely outputting something to your browser. It could
Derek Jones4b9c6292011-07-01 17:40:48 -0500359| even be a line of whitespace at the end of one of your scripts. For
Derek Allard2067d1a2008-11-13 22:59:24 +0000360| compression to work, nothing can be sent before the output buffer is called
Derek Jones4b9c6292011-07-01 17:40:48 -0500361| by the output class. Do not 'echo' any values with compression enabled.
Derek Allard2067d1a2008-11-13 22:59:24 +0000362|
363*/
364$config['compress_output'] = FALSE;
365
366/*
367|--------------------------------------------------------------------------
Thor (atiredmachine)63678a22012-01-24 16:56:01 -0800368| Minify
369|--------------------------------------------------------------------------
370|
371| Removes extra characters (usually unnecessary spaces) from your
372| output for faster page load speeds. Makes your outputted HTML source
373| code less readable.
374|
375*/
376$config['minify_output'] = FALSE;
377
378/*
379|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000380| Master Time Reference
381|--------------------------------------------------------------------------
382|
Andrey Andreevd163e0b2012-06-14 03:09:53 +0300383| Options are 'local' or any PHP supported timezone. This preference tells
384| the system whether to use your server's local time as the master 'now'
385| reference, or convert it to the configured one timezone. See the 'date
Iban Eguia74009652012-06-13 22:57:50 +0200386| helper' page of the user guide for information regarding date handling.
Derek Allard2067d1a2008-11-13 22:59:24 +0000387|
388*/
389$config['time_reference'] = 'local';
390
391
392/*
393|--------------------------------------------------------------------------
394| Rewrite PHP Short Tags
395|--------------------------------------------------------------------------
396|
397| If your PHP installation does not have short tag support enabled CI
398| can rewrite the tags on-the-fly, enabling you to utilize that syntax
Derek Jones4b9c6292011-07-01 17:40:48 -0500399| in your view files. Options are TRUE or FALSE (boolean)
Derek Allard2067d1a2008-11-13 22:59:24 +0000400|
401*/
402$config['rewrite_short_tags'] = FALSE;
403
404
Derek Jonesc5972282009-02-04 21:40:20 +0000405/*
406|--------------------------------------------------------------------------
407| Reverse Proxy IPs
408|--------------------------------------------------------------------------
409|
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300410| If your server is behind a reverse proxy, you must whitelist the proxy
411| IP addresses from which CodeIgniter should trust headers such as
412| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify
413| the visitor's IP address.
Derek Jonesc5972282009-02-04 21:40:20 +0000414|
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300415| You can use both an array or a comma-separated list of proxy addresses,
416| as well as specifying whole subnets. Here are a few examples:
417|
418| Comma-separated: '10.0.1.200,192.168.5.0/24'
419| Array: array('10.0.1.200', '192.168.5.0/24')
Derek Jonesc5972282009-02-04 21:40:20 +0000420*/
421$config['proxy_ips'] = '';
422
Derek Allard2067d1a2008-11-13 22:59:24 +0000423
424/* End of file config.php */
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300425/* Location: ./application/config/config.php */