Skip to content

Commit ece442d

Browse files
version 1 released
Version 1 Updated design pages based on AdminLte Login to the sytem Userlevel wise dashboard page
1 parent e5878b0 commit ece442d

File tree

2,199 files changed

+662409
-3521
lines changed

Some content is hidden

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

2,199 files changed

+662409
-3521
lines changed

.htaccess

Lines changed: 0 additions & 148 deletions
Original file line numberDiff line numberDiff line change
@@ -1,149 +1 @@
1-
2-
<IfModule mod_headers.c>
3-
Header set Access-Control-Allow-Origin "*"
4-
</IfModule>
5-
6-
<IfModule mod_mime.c>
7-
8-
# Audio
9-
AddType audio/mp4 m4a f4a f4b
10-
AddType audio/ogg oga ogg
11-
12-
# JavaScript
13-
# Normalize to standard type (it's sniffed in IE anyways):
14-
# http://tools.ietf.org/html/rfc4329#section-7.2
15-
AddType application/javascript js jsonp
16-
AddType application/json json
17-
AddType application/json geojson
18-
19-
# Video
20-
AddType video/mp4 mp4 m4v f4v f4p
21-
AddType video/ogg ogv
22-
AddType video/webm webm
23-
AddType video/x-flv flv
24-
25-
# Web fonts
26-
AddType application/font-woff woff
27-
AddType application/vnd.ms-fontobject eot
28-
29-
# Browsers usually ignore the font MIME types and sniff the content,
30-
# however, Chrome shows a warning if other MIME types are used for the
31-
# following fonts.
32-
AddType application/x-font-ttf ttc ttf
33-
AddType font/opentype otf
34-
35-
# Make SVGZ fonts work on iPad:
36-
# https://twitter.com/FontSquirrel/status/14855840545
37-
AddType image/svg+xml svg svgz
38-
AddEncoding gzip svgz
39-
40-
# Other
41-
AddType application/octet-stream safariextz
42-
AddType application/x-chrome-extension crx
43-
AddType application/x-opera-extension oex
44-
AddType application/x-shockwave-flash swf
45-
AddType application/x-web-app-manifest+json webapp
46-
AddType application/x-xpinstall xpi
47-
AddType application/xml atom rdf rss xml
48-
AddType image/webp webp
49-
AddType image/x-icon ico
50-
AddType text/cache-manifest appcache manifest
51-
AddType text/vtt vtt
52-
AddType text/x-component htc
53-
AddType text/x-vcard vcf
54-
55-
</IfModule>
56-
57-
# ------------------------------------------------------------------------------
58-
# | UTF-8 encoding |
59-
# ------------------------------------------------------------------------------
60-
61-
# Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
62-
AddDefaultCharset utf-8
63-
64-
# Force UTF-8 for certain file formats.
65-
<IfModule mod_mime.c>
66-
AddCharset utf-8 .atom .css .js .json .rss .vtt .webapp .xml
67-
</IfModule>
68-
69-
<IfModule mod_php5.c>
70-
php_value post_max_size 35M
71-
php_value upload_max_filesize 25M
72-
php_value memory_limit 64M
73-
php_value max_execution_time 259200
74-
php_value max_input_time 259200
75-
php_value session.gc_maxlifetime 1800
76-
php_value session.save_path "/home/pmis/tmp"
77-
php_value display_errors 0
78-
php_value register_globals 0
79-
</IfModule>
80-
81-
SetOutputFilter DEFLATE
82-
83-
<IfModule mod_rewrite.c>
84-
RewriteEngine On
85-
RewriteRule ^index\.php$ - [L]
86-
RewriteCond %{REQUEST_FILENAME} !-f
87-
RewriteCond %{REQUEST_FILENAME} !-d
88-
RewriteRule . index.php [L]
89-
</IfModule>
90-
91-
92-
# ------------------------------------------------------------------------------
93-
# | Expires headers (for better cache control) |
94-
# ------------------------------------------------------------------------------
95-
96-
# The following expires headers are set pretty far in the future. If you don't
97-
# control versioning with filename-based cache busting, consider lowering the
98-
# cache time for resources like CSS and JS to something like 1 week.
99-
100-
<IfModule mod_expires.c>
101-
102-
ExpiresActive on
103-
ExpiresDefault "access plus 1 month"
104-
105-
# CSS
106-
ExpiresByType text/css "access plus 1 year"
107-
108-
# Data interchange
109-
ExpiresByType application/json "access plus 0 seconds"
110-
ExpiresByType application/xml "access plus 0 seconds"
111-
ExpiresByType text/xml "access plus 0 seconds"
112-
113-
# Favicon (cannot be renamed!)
114-
ExpiresByType image/x-icon "access plus 1 week"
115-
116-
# HTML components (HTCs)
117-
ExpiresByType text/x-component "access plus 1 month"
118-
119-
# HTML
120-
ExpiresByType text/html "access plus 0 seconds"
121-
122-
# JavaScript
123-
ExpiresByType application/javascript "access plus 1 year"
124-
125-
# Manifest files
126-
ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
127-
ExpiresByType text/cache-manifest "access plus 0 seconds"
128-
129-
# Media
130-
ExpiresByType audio/ogg "access plus 1 month"
131-
ExpiresByType image/gif "access plus 1 month"
132-
ExpiresByType image/jpeg "access plus 1 month"
133-
ExpiresByType image/png "access plus 1 month"
134-
ExpiresByType video/mp4 "access plus 1 month"
135-
ExpiresByType video/ogg "access plus 1 month"
136-
ExpiresByType video/webm "access plus 1 month"
137-
138-
# Web feeds
139-
ExpiresByType application/atom+xml "access plus 1 hour"
140-
ExpiresByType application/rss+xml "access plus 1 hour"
141-
142-
# Web fonts
143-
ExpiresByType application/font-woff "access plus 1 month"
144-
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
145-
ExpiresByType application/x-font-ttf "access plus 1 month"
146-
ExpiresByType font/opentype "access plus 1 month"
147-
ExpiresByType image/svg+xml "access plus 1 month"
148-
1491
</IfModule>

License.txt

Lines changed: 0 additions & 65 deletions
This file was deleted.

Readme.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
Simple PHP MVC framework version 0.6
1+
Simple PHP framework.
2+
3+
php >= 5.4
24

35
pdo mysql extension
4-
mbstring
6+
mbstring
7+
8+
Password Values
59

6-
Version 1.0 is expected to be released on June 2021 with sample ajax based application
10+
[email protected] = Mytest123
11+
[email protected] = Mytest123

admin/.htaccess

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
2+
<IfModule mod_headers.c>
3+
Header set Access-Control-Allow-Origin "*"
4+
</IfModule>
5+
6+
<IfModule mod_mime.c>
7+
8+
# Audio
9+
AddType audio/mp4 m4a f4a f4b
10+
AddType audio/ogg oga ogg
11+
12+
# JavaScript
13+
# Normalize to standard type (it's sniffed in IE anyways):
14+
# http://tools.ietf.org/html/rfc4329#section-7.2
15+
AddType application/javascript js jsonp
16+
AddType application/json json
17+
AddType application/json geojson
18+
19+
# Video
20+
AddType video/mp4 mp4 m4v f4v f4p
21+
AddType video/ogg ogv
22+
AddType video/webm webm
23+
AddType video/x-flv flv
24+
25+
# Web fonts
26+
AddType application/font-woff woff
27+
AddType application/vnd.ms-fontobject eot
28+
29+
# Browsers usually ignore the font MIME types and sniff the content,
30+
# however, Chrome shows a warning if other MIME types are used for the
31+
# following fonts.
32+
AddType application/x-font-ttf ttc ttf
33+
AddType font/opentype otf
34+
35+
# Make SVGZ fonts work on iPad:
36+
# https://twitter.com/FontSquirrel/status/14855840545
37+
AddType image/svg+xml svg svgz
38+
AddEncoding gzip svgz
39+
40+
# Other
41+
AddType application/octet-stream safariextz
42+
AddType application/x-chrome-extension crx
43+
AddType application/x-opera-extension oex
44+
AddType application/x-shockwave-flash swf
45+
AddType application/x-web-app-manifest+json webapp
46+
AddType application/x-xpinstall xpi
47+
AddType application/xml atom rdf rss xml
48+
AddType image/webp webp
49+
AddType image/x-icon ico
50+
AddType text/cache-manifest appcache manifest
51+
AddType text/vtt vtt
52+
AddType text/x-component htc
53+
AddType text/x-vcard vcf
54+
55+
</IfModule>
56+
57+
# ------------------------------------------------------------------------------
58+
# | UTF-8 encoding |
59+
# ------------------------------------------------------------------------------
60+
61+
# Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
62+
AddDefaultCharset utf-8
63+
64+
# Force UTF-8 for certain file formats.
65+
<IfModule mod_mime.c>
66+
AddCharset utf-8 .atom .css .js .json .rss .vtt .webapp .xml
67+
</IfModule>
68+
69+
<IfModule mod_php5.c>
70+
php_value post_max_size 35M
71+
php_value upload_max_filesize 50M
72+
php_value memory_limit 64M
73+
php_value max_execution_time 259200
74+
php_value max_input_time 259200
75+
php_value session.gc_maxlifetime 1800
76+
php_value display_errors 0
77+
php_value register_globals 0
78+
</IfModule>
79+
80+
SetOutputFilter DEFLATE
81+
82+
<IfModule mod_rewrite.c>
83+
RewriteEngine On
84+
RewriteRule ^main\.php$ - [L]
85+
RewriteCond %{REQUEST_FILENAME} !-f
86+
RewriteCond %{REQUEST_FILENAME} !-d
87+
RewriteRule . main.php [L]
88+
</IfModule>
89+
90+
91+
# ------------------------------------------------------------------------------
92+
# | Expires headers (for better cache control) |
93+
# ------------------------------------------------------------------------------
94+
95+
# The following expires headers are set pretty far in the future. If you don't
96+
# control versioning with filename-based cache busting, consider lowering the
97+
# cache time for resources like CSS and JS to something like 1 week.
98+
99+
<IfModule mod_expires.c>
100+
101+
ExpiresActive on
102+
ExpiresDefault "access plus 1 month"
103+
104+
# CSS
105+
ExpiresByType text/css "access plus 1 year"
106+
107+
# Data interchange
108+
ExpiresByType application/json "access plus 0 seconds"
109+
ExpiresByType application/xml "access plus 0 seconds"
110+
ExpiresByType text/xml "access plus 0 seconds"
111+
112+
# Favicon (cannot be renamed!)
113+
ExpiresByType image/x-icon "access plus 1 week"
114+
115+
# HTML components (HTCs)
116+
ExpiresByType text/x-component "access plus 1 month"
117+
118+
# HTML
119+
ExpiresByType text/html "access plus 0 seconds"
120+
121+
# JavaScript
122+
ExpiresByType application/javascript "access plus 1 year"
123+
124+
# Manifest files
125+
ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
126+
ExpiresByType text/cache-manifest "access plus 0 seconds"
127+
128+
# Media
129+
ExpiresByType audio/ogg "access plus 1 month"
130+
ExpiresByType image/gif "access plus 1 month"
131+
ExpiresByType image/jpeg "access plus 1 month"
132+
ExpiresByType image/png "access plus 1 month"
133+
ExpiresByType video/mp4 "access plus 1 month"
134+
ExpiresByType video/ogg "access plus 1 month"
135+
ExpiresByType video/webm "access plus 1 month"
136+
137+
# Web feeds
138+
ExpiresByType application/atom+xml "access plus 1 hour"
139+
ExpiresByType application/rss+xml "access plus 1 hour"
140+
141+
# Web fonts
142+
ExpiresByType application/font-woff "access plus 1 month"
143+
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
144+
ExpiresByType application/x-font-ttf "access plus 1 month"
145+
ExpiresByType font/opentype "access plus 1 month"
146+
ExpiresByType image/svg+xml "access plus 1 month"
147+
148+
</IfModule>

0 commit comments

Comments
 (0)