├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Account.php │ ├── Administrator.php │ ├── Page.php │ ├── Welcome.php │ ├── admin │ │ ├── Contents.php │ │ ├── Dashboard.php │ │ ├── Menus.php │ │ ├── Settings.php │ │ └── Users.php │ └── index.html ├── core │ ├── AZ_Loader.php │ └── index.html ├── database │ ├── index.html │ └── setup │ │ ├── index.html │ │ └── install.sql ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── AZ_date_helper.php │ ├── AZ_form_helper.php │ ├── AZ_language_helper.php │ ├── AZ_url_helper.php │ ├── content_helper.php │ ├── index.html │ ├── menu_helper.php │ ├── setting_helper.php │ ├── template_helper.php │ └── user_helper.php ├── hooks │ ├── BootigniterLoader.php │ ├── LanguageLoader.php │ └── index.html ├── index.html ├── language │ ├── english │ │ ├── app_lang.php │ │ ├── index.html │ │ └── site_lang.php │ ├── hindi │ │ ├── app_lang.php │ │ ├── index.html │ │ └── site_lang.php │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── Az.php │ ├── Content.php │ ├── Menu.php │ ├── Message.php │ ├── Setting.php │ ├── User.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── admin │ ├── blocks │ │ ├── contents │ │ │ ├── field-form.php │ │ │ ├── fields.php │ │ │ ├── fieldset-form.php │ │ │ ├── fieldset.php │ │ │ ├── form.php │ │ │ ├── group-form.php │ │ │ ├── groups.php │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── language-form.php │ │ │ ├── languages.php │ │ │ ├── type-form.php │ │ │ └── types.php │ │ ├── dashboard │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── recent-activity.php │ │ │ ├── visits-chart.php │ │ │ └── widgets.php │ │ ├── default.php │ │ ├── header │ │ │ ├── index.html │ │ │ ├── message-navigation.php │ │ │ ├── notify-navigation.php │ │ │ └── user-navigation.php │ │ ├── index.html │ │ ├── login.php │ │ ├── menus │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── item-form.php │ │ │ ├── menu-form.php │ │ │ └── section-form.php │ │ ├── messages │ │ │ ├── form.php │ │ │ ├── forward-form.php │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── label-form.php │ │ │ ├── label.php │ │ │ ├── notifications.php │ │ │ └── search.php │ │ ├── navigations.php │ │ ├── settings │ │ │ ├── field-form.php │ │ │ ├── group-form.php │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ └── section-form.php │ │ ├── system-message.php │ │ └── users │ │ │ ├── accesses-form.php │ │ │ ├── accesses.php │ │ │ ├── form.php │ │ │ ├── group-form.php │ │ │ ├── groups.php │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ └── permissions.php │ ├── index.html │ └── layouts │ │ ├── block-only.php │ │ ├── footer.php │ │ ├── head.php │ │ ├── header.php │ │ ├── index.html │ │ ├── left-content.php │ │ └── login.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── front │ ├── default │ │ ├── blocks │ │ │ ├── account │ │ │ │ ├── dashboard.php │ │ │ │ ├── index.html │ │ │ │ ├── index.php │ │ │ │ ├── login-box.php │ │ │ │ ├── password-box.php │ │ │ │ ├── profile-form.php │ │ │ │ ├── profile-menu.php │ │ │ │ ├── register-box.php │ │ │ │ └── sidebar-menu.php │ │ │ ├── content │ │ │ │ ├── index.html │ │ │ │ └── page.php │ │ │ ├── default.php │ │ │ ├── header │ │ │ │ ├── carousel.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.php │ │ │ ├── sidebar │ │ │ │ ├── index.html │ │ │ │ ├── left.php │ │ │ │ └── right.php │ │ │ └── system-message.php │ │ ├── index.html │ │ └── layouts │ │ │ ├── block-only.php │ │ │ ├── content-right.php │ │ │ ├── content.php │ │ │ ├── footer.php │ │ │ ├── head.php │ │ │ ├── header.php │ │ │ ├── index.html │ │ │ └── left-content.php │ └── index.html │ ├── index.html │ ├── page_not_found.php │ └── welcome_message.php ├── index.php ├── media ├── contents │ ├── files │ │ └── index.html │ └── index.html ├── index.html └── users │ ├── avatar.png │ ├── az.jpg │ └── index.html ├── skins ├── admin │ ├── css │ │ ├── bootstrap-colorpicker.min.css │ │ ├── bootstrap.min.css │ │ ├── chosen.min.css │ │ ├── font-awesome.min.css │ │ ├── ie.css │ │ ├── index.html │ │ ├── jquery-ui.min.css │ │ ├── jquery.dataTables.min.css │ │ ├── style.css │ │ └── theme.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── index.html │ ├── images │ │ ├── alpha-horizontal.png │ │ ├── alpha.png │ │ ├── apple-touch-icon.png │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── favicon.ico │ │ ├── hue-horizontal.png │ │ ├── hue.png │ │ ├── index.html │ │ ├── saturation.png │ │ └── ui-icons.png │ ├── index.html │ └── scripts │ │ ├── bootbox.min.js │ │ ├── bootstrap-colorpicker.min.js │ │ ├── bootstrap.min.js │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── index.html │ │ ├── jquery-1.11.3.min.js │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.spline.min.js │ │ ├── jquery.flot.tooltip.min.js │ │ ├── jquery.slimscroll.min.js │ │ └── theme.js ├── front │ ├── default │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── index.html │ │ ├── images │ │ │ ├── apple-touch-icon.png │ │ │ ├── bg.png │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ ├── index.html │ │ └── scripts │ │ │ ├── bootstrap.min.js │ │ │ ├── index.html │ │ │ ├── jquery-1.11.3.min.js │ │ │ └── main.js │ └── index.html └── index.html └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── ibase │ │ ├── ibase_driver.php │ │ ├── ibase_forge.php │ │ ├── ibase_result.php │ │ ├── ibase_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ ├── pdo_utility.php │ │ └── subdrivers │ │ │ ├── index.html │ │ │ ├── pdo_4d_driver.php │ │ │ ├── pdo_4d_forge.php │ │ │ ├── pdo_cubrid_driver.php │ │ │ ├── pdo_cubrid_forge.php │ │ │ ├── pdo_dblib_driver.php │ │ │ ├── pdo_dblib_forge.php │ │ │ ├── pdo_firebird_driver.php │ │ │ ├── pdo_firebird_forge.php │ │ │ ├── pdo_ibm_driver.php │ │ │ ├── pdo_ibm_forge.php │ │ │ ├── pdo_informix_driver.php │ │ │ ├── pdo_informix_forge.php │ │ │ ├── pdo_mysql_driver.php │ │ │ ├── pdo_mysql_forge.php │ │ │ ├── pdo_oci_driver.php │ │ │ ├── pdo_oci_forge.php │ │ │ ├── pdo_odbc_driver.php │ │ │ ├── pdo_odbc_forge.php │ │ │ ├── pdo_pgsql_driver.php │ │ │ ├── pdo_pgsql_forge.php │ │ │ ├── pdo_sqlite_driver.php │ │ │ ├── pdo_sqlite_forge.php │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ ├── sqlite3 │ │ ├── index.html │ │ ├── sqlite3_driver.php │ │ ├── sqlite3_forge.php │ │ ├── sqlite3_result.php │ │ └── sqlite3_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── pagination_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── Session.php ├── SessionHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ####The MIT License (MIT) 2 | 3 | Copyright (c) 2015 AZinkey LLC, 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | BootIgniter - The First CMS Boilerplate 2 | ================== 3 | 4 | 5 | Bootigniter - An Open Source CMS Boilerplate (World's First Truly Open Source CMS Boilerplate) 6 | 7 | Bootigniter is a Custom Content Management System (CMS) which encourage you to build your own content management system (CMS) using MVC framework. 8 | An open source project of Codeigniter ® with Bootstrap 3.x ®, in form of "Bootigniter". 9 | it gives scalable development framework for all (Developers & Designers). It is a Lightweight package for you to build your own Custom CMS, instead of customize & removing unnecessary features 10 | 11 | Or you can say it is an another CMS like Joomla, Wordpress but its not so much popular or heavy mixed up of unwanted code execution (features/extension) 12 | Where its just a Custom CMS from Scratch Based on CodeIgniter ® http://www.codeigniter.com/ and Bootstrap ® http://getbootstrap.com Framework. 13 | 14 | 15 | Bootigniter (SMART CMS Boilerplate), Version 2 - Coming Soon 16 | 17 | sponsored by https://www.hygym.co.uk/ 18 | 19 | Why choose Bootigniter as CMS 20 | === 21 | 22 | * World's Smallest footprint but Powerful CMS Framework (less then 2MB) 23 | 24 | * Exceptional performance, Everything is Lighting Fast 25 | 26 | * Do not want to compromise with vulnerabilities 27 | 28 | * Never sure about your content?, flexible Content Type 29 | 30 | * Mobile Ready Design Framework, Super clean HTML5/CSS3 31 | 32 | * +500 Retina ready Iconic Font 33 | 34 | * Instant Setup 35 | 36 | 37 | 38 | Features highlights 39 | === 40 | 41 | * Fully White Label Branding 42 | 43 | * Administration with Access Control Level 44 | 45 | * Flexible Configuration/Settings Panel 46 | 47 | * Unlimited User groups with controlled access 48 | 49 | * Create Custom Content Types with Multi language Support 50 | 51 | * Extendable Pages and Menus Managers 52 | 53 | 54 | 2 Step - Installation (Boot Setup) 55 | === 56 | 57 | ###Step 1.) UPDATE DATABASE SETTINGS 58 | 59 | ```bash 60 | /app/config/database.php 61 | ``` 62 | 63 | ###Step 2.) Configure Your BootIgniter Package 64 | configurations like "Base Site URL", "language" etc.. 65 | 66 | ```bash 67 | /app/config/config.php 68 | ``` 69 | 70 | License 71 | === 72 | 73 | Available for use under the [MIT] (https://opensource.org/licenses/MIT) License. It Means Bootigniter is fully open source and GPL friendly. You can use it for commercial projects, open source projects, or really after download, its Your. 74 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /app/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /app/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 6 | 'xhtml1-strict' => '', 7 | 'xhtml1-trans' => '', 8 | 'xhtml1-frame' => '', 9 | 'xhtml-basic11' => '', 10 | 'html5' => '', 11 | 'html4-strict' => '', 12 | 'html4-trans' => '', 13 | 'html4-frame' => '', 14 | 'mathml1' => '', 15 | 'mathml2' => '', 16 | 'svg10' => '', 17 | 'svg11' => '', 18 | 'svg11-basic' => '', 19 | 'svg11-tiny' => '', 20 | 'xhtml-math-svg-xh' => '', 21 | 'xhtml-math-svg-sh' => '', 22 | 'xhtml-rdfa-1' => '', 23 | 'xhtml-rdfa-2' => '' 24 | ); 25 | -------------------------------------------------------------------------------- /app/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 14 | '/ö|œ/' => 'oe', 15 | '/ü/' => 'ue', 16 | '/Ä/' => 'Ae', 17 | '/Ü/' => 'Ue', 18 | '/Ö/' => 'Oe', 19 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A', 20 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a', 21 | '/Б/' => 'B', 22 | '/б/' => 'b', 23 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 24 | '/ç|ć|ĉ|ċ|č/' => 'c', 25 | '/Д/' => 'D', 26 | '/д/' => 'd', 27 | '/Ð|Ď|Đ|Δ/' => 'Dj', 28 | '/ð|ď|đ|δ/' => 'dj', 29 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E', 30 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e', 31 | '/Ф/' => 'F', 32 | '/ф/' => 'f', 33 | '/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G', 34 | '/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g', 35 | '/Ĥ|Ħ/' => 'H', 36 | '/ĥ|ħ/' => 'h', 37 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I', 38 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i', 39 | '/Ĵ/' => 'J', 40 | '/ĵ/' => 'j', 41 | '/Ķ|Κ|К/' => 'K', 42 | '/ķ|κ|к/' => 'k', 43 | '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L', 44 | '/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l', 45 | '/М/' => 'M', 46 | '/м/' => 'm', 47 | '/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N', 48 | '/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n', 49 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O', 50 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o', 51 | '/П/' => 'P', 52 | '/п/' => 'p', 53 | '/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R', 54 | '/ŕ|ŗ|ř|ρ|р/' => 'r', 55 | '/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S', 56 | '/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's', 57 | '/Ț|Ţ|Ť|Ŧ|τ|Т/' => 'T', 58 | '/ț|ţ|ť|ŧ|т/' => 't', 59 | '/Þ|þ/' => 'th', 60 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U', 61 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u', 62 | '/Ƴ|Ɏ|Ỵ|Ẏ|Ӳ|Ӯ|Ў|Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y', 63 | '/ẙ|ʏ|ƴ|ɏ|ỵ|ẏ|ӳ|ӯ|ў|ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y', 64 | '/В/' => 'V', 65 | '/в/' => 'v', 66 | '/Ŵ/' => 'W', 67 | '/ŵ/' => 'w', 68 | '/Ź|Ż|Ž|Ζ|З/' => 'Z', 69 | '/ź|ż|ž|ζ|з/' => 'z', 70 | '/Æ|Ǽ/' => 'AE', 71 | '/ß/' => 'ss', 72 | '/IJ/' => 'IJ', 73 | '/ij/' => 'ij', 74 | '/Œ/' => 'OE', 75 | '/ƒ/' => 'f', 76 | '/ξ/' => 'ks', 77 | '/π/' => 'p', 78 | '/β/' => 'v', 79 | '/μ/' => 'm', 80 | '/ψ/' => 'ps', 81 | '/Ё/' => 'Yo', 82 | '/ё/' => 'yo', 83 | '/Є/' => 'Ye', 84 | '/є/' => 'ye', 85 | '/Ї/' => 'Yi', 86 | '/Ж/' => 'Zh', 87 | '/ж/' => 'zh', 88 | '/Х/' => 'Kh', 89 | '/х/' => 'kh', 90 | '/Ц/' => 'Ts', 91 | '/ц/' => 'ts', 92 | '/Ч/' => 'Ch', 93 | '/ч/' => 'ch', 94 | '/Ш/' => 'Sh', 95 | '/ш/' => 'sh', 96 | '/Щ/' => 'Shch', 97 | '/щ/' => 'shch', 98 | '/Ъ|ъ|Ь|ь/' => '', 99 | '/Ю/' => 'Yu', 100 | '/ю/' => 'yu', 101 | '/Я/' => 'Ya', 102 | '/я/' => 'ya' 103 | ); 104 | -------------------------------------------------------------------------------- /app/config/hooks.php: -------------------------------------------------------------------------------- 1 | 'BootLoader', 16 | 'function' => 'initialize', 17 | 'filename' => 'BootigniterLoader.php', 18 | 'filepath' => 'hooks' 19 | ); 20 | $hook['post_controller_constructor'][] = array( 21 | 'class' => 'LanguageLoader', 22 | 'function' => 'initialize', 23 | 'filename' => 'LanguageLoader.php', 24 | 'filepath' => 'hooks' 25 | ); -------------------------------------------------------------------------------- /app/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->current() this is the version that schema will 69 | | be upgraded / downgraded to. 70 | | 71 | */ 72 | $config['migration_version'] = 0; 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Migrations Path 77 | |-------------------------------------------------------------------------- 78 | | 79 | | Path to your migrations folder. 80 | | Typically, it will be within your application path. 81 | | Also, writing permission is required within the migrations path. 82 | | 83 | */ 84 | $config['migration_path'] = APPPATH.'migrations/'; 85 | -------------------------------------------------------------------------------- /app/config/profiler.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'page'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /app/controllers/Administrator.php: -------------------------------------------------------------------------------- 1 | 'login')); 48 | } 49 | 50 | /** 51 | * Match User details and Logged in Application 52 | * 53 | * @return Redirect 54 | */ 55 | public function login() { 56 | 57 | if (user::id()) { 58 | AZ::redirect('admin/dashboard'); 59 | } 60 | 61 | $post = $this->input->post(); 62 | 63 | if ($this->_validate() == FALSE) { 64 | $this->index(); 65 | return false; 66 | } 67 | $user_id = $this->user->authenicate($post['username'], $post['password']); 68 | 69 | if ($user_id) { 70 | if (have_permission('dashboard/index')) { 71 | AZ::redirect('admin/dashboard'); 72 | } else { 73 | user::flush(); 74 | AZ::redirectError('administrator', __('Unauthorized Access', true)); 75 | } 76 | } else { 77 | AZ::redirectError('administrator', 'Invalid'); 78 | } 79 | } 80 | 81 | /** 82 | * Flush user session & logged out from application 83 | * 84 | * @return Redirect 85 | */ 86 | public function logout() { 87 | 88 | user::flush(); 89 | 90 | AZ::redirectSuccess('administrator'); 91 | } 92 | 93 | /** 94 | * Verify User Credential 95 | * 96 | * @return boolen 97 | */ 98 | private function _validate() { 99 | 100 | $this->load->library('form_validation'); 101 | $this->form_validation->set_rules('username', 'Username', 'required'); 102 | $this->form_validation->set_rules('password', 'Password', 'required'); 103 | 104 | return $this->form_validation->run(); 105 | } 106 | 107 | } 108 | 109 | /* End of file admin.php */ 110 | /* Location: ./app/controllers/admin.php */ -------------------------------------------------------------------------------- /app/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see https://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/database/setup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /app/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /app/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /app/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /app/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/helpers/AZ_date_helper.php: -------------------------------------------------------------------------------- 1 | $timestamp); 47 | 48 | // Create suffix based on past/future 49 | $suffix = ($past) ? ' ago' : ' from now'; 50 | 51 | // Actual time string of timestamp ie 4:54 pm 52 | $timestr = date('g:i a', $timestamp); 53 | 54 | $diff = abs($timestamp - $base); 55 | 56 | $periods = array('year' => 31536000, 'month' => 2628000, 'day' => 86400, 'hour' => 3600, 'minute' => 60, 'second' => 1); 57 | 58 | // create array holding count of each period 59 | 60 | $out = array(); 61 | 62 | foreach ($periods as $period => $seconds) { 63 | if ($diff > $seconds) { 64 | $result = floor($diff / $seconds); 65 | $diff = $diff % $seconds; 66 | $out[] = array($period, $result); 67 | } 68 | } 69 | 70 | // Get largest period, other counts are still in $out for use 71 | $top = array_shift($out); 72 | 73 | switch ($top[0]) { 74 | case 'month' : 75 | $output = $top[1] == 1 ? ( $past ? 'last month' : 'next month' ) : $top[1] . ' months' . $suffix; 76 | break; 77 | case 'day' : 78 | $output = $top[1] == 1 ? ( $past ? 'yesterday' : 'tomorrow' ) . ', ' . $timestr : $top[1] . ' days' . $suffix; 79 | break; 80 | case 'hour': 81 | // Calculate in case, for example if yesterday was only 7 hours ago 82 | $output = date('j', $base) == date('j', $timestamp) ? 'today, ' . $timestr : (( $past ? 'yesterday' : 'tomorrow' ) . ', ' . $timestr); 83 | break; 84 | default : 85 | $output = $top[1] . ' ' . $top[0] . ( $top[1] > 1 ? 's' : '' ) . $suffix; 86 | break; 87 | } 88 | 89 | 90 | return ucfirst($output); 91 | } 92 | 93 | } 94 | 95 | /* End of file az_date_helper.php */ 96 | /* Location: ./app/helpers/az_date_helper.php */ -------------------------------------------------------------------------------- /app/helpers/AZ_url_helper.php: -------------------------------------------------------------------------------- 1 | segment(1); 40 | $is_admin = ($admin == 'administrator' || $admin == 'admin') ? true : false; 41 | $dir = ($is_admin) ? 'skins/admin/' : 'skins/front/' . $theme . '/'; 42 | return base_url() . $dir; 43 | } 44 | 45 | } 46 | 47 | /** 48 | * Get Media directory url 49 | * 50 | * 51 | * @access public 52 | * @param media 53 | * @return string 54 | */ 55 | if (!function_exists('media_url')) { 56 | 57 | function media_url($media = 'media/') { 58 | return base_url() . $media; 59 | } 60 | 61 | } 62 | 63 | /** 64 | * Check segments 65 | * 66 | * 67 | * @access public 68 | * @return boolen 69 | */ 70 | if (!function_exists('is_front')) { 71 | 72 | function is_front() { 73 | $uri = & load_class('URI', 'core'); 74 | if(count($uri->segments)){ 75 | return false; 76 | } else { 77 | return true; 78 | } 79 | } 80 | 81 | } 82 | 83 | /** 84 | * Get segment 1 85 | * 86 | * 87 | * @access public 88 | * @return integer 89 | */ 90 | if (!function_exists('segment_1')) { 91 | 92 | function segment_1() { 93 | $uri = & load_class('URI', 'core'); 94 | return $uri->segment(1); 95 | } 96 | 97 | } 98 | 99 | /** 100 | * Get segment 2 101 | * 102 | * 103 | * @access public 104 | * @return integer 105 | */ 106 | if (!function_exists('segment_2')) { 107 | 108 | function segment_2() { 109 | $uri = & load_class('URI', 'core'); 110 | return $uri->segment(2); 111 | } 112 | 113 | } 114 | 115 | 116 | /* End of file url_helper.php */ 117 | /* Location: ./app/helpers/az_url_helper.php */ -------------------------------------------------------------------------------- /app/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/hooks/BootigniterLoader.php: -------------------------------------------------------------------------------- 1 | db->hostname) || empty($ci->db->database) || empty($ci->db->username)) { 10 | 11 | show_error('Missing Database Configurations, Please configure your /app/config/database.php,
Set your database, Base Url details and then come back here again & Refresh for Instant Boot Setup.', 500, "Setup Database Configuration"); 12 | } 13 | 14 | if (!$ci->db->table_exists('access') || 15 | !$ci->db->table_exists('users') || 16 | !$ci->db->table_exists('languages') || 17 | !$ci->db->table_exists('contents')) { 18 | if ($this->_install_dump()) { 19 | $ci->setting->setSetting('site_url', site_url()); 20 | AZ::flashMSG('Your First Credential for login is admin/123456'); 21 | AZ::redirectSuccess('administrator', 'Your Bootigniter Package Setup Successfully'); 22 | } 23 | } else { 24 | return true; 25 | } 26 | } 27 | 28 | private function _setAdminUser() { 29 | 30 | $ci = & get_instance(); 31 | 32 | AZ::model('user'); 33 | 34 | $user = array( 35 | 'name' => 'AZinkey', 36 | 'username' => 'admin', 37 | 'email' => 'admin@example.com', 38 | 'password' => $ci->user->hash_password('123456'), 39 | 'status' => 1, 40 | 'gid' => 1 41 | ); 42 | $ci->db->insert('users', $user); 43 | 44 | if (!$ci->db->insert_id()) { 45 | return FALSE; 46 | } 47 | 48 | $adminProfile = array( 49 | 'user_id' => $ci->db->insert_id(), 50 | 'avatar' => 'media/users/az.jpg', 51 | 'address' => 'Roop Mahal, Prem gali, Kholi no. 420', 52 | 'city' => 'Excuse Me', 53 | 'state' => 'Please', 54 | 'country' => 'India', 55 | 'phone' => '9876543210', 56 | ); 57 | return $ci->db->insert('user_profiles', $adminProfile); 58 | } 59 | 60 | private function _install_dump() { 61 | 62 | $file = APPPATH . 'database/setup/install.sql'; 63 | 64 | if (!file_exists($file)) { 65 | exit('Could not load installation ("database/setup/install.sql") file: ' . $file); 66 | } 67 | $ci = & get_instance(); 68 | $queries = file_get_contents($file); 69 | $lines = explode(";", $queries); 70 | foreach ($lines as $query) { 71 | $query = trim($query); 72 | if (!empty($query)) { 73 | $ci->db->query("SET FOREIGN_KEY_CHECKS = 0"); 74 | $query = str_replace("%PREFIX%", $ci->db->dbprefix, $query); 75 | if (!$ci->db->query($query)) { 76 | show_error($query, 500, "SQL query Error"); 77 | } 78 | $ci->db->query("SET FOREIGN_KEY_CHECKS = 1"); 79 | } 80 | } 81 | 82 | return $this->_setAdminUser(); 83 | } 84 | 85 | } 86 | -------------------------------------------------------------------------------- /app/hooks/LanguageLoader.php: -------------------------------------------------------------------------------- 1 | segment(1); 10 | $is_admin = ($admin == 'administrator' || $admin == 'admin') ? true : false; 11 | $language = ($is_admin) ? admin_language() : site_language(); 12 | $side = ($is_admin) ? 'app' : 'site'; 13 | $user_lang_request = trim($ci->input->get('lang')); 14 | $user_lang = $ci->session->userdata('user_lang'); 15 | if (!empty($user_lang_request)) { 16 | $ci->session->set_userdata('user_lang', $user_lang_request); 17 | AZ::redirect(current_url()); 18 | } 19 | if (isset($user_lang) && !empty($user_lang) && !$is_admin ) { 20 | $ci->lang->load($side, $user_lang); 21 | } else { 22 | $ci->lang->load($side, $language); 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/language/english/site_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/language/hindi/site_lang.php: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/views/admin/blocks/contents/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/dashboard/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/dashboard/index.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 36 | 37 | 38 |
39 |
40 | 41 | 42 |
43 |
44 | 45 |
46 |
47 | 48 | 49 |
50 |
51 | 52 | -------------------------------------------------------------------------------- /app/views/admin/blocks/dashboard/recent-activity.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | 5 | 6 |

