├── .gitignore
├── .htaccess
├── .travis.yml
├── Dockerfile
├── README.md
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── dx_auth.php
│ ├── foreign_chars.php
│ ├── hooks.php
│ ├── hybridauthlib.php
│ ├── index.html
│ ├── mimes.php
│ ├── pagination.php
│ ├── pd_admin.php
│ ├── pd_forms.php
│ ├── pd_seo.php
│ ├── pd_user.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── hauth.php
│ ├── home.php
│ └── index.html
├── core
│ ├── Admin_Controller.php
│ ├── MY_Controller.php
│ ├── MY_Loader.php
│ ├── MY_Router.php
│ ├── My_DModel.php
│ ├── User_Controller.php
│ └── index.html
├── errors
│ ├── error_404.php
│ ├── error_db.php
│ ├── error_general.php
│ ├── error_php.php
│ └── index.html
├── helpers
│ ├── MY_url_helper.php
│ ├── index.html
│ └── recaptcha_helper.php
├── hooks
│ └── index.html
├── index.html
├── language
│ └── english
│ │ ├── dx_auth_lang.php
│ │ ├── index.html
│ │ └── message_lang.php
├── libraries
│ ├── DX_Auth.php
│ ├── DX_Auth_Event.php
│ ├── HybridAuthLib.php
│ ├── MY_Composer.php
│ ├── MY_Form_validation.php
│ ├── app
│ │ ├── Formvalidator.php
│ │ ├── mapper.php
│ │ ├── paginationlib.php
│ │ └── userlib.php
│ ├── doctrine.php
│ ├── index.html
│ └── mysmarty.php
├── logs
│ ├── hybridauth.log
│ └── index.html
├── migrations
│ └── 001_Create_accounts.php
├── models
│ ├── Entities
│ │ ├── CiSessions.php
│ │ ├── DxLoginAttempts.php
│ │ ├── DxPermissions.php
│ │ ├── DxRoles.php
│ │ ├── DxUserAutologin.php
│ │ ├── DxUserProfile.php
│ │ ├── DxUserTemp.php
│ │ ├── DxUsers.php
│ │ └── PdMessage.php
│ ├── index.html
│ ├── messagemodel.php
│ ├── proxies
│ │ └── __CG__DxRoles.php
│ └── usermodel.php
├── modules
│ ├── admin
│ │ └── controllers
│ │ │ ├── home.php
│ │ │ ├── message.php
│ │ │ └── users.php
│ ├── api
│ │ └── controllers
│ │ │ └── member.php
│ ├── dx_auth
│ │ ├── controllers
│ │ │ ├── auth.php
│ │ │ ├── backend.php
│ │ │ └── index.html
│ │ ├── models
│ │ │ ├── index.html
│ │ │ ├── login_attempts.php
│ │ │ ├── permissions.php
│ │ │ ├── roles.php
│ │ │ ├── user_autologin.php
│ │ │ ├── user_profile.php
│ │ │ ├── user_temp.php
│ │ │ └── usersmodel.php
│ │ └── views
│ │ │ ├── auth
│ │ │ ├── cancel_account_form.php
│ │ │ ├── change_password_form.php
│ │ │ ├── forgot_password_form.php
│ │ │ ├── general_message.php
│ │ │ ├── login_form.php
│ │ │ ├── register_form.php
│ │ │ └── register_recaptcha_form.php
│ │ │ └── backend
│ │ │ ├── custom_permissions.php
│ │ │ ├── roles.php
│ │ │ ├── unactivated_users.php
│ │ │ ├── uri_permissions.php
│ │ │ └── users.php
│ └── myaccount
│ │ └── controllers
│ │ ├── logout.php
│ │ └── user.php
├── third_party
│ ├── MX
│ │ ├── Base.php
│ │ ├── Ci.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Modules.php
│ │ └── Router.php
│ └── index.html
└── views
│ ├── admin
│ ├── common
│ │ ├── footer.tpl
│ │ ├── header.tpl
│ │ ├── inc_meta.tpl
│ │ ├── inc_scripts.tpl
│ │ ├── inc_styles.tpl
│ │ ├── includes.tpl
│ │ └── status.tpl
│ └── modules
│ │ ├── home
│ │ └── index.tpl
│ │ ├── message
│ │ ├── add.tpl
│ │ ├── details.tpl
│ │ ├── edit.tpl
│ │ └── index.tpl
│ │ └── users
│ │ └── index.tpl
│ ├── common
│ ├── footer.tpl
│ ├── header.tpl
│ ├── inc_meta.tpl
│ ├── inc_scripts.tpl
│ ├── inc_styles.tpl
│ └── status.tpl
│ ├── index.html
│ ├── index.tpl
│ ├── member
│ ├── common
│ │ ├── footer.tpl
│ │ ├── header.tpl
│ │ ├── inc_meta.tpl
│ │ ├── inc_scripts.tpl
│ │ ├── inc_styles.tpl
│ │ └── status.tpl
│ └── modules
│ │ └── user
│ │ └── index.tpl
│ └── modules
│ ├── auth
│ ├── forgot_password.tpl
│ ├── hauth.tpl
│ ├── login.tpl
│ └── register.tpl
│ └── home
│ ├── contact.tpl
│ ├── error.tpl
│ └── index.tpl
├── bower.json
├── cli-config.php
├── composer.json
├── composer.lock
├── docker-files
├── .htaccess
├── create_mysql_admin_user.sh
├── database.php
├── makefile
└── run.sh
├── fig.yml
├── images
├── desktop_mobile.png
├── favicon.ico
├── logo.png
├── sign_in_fb.png
├── sign_in_tw.png
├── sign_up_fb.png
├── sign_up_tw.png
└── view-demo.jpg
├── index.php
├── license.txt
├── nbproject
├── project.properties
└── project.xml
├── phpunit.xml
├── scripts
├── index.js
├── libraries
│ ├── javascriptmvc
│ │ └── steal.production.js
│ └── jquery
│ │ └── plugins
│ │ └── jquery.form.js
└── modules
│ ├── auth
│ ├── hauth.js
│ └── register.js
│ └── home
│ ├── contact.js
│ └── index.js
├── styles
├── main
│ ├── images
│ │ └── msg_arrow.gif
│ ├── layout.css
│ └── styles.css
└── modules
│ └── home
│ └── index.css
├── system
├── .htaccess
├── core
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ └── index.html
├── database
│ ├── DB.php
│ ├── DB_active_rec.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers
│ │ ├── cubrid
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_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
│ │ ├── 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
│ │ └── 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
│ │ ├── 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
│ │ └── index.html
│ └── index.html
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Driver.php
│ ├── Email.php
│ ├── Encrypt.php
│ ├── Form_validation.php
│ ├── Ftp.php
│ ├── Image_lib.php
│ ├── Javascript.php
│ ├── Log.php
│ ├── Migration.php
│ ├── Pagination.php
│ ├── Parser.php
│ ├── Profiler.php
│ ├── Session.php
│ ├── Sha1.php
│ ├── Table.php
│ ├── Trackback.php
│ ├── Typography.php
│ ├── Unit_test.php
│ ├── Upload.php
│ ├── User_agent.php
│ ├── Xmlrpc.php
│ ├── Xmlrpcs.php
│ ├── Zip.php
│ ├── index.html
│ └── javascript
│ ├── Jquery.php
│ └── index.html
└── tests
└── Test.php
/.gitignore:
--------------------------------------------------------------------------------
1 | /application/cache/
2 | /application/logs/
3 | /application/models/proxies/
4 | /nbproject/
5 | /vendor/
6 | /bower_components/
7 | /deploy.php
8 | /makefile
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | '/dx_auth/auth/endpoint', 16 | 17 | "providers" => array ( 18 | // openid providers 19 | "OpenID" => array ( 20 | "enabled" => true 21 | ), 22 | 23 | "Yahoo" => array ( 24 | "enabled" => true, 25 | "keys" => array ( "id" => "", "secret" => "" ), 26 | ), 27 | 28 | "AOL" => array ( 29 | "enabled" => true 30 | ), 31 | 32 | "Google" => array ( 33 | "enabled" => true, 34 | "keys" => array ( "id" => "", "secret" => "" ), 35 | ), 36 | 37 | "Facebook" => array ( 38 | "enabled" => true, 39 | "keys" => array ( "id" => "my_id", "secret" => "my_secret" ), 40 | ), 41 | 42 | "Twitter" => array ( 43 | "enabled" => true, 44 | "keys" => array ( "key" => "my_key", "secret" => "my_secret" ) 45 | ), 46 | 47 | // windows live 48 | "Live" => array ( 49 | "enabled" => true, 50 | "keys" => array ( "id" => "", "secret" => "" ) 51 | ), 52 | 53 | "MySpace" => array ( 54 | "enabled" => true, 55 | "keys" => array ( "key" => "", "secret" => "" ) 56 | ), 57 | 58 | "LinkedIn" => array ( 59 | "enabled" => true, 60 | "keys" => array ( "key" => "", "secret" => "" ) 61 | ), 62 | 63 | "Foursquare" => array ( 64 | "enabled" => true, 65 | "keys" => array ( "id" => "", "secret" => "" ) 66 | ), 67 | ), 68 | 69 | // if you want to enable logging, set 'debug_mode' to true then provide a writable file by the web server on "debug_file" 70 | "debug_mode" => (ENVIRONMENT == 'development'), 71 | 72 | "debug_file" => APPPATH.'/logs/hybridauth.log', 73 | ); 74 | 75 | 76 | /* End of file hybridauthlib.php */ 77 | /* Location: ./application/config/hybridauthlib.php */ -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/pagination.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /application/config/pd_admin.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'field' => 'name', 6 | 'label' => 'Name', 7 | 'rules' => 'required' 8 | ), 9 | 'email' => array( 10 | 'field' => 'email', 11 | 'label' => 'Email', 12 | 'rules' => 'required|valid_email' 13 | ), 14 | 'subject' => array( 15 | 'field' => 'subject', 16 | 'label' => 'Subject', 17 | 'rules' => 'required' 18 | ), 19 | 'message' => array( 20 | 'field' => 'message', 21 | 'label' => 'Message', 22 | 'rules' => 'required' 23 | ) 24 | ); 25 | ?> -------------------------------------------------------------------------------- /application/config/pd_seo.php: -------------------------------------------------------------------------------- 1 | load->model("messagemodel"); 10 | $this->load->language("message"); 11 | } 12 | 13 | /** 14 | * Default function that will be executed unless another method secified 15 | * @return type View 16 | */ 17 | public function index() 18 | { 19 | return $this->view(); 20 | } 21 | 22 | /** 23 | * Is called when a 404 server error occurs 24 | * @return type View 25 | */ 26 | public function error() 27 | { 28 | return $this->view(); 29 | } 30 | 31 | /** 32 | * Controller For 'Contact Page' 33 | * @return type View 34 | */ 35 | public function contact() 36 | { 37 | try { 38 | $forms = $this->config->item("rules"); 39 | $this->data["contact_form"] = $forms["contact"]; 40 | 41 | if ($this->input->post('submit')) { 42 | 43 | $this->load->library("app/formvalidator"); 44 | $this->load->library("app/mapper"); 45 | 46 | if ($this->formvalidator->isValid("contact")) { 47 | 48 | $message = $this->mapper->formToMessage($this->input, $this->data["contact_form"], null); 49 | $this->messagemodel->save($message); 50 | 51 | $this->data["status"]->message = $this->lang->line("message_sent"); 52 | $this->data["status"]->success = TRUE; 53 | } else { 54 | $this->data["status"]->message = validation_errors(); 55 | $this->data["status"]->success = FALSE; 56 | } 57 | } 58 | 59 | return $this->view(); 60 | } catch (Exception $err) { 61 | log_message("error", $err->getMessage()); 62 | return show_error($err->getMessage()); 63 | } 64 | } 65 | 66 | /** 67 | * Secret function, to create/update database schema from doctrine entities 68 | * @param type $mode 69 | * @return type 70 | */ 71 | function db_schema($mode = "update") 72 | { 73 | try { 74 | $this->em = $this->doctrine->em; 75 | 76 | $tool = new \Doctrine\ORM\Tools\SchemaTool($this->em); 77 | 78 | $cmf = new \Doctrine\ORM\Tools\DisconnectedClassMetadataFactory(); 79 | $cmf->setEntityManager($this->em); 80 | $metadata = $cmf->getAllMetadata(); 81 | 82 | if ($mode == "create") { 83 | $queries = $tool->getCreateSchemaSql($metadata); 84 | } else { 85 | $queries = $tool->getUpdateSchemaSql($metadata); 86 | } 87 | echo "Total queries: " . count($queries) . "Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/core/Admin_Controller.php: -------------------------------------------------------------------------------- 1 | init_admin(); 16 | 17 | $this->load->config("pd_admin"); 18 | 19 | $this->load->library('pagination'); 20 | $this->load->library('app/paginationlib'); 21 | 22 | $this->page->noindex = true; 23 | } 24 | 25 | /** 26 | * Initialization for logged in admin. 27 | * Redirect if logged in user is not an admin 28 | */ 29 | function init_admin() 30 | { 31 | $this->init_user("admin/"); 32 | if (!$this->dx_auth->is_admin()) { 33 | redirect(base_url() . "myaccount/logout"); 34 | exit; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | init_user("member/"); 19 | $this->init_profile(); 20 | 21 | $this->load->config("pd_user"); 22 | 23 | $this->page->noindex = true; 24 | } 25 | 26 | function init_profile() 27 | { 28 | //Redirect user to basic profile page if profile doesn't exist 29 | 30 | $this->user = $this->usermodel->get($this->dx_auth->get_user_id()); 31 | 32 | if (empty($this->user)) { 33 | //If user info no found 34 | return redirect(base_url() . "myaccount/logout"); 35 | } 36 | 37 | $this->profile = $this->user->getUserProfile(); 38 | 39 | //Info of currently logged in user is succefully retrieved 40 | $this->data["user"] = $this->user; 41 | $this->data["profile"] = $this->profile; 42 | } 43 | } -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/dx_auth_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |