├── assets ├── css │ ├── style.css │ └── ajaxmask.css ├── image │ ├── logo.png │ ├── favicon.gif │ └── loading-spinner-grey.gif ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── npm.js │ ├── ajaxmask.js │ ├── custom.js │ ├── jquery.timer.js │ ├── html5shiv.min.js │ └── respond.min.js ├── verification ├── assets │ ├── css │ │ ├── style.css │ │ └── ajaxmask.css │ ├── image │ │ ├── logo.png │ │ ├── favicon.gif │ │ └── loading-spinner-grey.gif │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── npm.js │ │ ├── ajaxmask.js │ │ ├── custom.js │ │ ├── jquery.timer.js │ │ ├── html5shiv.min.js │ │ └── respond.min.js ├── documentation │ ├── .DS_Store │ ├── assets │ │ ├── .DS_Store │ │ ├── css │ │ │ ├── img │ │ │ │ ├── info.png │ │ │ │ └── warning.png │ │ │ ├── doc.css │ │ │ └── documenter_style.css │ │ ├── images │ │ │ ├── .DS_Store │ │ │ ├── ss_1.png │ │ │ ├── ss_2.png │ │ │ ├── ss_3.png │ │ │ ├── ss_4.png │ │ │ ├── ss_5.png │ │ │ ├── ss_6.png │ │ │ └── image_1.png │ │ └── js │ │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ │ ├── jquery.scrollTo.js │ │ │ ├── script.js │ │ │ └── jquery.easing.js │ └── index.html ├── getac.php ├── register.php ├── verification.php ├── include │ ├── global.php │ ├── head.php │ └── function.php ├── messages.php ├── process_verification.php ├── log.php ├── process_register.php ├── login.php ├── index.php ├── database │ └── demo_flexcodesdk.sql ├── device.php └── user.php ├── documentation ├── .DS_Store ├── assets │ ├── .DS_Store │ ├── css │ │ ├── img │ │ │ ├── info.png │ │ │ └── warning.png │ │ ├── doc.css │ │ └── documenter_style.css │ ├── images │ │ ├── .DS_Store │ │ ├── ss_1.png │ │ ├── ss_2.png │ │ ├── ss_3.png │ │ ├── ss_4.png │ │ ├── ss_5.png │ │ ├── ss_6.png │ │ ├── ss_7.png │ │ ├── ss_8.png │ │ └── image_1.png │ └── js │ │ ├── google-code-prettify │ │ ├── prettify.css │ │ └── prettify.js │ │ ├── jquery.scrollTo.js │ │ ├── script.js │ │ └── jquery.easing.js └── index.html ├── getac.php ├── register.php ├── verification.php ├── include ├── global.php ├── head.php └── function.php ├── messages.php ├── process_verification.php ├── log.php ├── process_register.php ├── login.php ├── index.php ├── database └── demo_flexcodesdk.sql ├── device.php └── user.php /assets/css/style.css: -------------------------------------------------------------------------------- 1 | body > .container { 2 | padding: 70px 15px 0; 3 | } -------------------------------------------------------------------------------- /verification/assets/css/style.css: -------------------------------------------------------------------------------- 1 | body > .container { 2 | padding: 70px 15px 0; 3 | } -------------------------------------------------------------------------------- /assets/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/assets/image/logo.png -------------------------------------------------------------------------------- /documentation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/.DS_Store -------------------------------------------------------------------------------- /assets/image/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/assets/image/favicon.gif -------------------------------------------------------------------------------- /documentation/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/.DS_Store -------------------------------------------------------------------------------- /verification/assets/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/assets/image/logo.png -------------------------------------------------------------------------------- /assets/image/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/assets/image/loading-spinner-grey.gif -------------------------------------------------------------------------------- /documentation/assets/css/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/css/img/info.png -------------------------------------------------------------------------------- /documentation/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/.DS_Store -------------------------------------------------------------------------------- /documentation/assets/images/ss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_1.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_2.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_3.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_4.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_5.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_6.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_7.png -------------------------------------------------------------------------------- /documentation/assets/images/ss_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/ss_8.png -------------------------------------------------------------------------------- /verification/assets/image/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/assets/image/favicon.gif -------------------------------------------------------------------------------- /verification/documentation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/.DS_Store -------------------------------------------------------------------------------- /documentation/assets/css/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/css/img/warning.png -------------------------------------------------------------------------------- /documentation/assets/images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/documentation/assets/images/image_1.png -------------------------------------------------------------------------------- /verification/documentation/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /verification/assets/image/loading-spinner-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/assets/image/loading-spinner-grey.gif -------------------------------------------------------------------------------- /verification/documentation/assets/css/img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/css/img/info.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/.DS_Store -------------------------------------------------------------------------------- /verification/documentation/assets/images/ss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/ss_1.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/ss_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/ss_2.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/ss_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/ss_3.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/ss_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/ss_4.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/ss_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/ss_5.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/ss_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/ss_6.png -------------------------------------------------------------------------------- /verification/documentation/assets/css/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/css/img/warning.png -------------------------------------------------------------------------------- /verification/documentation/assets/images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/documentation/assets/images/image_1.png -------------------------------------------------------------------------------- /verification/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /verification/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /verification/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanmiranda/digitalpersona/HEAD/verification/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /getac.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/getac.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/register.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/verification.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /include/global.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/assets/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /verification/include/global.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /messages.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verification/messages.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/ajaxmask.css: -------------------------------------------------------------------------------- 1 | .ajax-mask { 2 | background: none; 3 | } 4 | 5 | .ajax-mask .loading { 6 | position: fixed; 7 | top: 30%; 8 | left: 50%; 9 | min-width: 125px; 10 | margin-left: -50px; 11 | margin-top: -30px; 12 | padding: 7px; 13 | text-align: center; 14 | color: #333; 15 | font-size: 13px; 16 | border: 1px solid #ddd; 17 | background-color: #eee; 18 | vertical-align: middle; 19 | -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); 20 | -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); 21 | box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); 22 | } 23 | 24 | .ajax-mask span { 25 | line-height:20px; 26 | vertical-align: middle; 27 | } 28 | -------------------------------------------------------------------------------- /verification/assets/css/ajaxmask.css: -------------------------------------------------------------------------------- 1 | .ajax-mask { 2 | background: none; 3 | } 4 | 5 | .ajax-mask .loading { 6 | position: fixed; 7 | top: 30%; 8 | left: 50%; 9 | min-width: 125px; 10 | margin-left: -50px; 11 | margin-top: -30px; 12 | padding: 7px; 13 | text-align: center; 14 | color: #333; 15 | font-size: 13px; 16 | border: 1px solid #ddd; 17 | background-color: #eee; 18 | vertical-align: middle; 19 | -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); 20 | -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); 21 | box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); 22 | } 23 | 24 | .ajax-mask span { 25 | line-height:20px; 26 | vertical-align: middle; 27 | } 28 | -------------------------------------------------------------------------------- /documentation/assets/js/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .linenums .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 18px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /verification/documentation/assets/js/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .linenums .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 18px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /assets/js/ajaxmask.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Jquery Ajax Loading Mask 3 | * Author: Kevin Sakhuja 4 | * 5 | * Usage: $(element).loadingMask({ stop: true }); 6 | * 7 | */ 8 | 9 | (function($) { 10 | $.fn.ajaxMask = function(options) { 11 | 12 | return this.each(function() { 13 | var settings = $.extend({ 14 | stop: false, 15 | }, options); 16 | 17 | if (!settings.stop) { 18 | var loadingDiv = $('
' + 'Please wait...' + '
' + 'Please wait...' + '| Log Time | " 24 | ."Username | " 25 | ."Data | " 26 | ."
|---|---|---|
| ".$row['log_time']." | " 34 | ."".$row['user_name']." | " 35 | ."".$row['data']." | "
36 | ."
| Log Time | " 24 | ."Username | " 25 | ."Data | " 26 | ."
|---|---|---|
| ".$row['log_time']." | " 34 | ."".$row['user_name']." | " 35 | ."".$row['data']." | "
36 | ."
| Device Name | " 44 | ."Device SN | " 45 | ."Device VC | " 46 | ."Device AC | " 47 | ."Device VKEY | " 48 | ."Action | " 49 | ."
|---|---|---|---|---|---|
| ".$row['device_name']." | " 57 | ."".$row['sn']." | "
58 | ."".$row['vc']." | "
59 | ."".$row['ac']." | "
60 | ."".substr($row['vkey'], 0, 2)."... | "
61 | ."" 62 | ."" 63 | ." | " 64 | ."
| Device Name | " 44 | ."Device SN | " 45 | ."Device VC | " 46 | ."Device AC | " 47 | ."Device VKEY | " 48 | ."Action | " 49 | ."
|---|---|---|---|---|---|
| ".$row['device_name']." | " 57 | ."".$row['sn']." | "
58 | ."".$row['vc']." | "
59 | ."".$row['ac']." | "
60 | ."".substr($row['vkey'], 0, 2)."... | "
61 | ."" 62 | ."" 63 | ." | " 64 | ."
| User ID | " 116 | ."Username | " 117 | ."Template | " 118 | ."Action | " 119 | ."
|---|---|---|---|
| ".$row['user_id']." | " 143 | ."".$row['user_name']." | " 144 | ."".count($finger)." | "
145 | ."" 146 | ."" 147 | ." " 148 | ."$register" 149 | ."$verification" 150 | ." | " 151 | ."
| User ID | " 116 | ."Username | " 117 | ."Template | " 118 | ."Action | " 119 | ."
|---|---|---|---|
| ".$row['user_id']." | " 143 | ."".$row['user_name']." | " 144 | ."".count($finger)." | "
145 | ."" 146 | ."" 147 | ." " 148 | ."$register" 149 | ."$verification" 150 | ." | " 151 | ."
Thank you for purchasing our product. If you have any questions that are beyond the scope of this help file, please feel free to contact us.
107 |
111 | Most of the questions are already answered in the FAQ's:
112 | https://www.apachefriends.org
114 | Linux installation refer to this following FAQs 115 | https://www.apachefriends.org/faq_linux.html
116 | 117 |118 | Windows installation refer to this following FAQs 119 | https://www.apachefriends.org/faq_windows.html
120 | 121 |122 | OS X installation refer to this following FAQs 123 | https://www.apachefriends.org/faq_osx.html
124 | 125 |129 | /demo_flexcodesdk 130 | (Sample Pages...) 131 | /assets 132 | /css 133 | /font 134 | /image 135 | /js 136 | /database 137 | demo_flexcodesdk.sql (Sql file import to your database server) 138 | /include 139 | function.php (Customize PHP function for this sample) 140 | global.php (Customize global setting for this sample) 141 | head.php 142 |143 |
144 |
148 | After you download sample code from our website http://www.flexcodesdk.com/ extract the file into your web server and you can see the files looks like files structure in the page before. 149 | 150 |
151 |
152 |
158 |
162 |
163 |
165 | $base_path customize this line with your sample code url.
166 | $db_name customize this line with your database name.
167 | $db_user customize this line with your database user.
168 | $db_pass customize this line with your database user password.
169 | $time_limit_reg customize this line with number (used for show the register interface for fingerprint).
170 | $time_limit_ver customize this line with number (used for show the login interface for fingerprint).
171 |
179 | You can add and delete device in the device menu. 180 |
181 |
182 |
183 |
188 | You can add, delete, register fingerprint or login user menu in the User menu. 189 |
190 |196 | Step by step fingerprint enrollment process : 197 |
198 |
214 |
215 |
220 | You can login user in the Login menu. When the verication success, it will open a new page. 221 |
222 |228 | Step by step fingerprint verification process : 229 |
230 |
248 |
249 |
254 | You can view the log information of login user in this Log menu. 255 |
256 |
257 |
258 |
Thank you for purchasing our product. If you have any questions that are beyond the scope of this help file, please feel free to contact us.
107 |
111 | Most of the questions are already answered in the FAQ's:
112 | https://www.apachefriends.org
114 | Linux installation refer to this following FAQs 115 | https://www.apachefriends.org/faq_linux.html
116 | 117 |118 | Windows installation refer to this following FAQs 119 | https://www.apachefriends.org/faq_windows.html
120 | 121 |122 | OS X installation refer to this following FAQs 123 | https://www.apachefriends.org/faq_osx.html
124 | 125 |129 | /demo_flexcodesdk 130 | (Sample Pages...) 131 | /assets 132 | /css 133 | /font 134 | /image 135 | /js 136 | /database 137 | demo_flexcodesdk.sql (Sql file import to your database server) 138 | /include 139 | function.php (Customize PHP function for this sample) 140 | global.php (Customize global setting for this sample) 141 | head.php 142 |143 |
144 |
148 | After you download sample code from our website http://www.flexcodesdk.com/ extract the file into your web server and you can see the files looks like files structure in the page before. 149 | 150 |
151 |
152 |
158 |
162 |
163 |
165 | $base_path customize this line with your sample code url.
166 | $db_name customize this line with your database name.
167 | $db_user customize this line with your database user.
168 | $db_pass customize this line with your database user password.
169 | $time_limit_reg customize this line with number (used for show the register interface for fingerprint).
170 | $time_limit_ver customize this line with number (used for show the login interface for fingerprint).
171 |
179 | You can add and delete device in the device menu. 180 |
181 |
182 |
183 |
188 | You can add, delete, register fingerprint or login user menu in the User menu. 189 |
190 |196 | Step by step fingerprint enrollment process : 197 |
198 |
215 |
216 |
218 |
219 |
224 | You can login user in the Login menu. When the verication success, it will open a new page. 225 |
226 |232 | Step by step fingerprint verification process : 233 |
234 |
253 |
254 |
256 |
257 |
262 | You can view the log information of login user in this Log menu. 263 |
264 |
265 |
266 |