7 |
8 | 9 | 41 | 5) { ?> 42 | 52 | 53 |
-------------------------------------------------------------------------------- /app/views/admin/blocks/dashboard/widgets.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 | 8 | 9 |
10 |
11 |
12 |
13 |

14 |

15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 |
27 |
28 |
29 |
30 |

31 |

32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | 41 | 42 | 43 |
44 |
45 |
46 |
47 |

48 |

49 |
50 |
51 |
52 |
53 |
54 |
-------------------------------------------------------------------------------- /app/views/admin/blocks/default.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 19 |
20 |

21 |
22 |
23 |
24 | 25 | 26 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/header/message-navigation.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/blocks/header/notify-navigation.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/blocks/header/user-navigation.php: -------------------------------------------------------------------------------- 1 | 2 | 45 | 46 | -------------------------------------------------------------------------------- /app/views/admin/blocks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/login.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 | 'form', 'class' => 'panel')); 8 | ?> 9 |
10 | load->block('system-message', true); 12 | ?> 13 |
14 |
15 | 'username', 18 | 'id' => 'username', 19 | 'class' => 'form-control', 20 | 'maxlength' => '16', 21 | 'autofocus' => 'true', 22 | 'placeholder' => 'Username', 23 | ); 24 | echo form_input($username); 25 | ?> 26 | 27 | ', ''); ?> 28 |
29 |
30 |
31 | 'password', 34 | 'id' => 'password', 35 | 'class' => 'form-control', 36 | 'maxlength' => '20', 37 | 'placeholder' => 'Password', 38 | ); 39 | echo form_password($password); 40 | ?> 41 | 42 | ', ''); ?> 43 |
44 | 45 |
46 |
47 | 51 | 52 |
53 | 54 |
55 |
56 | 57 | 60 |
61 |
62 |
63 | -------------------------------------------------------------------------------- /app/views/admin/blocks/menus/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/menus/section-form.php: -------------------------------------------------------------------------------- 1 | 2 | 'saveSection')); ?> 3 | 10 | 31 | 42 | 43 | -------------------------------------------------------------------------------- /app/views/admin/blocks/messages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/messages/label-form.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /app/views/admin/blocks/messages/notifications.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 15 | 16 | 17 | 18 |
19 |
20 | 21 | 25 |
26 |
27 |
28 |
29 |
30 |
31 | created)); ?> 32 |
33 | 36 |
37 |

