Skip to content

Commit 670d961

Browse files
author
fakhrawy
committed
First Commit
0 parents  commit 670d961

File tree

401 files changed

+109050
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

401 files changed

+109050
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.DS_Store
2+
3+
application/cache/*
4+
!application/cache/index.html
5+
!application/cache/.htaccess
6+
7+
application/logs/*
8+
!application/logs/index.html
9+
!application/logs/.htaccess
10+
11+
user_guide_src/build/*
12+
user_guide_src/cilexer/build/*
13+
user_guide_src/cilexer/dist/*
14+
user_guide_src/cilexer/pycilexer.egg-info/*
15+
/vendor/
16+
17+
# IDE Files
18+
#-------------------------
19+
/nbproject/
20+
.idea/*
21+
22+
## Sublime Text cache files
23+
*.tmlanguage.cache
24+
*.tmPreferences.cache
25+
*.stTheme.cache
26+
*.sublime-workspace
27+
*.sublime-project

.htaccess

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<IfModule mod_rewrite.c>
2+
RewriteEngine On
3+
RewriteCond %{REQUEST_FILENAME} !-f
4+
RewriteCond %{REQUEST_FILENAME} !-d
5+
RewriteCond $1 !^(index\.php|global|favicon\.ico|javascript)
6+
RewriteRule ^(.*)$ index.php/$1 [L]
7+
</IfModule>
8+
9+
<IfModule !mod_rewrite.c>
10+
ErrorDocument 404 /index.php
11+
</IfModule>
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# DEMO LINK #
2+
[build unique visitors counter with codeigniter](http://webeasystep.com/blog/view_article/how_to_build_unique_visitors_counter_with_codeigniter)

application/config/_htaccess

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
deny from all

application/config/autoload.php

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<?php
2+
3+
if (!defined('BASEPATH'))
4+
exit('No direct script access allowed');
5+
/*
6+
| -------------------------------------------------------------------
7+
| AUTO-LOADER
8+
| -------------------------------------------------------------------
9+
| This file specifies which systems should be loaded by default.
10+
|
11+
| In order to keep the framework as light-weight as possible only the
12+
| absolute minimal resources are loaded by default. For example,
13+
| the database is not connected to automatically since no assumption
14+
| is made regarding whether you intend to use it. This file lets
15+
| you globally define which systems you would like loaded with every
16+
| request.
17+
|
18+
| -------------------------------------------------------------------
19+
| Instructions
20+
| -------------------------------------------------------------------
21+
|
22+
| These are the things you can load automatically:
23+
|
24+
| 1. Packages
25+
| 2. Libraries
26+
| 3. Helper files
27+
| 4. Custom config files
28+
| 5. Language files
29+
| 6. Models
30+
|
31+
*/
32+
33+
/*
34+
| -------------------------------------------------------------------
35+
| Auto-load Packges
36+
| -------------------------------------------------------------------
37+
| These are the classes located in the system/libraries folder
38+
| or in your system/application/libraries folder.
39+
|
40+
| Prototype:
41+
|
42+
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
43+
|
44+
*/
45+
46+
$autoload['libraries'] = array('database','session');
47+
$autoload['packages'] = array();
48+
49+
/*
50+
| -------------------------------------------------------------------
51+
| Auto-load Helper Files
52+
| -------------------------------------------------------------------
53+
| Prototype:
54+
|
55+
| $autoload['helper'] = array('url', 'file');
56+
*/
57+
58+
$autoload['helper'] = array('url', 'form', 'language');
59+
60+
61+
/*
62+
| -------------------------------------------------------------------
63+
| Auto-load Plugins
64+
| -------------------------------------------------------------------
65+
| Prototype:
66+
|
67+
| $autoload['plugin'] = array('captcha', 'js_calendar');
68+
*/
69+
70+
71+
72+
/*
73+
| -------------------------------------------------------------------
74+
| Auto-load Config files
75+
| -------------------------------------------------------------------
76+
| Prototype:
77+
|
78+
| $autoload['config'] = array('config1', 'config2');
79+
|
80+
| NOTE: This item is intended for use ONLY if you have created custom
81+
| config files. Otherwise, leave it blank.
82+
|
83+
*/
84+
85+
$autoload['config'] = array();
86+
87+
88+
/*
89+
| -------------------------------------------------------------------
90+
| Auto-load Language files
91+
| -------------------------------------------------------------------
92+
| Prototype:
93+
|
94+
| $autoload['language'] = array('lang1', 'lang2');
95+
|
96+
| NOTE: Do not include the "_lang" part of your file. For example
97+
| "codeigniter_lang.php" would be referenced as array('codeigniter');
98+
|
99+
*/
100+
101+
$autoload['language'] = array();
102+
103+
104+
/*
105+
| -------------------------------------------------------------------
106+
| Auto-load Models
107+
| -------------------------------------------------------------------
108+
| Prototype:
109+
|
110+
| $autoload['model'] = array('model1', 'model2');
111+
|
112+
*/
113+
114+
$autoload['model'] = array();
115+
116+
117+
/* End of file autoload.php */
118+
/* Location: ./application/config/autoload.php */

0 commit comments

Comments
 (0)