01.|-------------------------------------
02.| Base Site URL
03.|----------------------------------------
04.
05.
06.$config['base_url'] =
07."http://localhost/CodeIgniter/";
08.
09.
10.
11.
12.|-----------------------------------
13.| Index File
14.|-----------------------------------
15.
16.
17.$config['index_page'] = "index.php";
18.
19.
20.
21.
22.|-------------------------------------
23.| Default Language
24.|------------------------------------
25.
26.
27.$config['language'] = "english";
28.
29.
30.
31.
32.|--------------------------------------
33.| Default Character Set
34.|----------------------------------------
35.
36.
37.$config['charset'] = "UTF-8";
38.
39.
40.
41.
42.|----------------------------------------
43.| Cache Directory Path
44.|--------------------------------------
45.
46.
47.$config['cache_path'] =
48.'http://127.0.0.1/codeigniter/cache/';
49.
50.
51.
52.
53.|------------------------------------------
54.| Session Variables
55.|-------------------------------------------
56.
57.
58.$config['sess_cookie_name'] = 'ci_session';
59.$config['sess_expiration'] = 7200;
60.$config['sess_encrypt_cookie'] = FALSE;
61.$config['sess_use_database'] = FALSE;
62.$config['sess_table_name'] = 'ci_sessions';
63.$config['sess_match_ip'] = FALSE;
64.$config['sess_match_useragent'] = TRUE;
65.$config['sess_time_to_update'] = 300;
66.
67.
68.
69.
70.|---------------------------------------
71.| Global XSS Filtering
72.|---------------------------------------
73.
74.
75.$config['global_xss_filtering'] = FALSE;
76.
77.
78.
79.
80.|-------------------------------------
81.| Output Compression
82.|----------------------------------------
83.
84.
85.$config['compress_output'] = TRUE;
86.
87.
88.
89.
90.|----------------------------------------
91.| Rewrite PHP Short Tags
92.|-----------------------------------------
93.
94.
95.$config['rewrite_short_tags'] = FALSE;
Post a Comment