38 | subject; ?>

39 | body; ?> 40 |
41 |
42 | 43 | 44 | 45 |
46 |
47 |
48 |
49 | 53 |
54 | 55 |
56 | 59 | 60 | 63 | 70 | 71 |
72 |
73 | 74 | 75 |
76 |
77 | -------------------------------------------------------------------------------- /app/views/admin/blocks/settings/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/blocks/settings/section-form.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | 27 | 28 |
29 | 30 | 'saveSection')); ?> 31 |
32 |
33 |
34 | 'form-control', 38 | 'name' => 'title', 39 | 'value' => isset($section->title) ? $section->title : '', 40 | )); 41 | ?> 42 |
43 |
44 | access) ? explode(',', $section->access) : array(1), 'class="form-control"'); 47 | ?> 48 |
49 |
50 | 61 |
62 | 63 | 64 | 65 | 66 | 67 |
68 | 69 | 70 |
71 |
72 | -------------------------------------------------------------------------------- /app/views/admin/blocks/system-message.php: -------------------------------------------------------------------------------- 1 | 2 | 'saveAccessForm')); ?> 3 | 10 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /app/views/admin/blocks/users/group-form.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 27 | 28 |
29 | 30 | 'saveGroupForm')); ?> 31 |
32 |
33 | 34 |
35 | 'form-control', 39 | 'name' => 'name', 40 | 'value' => isset($group->name) ? $group->name : '', 41 | )); 42 | ?> 43 |
44 |
45 | access) ? $group->access : 2, 'class="form-control"'); 48 | ?> 49 |
50 | 51 |
52 | 63 |
64 | 65 |
66 |
67 |
-------------------------------------------------------------------------------- /app/views/admin/blocks/users/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/layouts/block-only.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/views/admin/layouts/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/views/admin/layouts/head.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 27 | 28 | 29 | 30 | 35 | 36 | <?php echo page_title(); ?> 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /app/views/admin/layouts/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 38 | 39 | 40 |
41 |
42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /app/views/admin/layouts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/admin/layouts/left-content.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /app/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /app/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /app/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /app/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /app/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /app/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/account/dashboard.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 |
5 | Hello, 6 | 7 |

From your Account Dashboard you have the ability to view a snapshot of your recent account activity and update your account information. 8 | Select your place below to view or edit information.

9 | 10 |
11 |

Account Information

12 |
13 |
14 |
15 |
16 |
17 | Profile 18 | 19 |
20 | 21 |

22 | 23 | ( )
24 | 25 |

26 |
27 |
28 | Account 29 |

30 |
31 | 32 |

33 |
34 | 35 |
36 |
37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/account/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/account/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

5 |
6 |
7 | 8 |
9 |
10 |

New Here?

11 |

Registration is free and easy!

12 |
    13 |
  • Faster Process
  • 14 |
  • Save profile & addresses book
  • 15 |
  • View and send messages to other users
  • 16 |
17 |
18 |
19 | 20 | 21 |
22 |
23 |

Already registered?

24 |

If you have an account with us, please log in.

25 |
26 | 'form')); 28 | ?> 29 | 30 |
31 |
32 | 33 | 34 | 35 | 'username', 38 | 'id' => 'username', 39 | 'class' => 'form-control', 40 | 'maxlength' => '16', 41 | 'autofocus' => 'true', 42 | 'placeholder' => 'Username', 43 | ); 44 | echo form_input($username); 45 | ?> 46 |
47 | 48 |
49 |
50 | 51 | 52 | 53 | 'password', 56 | 'id' => 'password', 57 | 'class' => 'form-control', 58 | 'maxlength' => '20', 59 | 'placeholder' => 'Password', 60 | ); 61 | echo form_password($password); 62 | ?> 63 |
64 | 65 |
66 |
67 | 70 | 71 |
72 | 73 |
74 | 75 | 78 |
79 |
80 |
81 |
82 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/account/login-box.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 'form', 'class' => 'panel')); 5 | ?> 6 |
7 | 8 |
9 |
10 | 11 | 12 | 13 | 'username', 16 | 'id' => 'username', 17 | 'class' => 'form-control', 18 | 'maxlength' => '16', 19 | 'autofocus' => 'true', 20 | 'placeholder' => __('Username',true), 21 | ); 22 | echo form_input($username); 23 | ?> 24 |
25 | 26 |
27 |
28 | 29 | 30 | 31 | 'password', 34 | 'id' => 'password', 35 | 'class' => 'form-control', 36 | 'maxlength' => '20', 37 | 'placeholder' => __('Password',true), 38 | ); 39 | echo form_password($password); 40 | ?> 41 |
42 | 43 |
44 |
45 | 49 | 50 |
51 | 52 |
53 |
54 | 55 | 58 |
59 |
-------------------------------------------------------------------------------- /app/views/front/default/blocks/account/password-box.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 'form', 'class' => 'panel')); 5 | ?> 6 |
7 |

8 |
9 |
10 | 11 |
12 |
13 | 14 | 15 | 16 | 'old_password', 19 | 'id' => 'old_password', 20 | 'class' => 'form-control', 21 | 'maxlength' => '20', 22 | 'placeholder' => 'Old Password', 23 | 'autocomplete' => 'off', 24 | ); 25 | echo form_password($password); 26 | ?> 27 |
28 | 29 |
30 |
31 | 32 | 33 | 34 | 'password', 37 | 'id' => 'password', 38 | 'class' => 'form-control', 39 | 'maxlength' => '20', 40 | 'placeholder' => 'New Password', 41 | ); 42 | echo form_password($password); 43 | ?> 44 |
45 |
46 |
47 | 48 | 49 | 50 | 'confirm_password', 53 | 'id' => 'confirm_password', 54 | 'class' => 'form-control', 55 | 'maxlength' => '20', 56 | 'placeholder' => 'Confirm Password', 57 | ); 58 | echo form_password($password); 59 | ?> 60 |
61 | 62 |
63 |
64 | 65 | 69 | 70 |
71 | 72 |
73 |
74 | 75 | 78 |
79 |
-------------------------------------------------------------------------------- /app/views/front/default/blocks/account/profile-menu.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 33 | 34 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/account/sidebar-menu.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 13 | 14 | 23 | 24 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/content/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/content/page.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | title)) ? $content->title : ''; ?> 4 |

5 | 6 |
7 | content)) ? $content->content : ''; 8 | ; ?> 9 |
10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/default.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/header/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/sidebar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/sidebar/left.php: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/views/front/default/blocks/system-message.php: -------------------------------------------------------------------------------- 1 | 2 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/layouts/block-only.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 |
8 |
9 | 10 | 11 |
12 |
13 | 14 |
15 |
16 |
17 | 18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /app/views/front/default/layouts/content.php: -------------------------------------------------------------------------------- 1 | 2 | 4 |
5 | 10 |
11 | 12 | -------------------------------------------------------------------------------- /app/views/front/default/layouts/head.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 38 | 39 | <?php echo page_title((isset($page_title)) ? $page_title : AZ::setting('global_meta_title')); ?> 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /app/views/front/default/layouts/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 |
8 |
9 |
10 | 11 |
12 |
13 | 27 | 28 |
29 |
30 | 31 |
32 |
33 | 42 |
43 | 44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | 52 |
-------------------------------------------------------------------------------- /app/views/front/default/layouts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/front/default/layouts/left-content.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 |
9 |
10 | 11 |
12 |
13 | 14 | 15 | 16 |
17 | 18 |
19 |
20 | 21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /app/views/front/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /app/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/views/page_not_found.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Welcome to CodeIgniter 6 | 7 | 66 | 67 | 68 | 69 |
70 |

WHOOPSIE! - Error 404!

71 | 72 |
73 | 74 |

you found this page, because you somehow found a page that doesn't exist. Weird huh?

75 | The page that you are looking for does not exist go back, friend, go back 76 |
77 | 78 |
79 | 80 | 81 | -------------------------------------------------------------------------------- /app/views/welcome_message.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Welcome to CodeIgniter 8 | 9 | 67 | 68 | 69 | 70 |
71 |

Welcome to CodeIgniter!

72 | 73 |
74 |

The page you are looking at is being generated dynamically by CodeIgniter.

75 | 76 |

If you would like to edit this page you'll find it located at:

77 | application/views/welcome_message.php 78 | 79 |

The corresponding controller for this page is found at:

80 | application/controllers/Welcome.php 81 | 82 |

If you are exploring CodeIgniter for the very first time, you should start by reading the User Guide.

83 |
84 | 85 | 86 |
87 | 88 | 89 | -------------------------------------------------------------------------------- /media/contents/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /media/contents/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /media/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /media/users/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/media/users/avatar.png -------------------------------------------------------------------------------- /media/users/az.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/media/users/az.jpg -------------------------------------------------------------------------------- /media/users/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/admin/css/ie.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Genral Styles ********************************************************/ 4 | 5 | -------------------------------------------------------------------------------- /skins/admin/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/admin/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /skins/admin/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /skins/admin/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /skins/admin/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /skins/admin/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /skins/admin/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /skins/admin/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /skins/admin/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /skins/admin/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/admin/images/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/alpha-horizontal.png -------------------------------------------------------------------------------- /skins/admin/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/alpha.png -------------------------------------------------------------------------------- /skins/admin/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/apple-touch-icon.png -------------------------------------------------------------------------------- /skins/admin/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/chosen-sprite.png -------------------------------------------------------------------------------- /skins/admin/images/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/chosen-sprite@2x.png -------------------------------------------------------------------------------- /skins/admin/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/favicon.ico -------------------------------------------------------------------------------- /skins/admin/images/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/hue-horizontal.png -------------------------------------------------------------------------------- /skins/admin/images/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/hue.png -------------------------------------------------------------------------------- /skins/admin/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/admin/images/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/saturation.png -------------------------------------------------------------------------------- /skins/admin/images/ui-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/admin/images/ui-icons.png -------------------------------------------------------------------------------- /skins/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/admin/scripts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/admin/scripts/jquery.flot.categories.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){var options={xaxis:{categories:null},yaxis:{categories:null}};function processRawData(plot,series,data,datapoints){var xCategories=series.xaxis.options.mode=="categories",yCategories=series.yaxis.options.mode=="categories";if(!(xCategories||yCategories))return;var format=datapoints.format;if(!format){var s=series;format=[];format.push({x:true,number:true,required:true});format.push({y:true,number:true,required:true});if(s.bars.show||s.lines.show&&s.lines.fill){var autoscale=!!(s.bars.show&&s.bars.zero||s.lines.show&&s.lines.zero);format.push({y:true,number:true,required:false,defaultValue:0,autoscale:autoscale});if(s.bars.horizontal){delete format[format.length-1].y;format[format.length-1].x=true}}datapoints.format=format}for(var m=0;mindex)index=categories[v];return index+1}function categoriesTickGenerator(axis){var res=[];for(var label in axis.categories){var v=axis.categories[label];if(v>=axis.min&&v<=axis.max)res.push([v,label])}res.sort(function(a,b){return a[0]-b[0]});return res}function setupCategoriesForAxis(series,axis,datapoints){if(series[axis].options.mode!="categories")return;if(!series[axis].categories){var c={},o=series[axis].options.categories||{};if($.isArray(o)){for(var i=0;i=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(":visible")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this);(function($){var options={};function init(plot){function onResize(){var placeholder=plot.getPlaceholder();if(placeholder.width()==0||placeholder.height()==0)return;plot.resize();plot.setupGrid();plot.draw()}function bindEvents(plot,eventHolder){plot.getPlaceholder().resize(onResize)}function shutdown(plot,eventHolder){plot.getPlaceholder().unbind("resize",onResize)}plot.hooks.bindEvents.push(bindEvents);plot.hooks.shutdown.push(shutdown)}$.plot.plugins.push({init:init,options:options,name:"resize",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /skins/front/default/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/front/default/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /skins/front/default/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /skins/front/default/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /skins/front/default/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /skins/front/default/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /skins/front/default/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /skins/front/default/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /skins/front/default/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /skins/front/default/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/front/default/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/images/apple-touch-icon.png -------------------------------------------------------------------------------- /skins/front/default/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/images/bg.png -------------------------------------------------------------------------------- /skins/front/default/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/skins/front/default/images/favicon.ico -------------------------------------------------------------------------------- /skins/front/default/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/front/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/front/default/scripts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/front/default/scripts/main.js: -------------------------------------------------------------------------------- 1 | 2 | (function($) { 3 | 4 | $(document).ready(function() { 5 | 6 | var modelObj = $(''); 7 | modelObj.on('hidden.bs.modal', function() { 8 | modelObj.remove(); 9 | }) 10 | 11 | $("a.ajax-box").each(function() { 12 | $(this).click(function(e) { 13 | e.preventDefault(); 14 | var href = $(this).attr('href'); 15 | modelObj.appendTo($("body")); 16 | modelObj.find(".modal-content").load(href, function() { 17 | modelObj.modal("toggle"); 18 | }); 19 | }); 20 | }); 21 | 22 | 23 | 24 | 25 | }); 26 | 27 | 28 | })(jQuery); -------------------------------------------------------------------------------- /skins/front/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /skins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- 1 | $class) 74 | { 75 | $this->$var =& load_class($class); 76 | } 77 | 78 | $this->load =& load_class('Loader', 'core'); 79 | $this->load->initialize(); 80 | log_message('info', 'Controller Class Initialized'); 81 | } 82 | 83 | // -------------------------------------------------------------------- 84 | 85 | /** 86 | * Get the CI singleton 87 | * 88 | * @static 89 | * @return object 90 | */ 91 | public static function &get_instance() 92 | { 93 | return self::$instance; 94 | } 95 | 96 | } 97 | -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- 1 | $key; 74 | } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- 1 | db->data_cache['db_names'])) 57 | { 58 | return $this->db->data_cache['db_names']; 59 | } 60 | 61 | return $this->db->data_cache['db_names'] = cubrid_list_dbs($this->db->conn_id); 62 | } 63 | 64 | // -------------------------------------------------------------------- 65 | 66 | /** 67 | * CUBRID Export 68 | * 69 | * @param array Preferences 70 | * @return mixed 71 | */ 72 | protected function _backup($params = array()) 73 | { 74 | // No SQL based support in CUBRID as of version 8.4.0. Database or 75 | // table backup can be performed using CUBRID Manager 76 | // database administration tool. 77 | return $this->db->display_error('db_unsupported_feature'); 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- 1 | db->hostname, $this->db->username, $this->db->password)) 58 | { 59 | $res = ibase_backup($service, $this->db->database, $filename.'.fbk'); 60 | 61 | // Close the service connection 62 | ibase_service_detach($service); 63 | return $res; 64 | } 65 | 66 | return FALSE; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 75 | } 76 | 77 | } 78 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 66 | } 67 | 68 | } 69 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 75 | } 76 | 77 | } 78 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azinkey/bootigniter/acbd942b1f99490c8a71cdc5ad471c1e914c92c3/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 67 | 68 | if ($for !== '') 69 | { 70 | $line = ''; 71 | } 72 | 73 | return $line; 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- 1 | ', '"', "'", '-'), 76 | array('&', '<', '>', '"', ''', '-'), 77 | $str 78 | ); 79 | 80 | // Decode the temp markers back to entities 81 | $str = preg_replace('/'.$temp.'(\d+);/', '&#\\1;', $str); 82 | 83 | if ($protect_all === TRUE) 84 | { 85 | return preg_replace('/'.$temp.'(\w+);/', '&\\1;', $str); 86 | } 87 | 88 | return $str; 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | --------------------------------------------------------------------------------