+
+
+ From fd283e71ba9b29b2086343b57e201ac1b1136e69 Mon Sep 17 00:00:00 2001 From: bagasteguhimani <62018312+bagasteguhimani@users.noreply.github.com> Date: Sat, 21 Mar 2020 22:44:20 +0700 Subject: [PATCH 1/5] Update autoload.php --- application/config/autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config/autoload.php b/application/config/autoload.php index 7cdc9013c11..47a3ba29d0e 100644 --- a/application/config/autoload.php +++ b/application/config/autoload.php @@ -89,7 +89,7 @@ | | $autoload['helper'] = array('url', 'file'); */ -$autoload['helper'] = array(); +$autoload['helper'] = array('url'); /* | ------------------------------------------------------------------- From a23472b64caab16d7b53486ca6f0c8c308bb4f96 Mon Sep 17 00:00:00 2001 From: bagasteguhimani <62018312+bagasteguhimani@users.noreply.github.com> Date: Sat, 21 Mar 2020 22:46:41 +0700 Subject: [PATCH 2/5] Create Login.php --- application/controllers/Login.php | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 application/controllers/Login.php diff --git a/application/controllers/Login.php b/application/controllers/Login.php new file mode 100644 index 00000000000..0820f76cac6 --- /dev/null +++ b/application/controllers/Login.php @@ -0,0 +1,11 @@ +load->view('loginView'); + } +} From e0d2c682a1c2686530593328ab895a63672a779d Mon Sep 17 00:00:00 2001 From: bagasteguhimani <62018312+bagasteguhimani@users.noreply.github.com> Date: Sat, 21 Mar 2020 22:47:26 +0700 Subject: [PATCH 3/5] Create loginView.php --- application/views/loginView.php | 66 +++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 application/views/loginView.php diff --git a/application/views/loginView.php b/application/views/loginView.php new file mode 100644 index 00000000000..fd4a629b8e8 --- /dev/null +++ b/application/views/loginView.php @@ -0,0 +1,66 @@ + + +
+
+
+
+ Directory access is forbidden.
+ + + diff --git a/application/application/config/autoload.php b/application/application/config/autoload.php new file mode 100644 index 00000000000..47a3ba29d0e --- /dev/null +++ b/application/application/config/autoload.php @@ -0,0 +1,135 @@ + 'ua'); +*/ +$autoload['libraries'] = array(); + +/* +| ------------------------------------------------------------------- +| Auto-load Drivers +| ------------------------------------------------------------------- +| These classes are located in system/libraries/ or in your +| application/libraries/ directory, but are also placed inside their +| own subdirectory and they extend the CI_Driver_Library class. They +| offer multiple interchangeable driver options. +| +| Prototype: +| +| $autoload['drivers'] = array('cache'); +| +| You can also supply an alternative property name to be assigned in +| the controller: +| +| $autoload['drivers'] = array('cache' => 'cch'); +| +*/ +$autoload['drivers'] = array(); + +/* +| ------------------------------------------------------------------- +| Auto-load Helper Files +| ------------------------------------------------------------------- +| Prototype: +| +| $autoload['helper'] = array('url', 'file'); +*/ +$autoload['helper'] = array('url'); + +/* +| ------------------------------------------------------------------- +| Auto-load Config files +| ------------------------------------------------------------------- +| Prototype: +| +| $autoload['config'] = array('config1', 'config2'); +| +| NOTE: This item is intended for use ONLY if you have created custom +| config files. Otherwise, leave it blank. +| +*/ +$autoload['config'] = array(); + +/* +| ------------------------------------------------------------------- +| Auto-load Language files +| ------------------------------------------------------------------- +| Prototype: +| +| $autoload['language'] = array('lang1', 'lang2'); +| +| NOTE: Do not include the "_lang" part of your file. For example +| "codeigniter_lang.php" would be referenced as array('codeigniter'); +| +*/ +$autoload['language'] = array(); + +/* +| ------------------------------------------------------------------- +| Auto-load Models +| ------------------------------------------------------------------- +| Prototype: +| +| $autoload['model'] = array('first_model', 'second_model'); +| +| You can also supply an alternative model name to be assigned +| in the controller: +| +| $autoload['model'] = array('first_model' => 'first'); +*/ +$autoload['model'] = array(); diff --git a/application/application/config/config.php b/application/application/config/config.php new file mode 100644 index 00000000000..10315220e04 --- /dev/null +++ b/application/application/config/config.php @@ -0,0 +1,523 @@ +]+$/i +| +| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!! +| +*/ +$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; + +/* +|-------------------------------------------------------------------------- +| Enable Query Strings +|-------------------------------------------------------------------------- +| +| By default CodeIgniter uses search-engine friendly segment based URLs: +| example.com/who/what/where/ +| +| You can optionally enable standard query string based URLs: +| example.com?who=me&what=something&where=here +| +| Options are: TRUE or FALSE (boolean) +| +| The other items let you set the query string 'words' that will +| invoke your controllers and its functions: +| example.com/index.php?c=controller&m=function +| +| Please note that some of the helpers won't work as expected when +| this feature is enabled, since CodeIgniter is designed primarily to +| use segment based URLs. +| +*/ +$config['enable_query_strings'] = FALSE; +$config['controller_trigger'] = 'c'; +$config['function_trigger'] = 'm'; +$config['directory_trigger'] = 'd'; + +/* +|-------------------------------------------------------------------------- +| Allow $_GET array +|-------------------------------------------------------------------------- +| +| By default CodeIgniter enables access to the $_GET array. If for some +| reason you would like to disable it, set 'allow_get_array' to FALSE. +| +| WARNING: This feature is DEPRECATED and currently available only +| for backwards compatibility purposes! +| +*/ +$config['allow_get_array'] = TRUE; + +/* +|-------------------------------------------------------------------------- +| Error Logging Threshold +|-------------------------------------------------------------------------- +| +| You can enable error logging by setting a threshold over zero. The +| threshold determines what gets logged. Threshold options are: +| +| 0 = Disables logging, Error logging TURNED OFF +| 1 = Error Messages (including PHP errors) +| 2 = Debug Messages +| 3 = Informational Messages +| 4 = All Messages +| +| You can also pass an array with threshold levels to show individual error types +| +| array(2) = Debug Messages, without Error Messages +| +| For a live site you'll usually only enable Errors (1) to be logged otherwise +| your log files will fill up very fast. +| +*/ +$config['log_threshold'] = 0; + +/* +|-------------------------------------------------------------------------- +| Error Logging Directory Path +|-------------------------------------------------------------------------- +| +| Leave this BLANK unless you would like to set something other than the default +| application/logs/ directory. Use a full server path with trailing slash. +| +*/ +$config['log_path'] = ''; + +/* +|-------------------------------------------------------------------------- +| Log File Extension +|-------------------------------------------------------------------------- +| +| The default filename extension for log files. The default 'php' allows for +| protecting the log files via basic scripting, when they are to be stored +| under a publicly accessible directory. +| +| Note: Leaving it blank will default to 'php'. +| +*/ +$config['log_file_extension'] = ''; + +/* +|-------------------------------------------------------------------------- +| Log File Permissions +|-------------------------------------------------------------------------- +| +| The file system permissions to be applied on newly created log files. +| +| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal +| integer notation (i.e. 0700, 0644, etc.) +*/ +$config['log_file_permissions'] = 0644; + +/* +|-------------------------------------------------------------------------- +| Date Format for Logs +|-------------------------------------------------------------------------- +| +| Each item that is logged has an associated date. You can use PHP date +| codes to set your own date formatting +| +*/ +$config['log_date_format'] = 'Y-m-d H:i:s'; + +/* +|-------------------------------------------------------------------------- +| Error Views Directory Path +|-------------------------------------------------------------------------- +| +| Leave this BLANK unless you would like to set something other than the default +| application/views/errors/ directory. Use a full server path with trailing slash. +| +*/ +$config['error_views_path'] = ''; + +/* +|-------------------------------------------------------------------------- +| Cache Directory Path +|-------------------------------------------------------------------------- +| +| Leave this BLANK unless you would like to set something other than the default +| application/cache/ directory. Use a full server path with trailing slash. +| +*/ +$config['cache_path'] = ''; + +/* +|-------------------------------------------------------------------------- +| Cache Include Query String +|-------------------------------------------------------------------------- +| +| Whether to take the URL query string into consideration when generating +| output cache files. Valid options are: +| +| FALSE = Disabled +| TRUE = Enabled, take all query parameters into account. +| Please be aware that this may result in numerous cache +| files generated for the same page over and over again. +| array('q') = Enabled, but only take into account the specified list +| of query parameters. +| +*/ +$config['cache_query_string'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Encryption Key +|-------------------------------------------------------------------------- +| +| If you use the Encryption class, you must set an encryption key. +| See the user guide for more info. +| +| https://codeigniter.com/user_guide/libraries/encryption.html +| +*/ +$config['encryption_key'] = ''; + +/* +|-------------------------------------------------------------------------- +| Session Variables +|-------------------------------------------------------------------------- +| +| 'sess_driver' +| +| The storage driver to use: files, database, redis, memcached +| +| 'sess_cookie_name' +| +| The session cookie name, must contain only [0-9a-z_-] characters +| +| 'sess_expiration' +| +| The number of SECONDS you want the session to last. +| Setting to 0 (zero) means expire when the browser is closed. +| +| 'sess_save_path' +| +| The location to save sessions to, driver dependent. +| +| For the 'files' driver, it's a path to a writable directory. +| WARNING: Only absolute paths are supported! +| +| For the 'database' driver, it's a table name. +| Please read up the manual for the format with other session drivers. +| +| IMPORTANT: You are REQUIRED to set a valid save path! +| +| 'sess_match_ip' +| +| Whether to match the user's IP address when reading the session data. +| +| WARNING: If you're using the database driver, don't forget to update +| your session table's PRIMARY KEY when changing this setting. +| +| 'sess_time_to_update' +| +| How many seconds between CI regenerating the session ID. +| +| 'sess_regenerate_destroy' +| +| Whether to destroy session data associated with the old session ID +| when auto-regenerating the session ID. When set to FALSE, the data +| will be later deleted by the garbage collector. +| +| Other session cookie settings are shared with the rest of the application, +| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here. +| +*/ +$config['sess_driver'] = 'files'; +$config['sess_cookie_name'] = 'ci_session'; +$config['sess_expiration'] = 7200; +$config['sess_save_path'] = NULL; +$config['sess_match_ip'] = FALSE; +$config['sess_time_to_update'] = 300; +$config['sess_regenerate_destroy'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Cookie Related Variables +|-------------------------------------------------------------------------- +| +| 'cookie_prefix' = Set a cookie name prefix if you need to avoid collisions +| 'cookie_domain' = Set to .your-domain.com for site-wide cookies +| 'cookie_path' = Typically will be a forward slash +| 'cookie_secure' = Cookie will only be set if a secure HTTPS connection exists. +| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript) +| +| Note: These settings (with the exception of 'cookie_prefix' and +| 'cookie_httponly') will also affect sessions. +| +*/ +$config['cookie_prefix'] = ''; +$config['cookie_domain'] = ''; +$config['cookie_path'] = '/'; +$config['cookie_secure'] = FALSE; +$config['cookie_httponly'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Standardize newlines +|-------------------------------------------------------------------------- +| +| Determines whether to standardize newline characters in input data, +| meaning to replace \r\n, \r, \n occurrences with the PHP_EOL value. +| +| WARNING: This feature is DEPRECATED and currently available only +| for backwards compatibility purposes! +| +*/ +$config['standardize_newlines'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Global XSS Filtering +|-------------------------------------------------------------------------- +| +| Determines whether the XSS filter is always active when GET, POST or +| COOKIE data is encountered +| +| WARNING: This feature is DEPRECATED and currently available only +| for backwards compatibility purposes! +| +*/ +$config['global_xss_filtering'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Cross Site Request Forgery +|-------------------------------------------------------------------------- +| Enables a CSRF cookie token to be set. When set to TRUE, token will be +| checked on a submitted form. If you are accepting user data, it is strongly +| recommended CSRF protection be enabled. +| +| 'csrf_token_name' = The token name +| 'csrf_cookie_name' = The cookie name +| 'csrf_expire' = The number in seconds the token should expire. +| 'csrf_regenerate' = Regenerate token on every submission +| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks +*/ +$config['csrf_protection'] = FALSE; +$config['csrf_token_name'] = 'csrf_test_name'; +$config['csrf_cookie_name'] = 'csrf_cookie_name'; +$config['csrf_expire'] = 7200; +$config['csrf_regenerate'] = TRUE; +$config['csrf_exclude_uris'] = array(); + +/* +|-------------------------------------------------------------------------- +| Output Compression +|-------------------------------------------------------------------------- +| +| Enables Gzip output compression for faster page loads. When enabled, +| the output class will test whether your server supports Gzip. +| Even if it does, however, not all browsers support compression +| so enable only if you are reasonably sure your visitors can handle it. +| +| Only used if zlib.output_compression is turned off in your php.ini. +| Please do not use it together with httpd-level output compression. +| +| VERY IMPORTANT: If you are getting a blank page when compression is enabled it +| means you are prematurely outputting something to your browser. It could +| even be a line of whitespace at the end of one of your scripts. For +| compression to work, nothing can be sent before the output buffer is called +| by the output class. Do not 'echo' any values with compression enabled. +| +*/ +$config['compress_output'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Master Time Reference +|-------------------------------------------------------------------------- +| +| Options are 'local' or any PHP supported timezone. This preference tells +| the system whether to use your server's local time as the master 'now' +| reference, or convert it to the configured one timezone. See the 'date +| helper' page of the user guide for information regarding date handling. +| +*/ +$config['time_reference'] = 'local'; + +/* +|-------------------------------------------------------------------------- +| Rewrite PHP Short Tags +|-------------------------------------------------------------------------- +| +| If your PHP installation does not have short tag support enabled CI +| can rewrite the tags on-the-fly, enabling you to utilize that syntax +| in your view files. Options are TRUE or FALSE (boolean) +| +| Note: You need to have eval() enabled for this to work. +| +*/ +$config['rewrite_short_tags'] = FALSE; + +/* +|-------------------------------------------------------------------------- +| Reverse Proxy IPs +|-------------------------------------------------------------------------- +| +| If your server is behind a reverse proxy, you must whitelist the proxy +| IP addresses from which CodeIgniter should trust headers such as +| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify +| the visitor's IP address. +| +| You can use both an array or a comma-separated list of proxy addresses, +| as well as specifying whole subnets. Here are a few examples: +| +| Comma-separated: '10.0.1.200,192.168.5.0/24' +| Array: array('10.0.1.200', '192.168.5.0/24') +*/ +$config['proxy_ips'] = ''; diff --git a/application/application/config/constants.php b/application/application/config/constants.php new file mode 100644 index 00000000000..18d3b4b76ff --- /dev/null +++ b/application/application/config/constants.php @@ -0,0 +1,85 @@ +db->last_query() and profiling of DB queries. +| When you run a query, with this setting set to TRUE (default), +| CodeIgniter will store the SQL statement for debugging purposes. +| However, this may cause high memory usage, especially if you run +| a lot of SQL queries ... disable this to avoid that problem. +| +| The $active_group variable lets you choose which connection group to +| make active. By default there is only one group (the 'default' group). +| +| The $query_builder variables lets you determine whether or not to load +| the query builder class. +*/ +$active_group = 'default'; +$query_builder = TRUE; + +$db['default'] = array( + 'dsn' => '', + 'hostname' => 'localhost', + 'username' => '', + 'password' => '', + 'database' => '', + 'dbdriver' => 'mysqli', + 'dbprefix' => '', + 'pconnect' => FALSE, + 'db_debug' => (ENVIRONMENT !== 'production'), + 'cache_on' => FALSE, + 'cachedir' => '', + 'char_set' => 'utf8', + 'dbcollat' => 'utf8_general_ci', + 'swap_pre' => '', + 'encrypt' => FALSE, + 'compress' => FALSE, + 'stricton' => FALSE, + 'failover' => array(), + 'save_queries' => TRUE +); diff --git a/application/application/config/doctypes.php b/application/application/config/doctypes.php new file mode 100644 index 00000000000..59a7991e3e3 --- /dev/null +++ b/application/application/config/doctypes.php @@ -0,0 +1,24 @@ + '', + 'xhtml1-strict' => '', + 'xhtml1-trans' => '', + 'xhtml1-frame' => '', + 'xhtml-basic11' => '', + 'html5' => '', + 'html4-strict' => '', + 'html4-trans' => '', + 'html4-frame' => '', + 'mathml1' => '', + 'mathml2' => '', + 'svg10' => '', + 'svg11' => '', + 'svg11-basic' => '', + 'svg11-tiny' => '', + 'xhtml-math-svg-xh' => '', + 'xhtml-math-svg-sh' => '', + 'xhtml-rdfa-1' => '', + 'xhtml-rdfa-2' => '' +); diff --git a/application/application/config/foreign_chars.php b/application/application/config/foreign_chars.php new file mode 100644 index 00000000000..0231f3592eb --- /dev/null +++ b/application/application/config/foreign_chars.php @@ -0,0 +1,114 @@ + 'ae', + '/ö|œ/' => 'oe', + '/ü/' => 'ue', + '/Ä/' => 'Ae', + '/Ü/' => 'Ue', + '/Ö/' => 'Oe', + '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A', + '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a', + '/Б/' => 'B', + '/б/' => 'b', + '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', + '/ç|ć|ĉ|ċ|č/' => 'c', + '/Д|Δ/' => 'D', + '/д|δ/' => 'd', + '/Ð|Ď|Đ/' => 'Dj', + '/ð|ď|đ/' => 'dj', + '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E', + '/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e', + '/Ф/' => 'F', + '/ф/' => 'f', + '/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G', + '/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g', + '/Ĥ|Ħ/' => 'H', + '/ĥ|ħ/' => 'h', + '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I', + '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i', + '/Ĵ/' => 'J', + '/ĵ/' => 'j', + '/Θ/' => 'TH', + '/θ/' => 'th', + '/Ķ|Κ|К/' => 'K', + '/ķ|κ|к/' => 'k', + '/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L', + '/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l', + '/М/' => 'M', + '/м/' => 'm', + '/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N', + '/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n', + '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O', + '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o', + '/П/' => 'P', + '/п/' => 'p', + '/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R', + '/ŕ|ŗ|ř|ρ|р/' => 'r', + '/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S', + '/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's', + '/Ț|Ţ|Ť|Ŧ|Τ|Т/' => 'T', + '/ț|ţ|ť|ŧ|τ|т/' => 't', + '/Þ|þ/' => 'th', + '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U', + '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u', + '/Ƴ|Ɏ|Ỵ|Ẏ|Ӳ|Ӯ|Ў|Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y', + '/ẙ|ʏ|ƴ|ɏ|ỵ|ẏ|ӳ|ӯ|ў|ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y', + '/В/' => 'V', + '/в/' => 'v', + '/Ŵ/' => 'W', + '/ŵ/' => 'w', + '/Φ/' => 'F', + '/φ/' => 'f', + '/Χ/' => 'CH', + '/χ/' => 'ch', + '/Ź|Ż|Ž|Ζ|З/' => 'Z', + '/ź|ż|ž|ζ|з/' => 'z', + '/Æ|Ǽ/' => 'AE', + '/ß/' => 'ss', + '/IJ/' => 'IJ', + '/ij/' => 'ij', + '/Œ/' => 'OE', + '/ƒ/' => 'f', + '/Ξ/' => 'KS', + '/ξ/' => 'ks', + '/Π/' => 'P', + '/π/' => 'p', + '/Β/' => 'V', + '/β/' => 'v', + '/Μ/' => 'M', + '/μ/' => 'm', + '/Ψ/' => 'PS', + '/ψ/' => 'ps', + '/Ё/' => 'Yo', + '/ё/' => 'yo', + '/Є/' => 'Ye', + '/є/' => 'ye', + '/Ї/' => 'Yi', + '/Ж/' => 'Zh', + '/ж/' => 'zh', + '/Х/' => 'Kh', + '/х/' => 'kh', + '/Ц/' => 'Ts', + '/ц/' => 'ts', + '/Ч/' => 'Ch', + '/ч/' => 'ch', + '/Ш/' => 'Sh', + '/ш/' => 'sh', + '/Щ/' => 'Shch', + '/щ/' => 'shch', + '/Ъ|ъ|Ь|ь/' => '', + '/Ю/' => 'Yu', + '/ю/' => 'yu', + '/Я/' => 'Ya', + '/я/' => 'ya' +); diff --git a/application/application/config/hooks.php b/application/application/config/hooks.php new file mode 100644 index 00000000000..a8f38a5dc92 --- /dev/null +++ b/application/application/config/hooks.php @@ -0,0 +1,13 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/config/memcached.php b/application/application/config/memcached.php new file mode 100644 index 00000000000..5c23b39c18a --- /dev/null +++ b/application/application/config/memcached.php @@ -0,0 +1,19 @@ + array( + 'hostname' => '127.0.0.1', + 'port' => '11211', + 'weight' => '1', + ), +); diff --git a/application/application/config/migration.php b/application/application/config/migration.php new file mode 100644 index 00000000000..4b585a65c10 --- /dev/null +++ b/application/application/config/migration.php @@ -0,0 +1,84 @@ +migration->current() this is the version that schema will +| be upgraded / downgraded to. +| +*/ +$config['migration_version'] = 0; + +/* +|-------------------------------------------------------------------------- +| Migrations Path +|-------------------------------------------------------------------------- +| +| Path to your migrations folder. +| Typically, it will be within your application path. +| Also, writing permission is required within the migrations path. +| +*/ +$config['migration_path'] = APPPATH.'migrations/'; diff --git a/application/application/config/mimes.php b/application/application/config/mimes.php new file mode 100644 index 00000000000..7aa5c9e4e70 --- /dev/null +++ b/application/application/config/mimes.php @@ -0,0 +1,184 @@ + array('application/mac-binhex40', 'application/mac-binhex', 'application/x-binhex40', 'application/x-mac-binhex40'), + 'cpt' => 'application/mac-compactpro', + 'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel', 'text/plain'), + 'bin' => array('application/macbinary', 'application/mac-binary', 'application/octet-stream', 'application/x-binary', 'application/x-macbinary'), + 'dms' => 'application/octet-stream', + 'lha' => 'application/octet-stream', + 'lzh' => 'application/octet-stream', + 'exe' => array('application/octet-stream', 'application/x-msdownload'), + 'class' => 'application/octet-stream', + 'psd' => array('application/x-photoshop', 'image/vnd.adobe.photoshop'), + 'so' => 'application/octet-stream', + 'sea' => 'application/octet-stream', + 'dll' => 'application/octet-stream', + 'oda' => 'application/oda', + 'pdf' => array('application/pdf', 'application/force-download', 'application/x-download', 'binary/octet-stream'), + 'ai' => array('application/pdf', 'application/postscript'), + 'eps' => 'application/postscript', + 'ps' => 'application/postscript', + 'smi' => 'application/smil', + 'smil' => 'application/smil', + 'mif' => 'application/vnd.mif', + 'xls' => array('application/vnd.ms-excel', 'application/msexcel', 'application/x-msexcel', 'application/x-ms-excel', 'application/x-excel', 'application/x-dos_ms_excel', 'application/xls', 'application/x-xls', 'application/excel', 'application/download', 'application/vnd.ms-office', 'application/msword'), + 'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint', 'application/vnd.ms-office', 'application/msword'), + 'pptx' => array('application/vnd.openxmlformats-officedocument.presentationml.presentation', 'application/x-zip', 'application/zip'), + 'wbxml' => 'application/wbxml', + 'wmlc' => 'application/wmlc', + 'dcr' => 'application/x-director', + 'dir' => 'application/x-director', + 'dxr' => 'application/x-director', + 'dvi' => 'application/x-dvi', + 'gtar' => 'application/x-gtar', + 'gz' => 'application/x-gzip', + 'gzip' => 'application/x-gzip', + 'php' => array('application/x-httpd-php', 'application/php', 'application/x-php', 'text/php', 'text/x-php', 'application/x-httpd-php-source'), + 'php4' => 'application/x-httpd-php', + 'php3' => 'application/x-httpd-php', + 'phtml' => 'application/x-httpd-php', + 'phps' => 'application/x-httpd-php-source', + 'js' => array('application/x-javascript', 'text/plain'), + 'swf' => 'application/x-shockwave-flash', + 'sit' => 'application/x-stuffit', + 'tar' => 'application/x-tar', + 'tgz' => array('application/x-tar', 'application/x-gzip-compressed'), + 'z' => 'application/x-compress', + 'xhtml' => 'application/xhtml+xml', + 'xht' => 'application/xhtml+xml', + 'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed', 'application/s-compressed', 'multipart/x-zip'), + 'rar' => array('application/x-rar', 'application/rar', 'application/x-rar-compressed'), + 'mid' => 'audio/midi', + 'midi' => 'audio/midi', + 'mpga' => 'audio/mpeg', + 'mp2' => 'audio/mpeg', + 'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'), + 'aif' => array('audio/x-aiff', 'audio/aiff'), + 'aiff' => array('audio/x-aiff', 'audio/aiff'), + 'aifc' => 'audio/x-aiff', + 'ram' => 'audio/x-pn-realaudio', + 'rm' => 'audio/x-pn-realaudio', + 'rpm' => 'audio/x-pn-realaudio-plugin', + 'ra' => 'audio/x-realaudio', + 'rv' => 'video/vnd.rn-realvideo', + 'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'), + 'bmp' => array('image/bmp', 'image/x-bmp', 'image/x-bitmap', 'image/x-xbitmap', 'image/x-win-bitmap', 'image/x-windows-bmp', 'image/ms-bmp', 'image/x-ms-bmp', 'application/bmp', 'application/x-bmp', 'application/x-win-bitmap'), + 'gif' => 'image/gif', + 'jpeg' => array('image/jpeg', 'image/pjpeg'), + 'jpg' => array('image/jpeg', 'image/pjpeg'), + 'jpe' => array('image/jpeg', 'image/pjpeg'), + 'jp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'j2k' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'jpf' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'jpg2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'jpx' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'jpm' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'mj2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'mjp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'), + 'png' => array('image/png', 'image/x-png'), + 'tiff' => 'image/tiff', + 'tif' => 'image/tiff', + 'css' => array('text/css', 'text/plain'), + 'html' => array('text/html', 'text/plain'), + 'htm' => array('text/html', 'text/plain'), + 'shtml' => array('text/html', 'text/plain'), + 'txt' => 'text/plain', + 'text' => 'text/plain', + 'log' => array('text/plain', 'text/x-log'), + 'rtx' => 'text/richtext', + 'rtf' => 'text/rtf', + 'xml' => array('application/xml', 'text/xml', 'text/plain'), + 'xsl' => array('application/xml', 'text/xsl', 'text/xml'), + 'mpeg' => 'video/mpeg', + 'mpg' => 'video/mpeg', + 'mpe' => 'video/mpeg', + 'qt' => 'video/quicktime', + 'mov' => 'video/quicktime', + 'avi' => array('video/x-msvideo', 'video/msvideo', 'video/avi', 'application/x-troff-msvideo'), + 'movie' => 'video/x-sgi-movie', + 'doc' => array('application/msword', 'application/vnd.ms-office'), + 'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword', 'application/x-zip'), + 'dot' => array('application/msword', 'application/vnd.ms-office'), + 'dotx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword'), + 'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'), + 'word' => array('application/msword', 'application/octet-stream'), + 'xl' => 'application/excel', + 'eml' => 'message/rfc822', + 'json' => array('application/json', 'text/json'), + 'pem' => array('application/x-x509-user-cert', 'application/x-pem-file', 'application/octet-stream'), + 'p10' => array('application/x-pkcs10', 'application/pkcs10'), + 'p12' => 'application/x-pkcs12', + 'p7a' => 'application/x-pkcs7-signature', + 'p7c' => array('application/pkcs7-mime', 'application/x-pkcs7-mime'), + 'p7m' => array('application/pkcs7-mime', 'application/x-pkcs7-mime'), + 'p7r' => 'application/x-pkcs7-certreqresp', + 'p7s' => 'application/pkcs7-signature', + 'crt' => array('application/x-x509-ca-cert', 'application/x-x509-user-cert', 'application/pkix-cert'), + 'crl' => array('application/pkix-crl', 'application/pkcs-crl'), + 'der' => 'application/x-x509-ca-cert', + 'kdb' => 'application/octet-stream', + 'pgp' => 'application/pgp', + 'gpg' => 'application/gpg-keys', + 'sst' => 'application/octet-stream', + 'csr' => 'application/octet-stream', + 'rsa' => 'application/x-pkcs7', + 'cer' => array('application/pkix-cert', 'application/x-x509-ca-cert'), + '3g2' => 'video/3gpp2', + '3gp' => array('video/3gp', 'video/3gpp'), + 'mp4' => 'video/mp4', + 'm4a' => 'audio/x-m4a', + 'f4v' => array('video/mp4', 'video/x-f4v'), + 'flv' => 'video/x-flv', + 'webm' => 'video/webm', + 'aac' => array('audio/x-aac', 'audio/aac'), + 'm4u' => 'application/vnd.mpegurl', + 'm3u' => 'text/plain', + 'xspf' => 'application/xspf+xml', + 'vlc' => 'application/videolan', + 'wmv' => array('video/x-ms-wmv', 'video/x-ms-asf'), + 'au' => 'audio/x-au', + 'ac3' => 'audio/ac3', + 'flac' => 'audio/x-flac', + 'ogg' => array('audio/ogg', 'video/ogg', 'application/ogg'), + 'kmz' => array('application/vnd.google-earth.kmz', 'application/zip', 'application/x-zip'), + 'kml' => array('application/vnd.google-earth.kml+xml', 'application/xml', 'text/xml'), + 'ics' => 'text/calendar', + 'ical' => 'text/calendar', + 'zsh' => 'text/x-scriptzsh', + '7z' => array('application/x-7z-compressed', 'application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip'), + '7zip' => array('application/x-7z-compressed', 'application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip'), + 'cdr' => array('application/cdr', 'application/coreldraw', 'application/x-cdr', 'application/x-coreldraw', 'image/cdr', 'image/x-cdr', 'zz-application/zz-winassoc-cdr'), + 'wma' => array('audio/x-ms-wma', 'video/x-ms-asf'), + 'jar' => array('application/java-archive', 'application/x-java-application', 'application/x-jar', 'application/x-compressed'), + 'svg' => array('image/svg+xml', 'application/xml', 'text/xml'), + 'vcf' => 'text/x-vcard', + 'srt' => array('text/srt', 'text/plain'), + 'vtt' => array('text/vtt', 'text/plain'), + 'ico' => array('image/x-icon', 'image/x-ico', 'image/vnd.microsoft.icon'), + 'odc' => 'application/vnd.oasis.opendocument.chart', + 'otc' => 'application/vnd.oasis.opendocument.chart-template', + 'odf' => 'application/vnd.oasis.opendocument.formula', + 'otf' => 'application/vnd.oasis.opendocument.formula-template', + 'odg' => 'application/vnd.oasis.opendocument.graphics', + 'otg' => 'application/vnd.oasis.opendocument.graphics-template', + 'odi' => 'application/vnd.oasis.opendocument.image', + 'oti' => 'application/vnd.oasis.opendocument.image-template', + 'odp' => 'application/vnd.oasis.opendocument.presentation', + 'otp' => 'application/vnd.oasis.opendocument.presentation-template', + 'ods' => 'application/vnd.oasis.opendocument.spreadsheet', + 'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template', + 'odt' => 'application/vnd.oasis.opendocument.text', + 'odm' => 'application/vnd.oasis.opendocument.text-master', + 'ott' => 'application/vnd.oasis.opendocument.text-template', + 'oth' => 'application/vnd.oasis.opendocument.text-web' +); diff --git a/application/application/config/profiler.php b/application/application/config/profiler.php new file mode 100644 index 00000000000..3db22e39c0b --- /dev/null +++ b/application/application/config/profiler.php @@ -0,0 +1,14 @@ + my_controller/index +| my-controller/my-method -> my_controller/my_method +*/ +$route['default_controller'] = 'welcome'; +$route['404_override'] = ''; +$route['translate_uri_dashes'] = FALSE; diff --git a/application/application/config/smileys.php b/application/application/config/smileys.php new file mode 100644 index 00000000000..abf9a898dde --- /dev/null +++ b/application/application/config/smileys.php @@ -0,0 +1,64 @@ + array('grin.gif', '19', '19', 'grin'), + ':lol:' => array('lol.gif', '19', '19', 'LOL'), + ':cheese:' => array('cheese.gif', '19', '19', 'cheese'), + ':)' => array('smile.gif', '19', '19', 'smile'), + ';-)' => array('wink.gif', '19', '19', 'wink'), + ';)' => array('wink.gif', '19', '19', 'wink'), + ':smirk:' => array('smirk.gif', '19', '19', 'smirk'), + ':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'), + ':-S' => array('confused.gif', '19', '19', 'confused'), + ':wow:' => array('surprise.gif', '19', '19', 'surprised'), + ':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'), + ':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'), + '%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'), + ';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'), + ':P' => array('raspberry.gif', '19', '19', 'raspberry'), + ':blank:' => array('blank.gif', '19', '19', 'blank stare'), + ':long:' => array('longface.gif', '19', '19', 'long face'), + ':ohh:' => array('ohh.gif', '19', '19', 'ohh'), + ':grrr:' => array('grrr.gif', '19', '19', 'grrr'), + ':gulp:' => array('gulp.gif', '19', '19', 'gulp'), + '8-/' => array('ohoh.gif', '19', '19', 'oh oh'), + ':down:' => array('downer.gif', '19', '19', 'downer'), + ':red:' => array('embarrassed.gif', '19', '19', 'red face'), + ':sick:' => array('sick.gif', '19', '19', 'sick'), + ':shut:' => array('shuteye.gif', '19', '19', 'shut eye'), + ':-/' => array('hmm.gif', '19', '19', 'hmmm'), + '>:(' => array('mad.gif', '19', '19', 'mad'), + ':mad:' => array('mad.gif', '19', '19', 'mad'), + '>:-(' => array('angry.gif', '19', '19', 'angry'), + ':angry:' => array('angry.gif', '19', '19', 'angry'), + ':zip:' => array('zip.gif', '19', '19', 'zipper'), + ':kiss:' => array('kiss.gif', '19', '19', 'kiss'), + ':ahhh:' => array('shock.gif', '19', '19', 'shock'), + ':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'), + ':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'), + ':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'), + ':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'), + ':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'), + ':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'), + ':vampire:' => array('vampire.gif', '19', '19', 'vampire'), + ':snake:' => array('snake.gif', '19', '19', 'snake'), + ':exclaim:' => array('exclaim.gif', '19', '19', 'exclaim'), + ':question:' => array('question.gif', '19', '19', 'question') + +); diff --git a/application/application/config/user_agents.php b/application/application/config/user_agents.php new file mode 100644 index 00000000000..c4429aac55f --- /dev/null +++ b/application/application/config/user_agents.php @@ -0,0 +1,221 @@ + 'Windows 10', + 'windows nt 6.3' => 'Windows 8.1', + 'windows nt 6.2' => 'Windows 8', + 'windows nt 6.1' => 'Windows 7', + 'windows nt 6.0' => 'Windows Vista', + 'windows nt 5.2' => 'Windows 2003', + 'windows nt 5.1' => 'Windows XP', + 'windows nt 5.0' => 'Windows 2000', + 'windows nt 4.0' => 'Windows NT 4.0', + 'winnt4.0' => 'Windows NT 4.0', + 'winnt 4.0' => 'Windows NT', + 'winnt' => 'Windows NT', + 'windows 98' => 'Windows 98', + 'win98' => 'Windows 98', + 'windows 95' => 'Windows 95', + 'win95' => 'Windows 95', + 'windows phone' => 'Windows Phone', + 'windows' => 'Unknown Windows OS', + 'android' => 'Android', + 'blackberry' => 'BlackBerry', + 'iphone' => 'iOS', + 'ipad' => 'iOS', + 'ipod' => 'iOS', + 'os x' => 'Mac OS X', + 'ppc mac' => 'Power PC Mac', + 'freebsd' => 'FreeBSD', + 'ppc' => 'Macintosh', + 'linux' => 'Linux', + 'debian' => 'Debian', + 'sunos' => 'Sun Solaris', + 'beos' => 'BeOS', + 'apachebench' => 'ApacheBench', + 'aix' => 'AIX', + 'irix' => 'Irix', + 'osf' => 'DEC OSF', + 'hp-ux' => 'HP-UX', + 'netbsd' => 'NetBSD', + 'bsdi' => 'BSDi', + 'openbsd' => 'OpenBSD', + 'gnu' => 'GNU/Linux', + 'unix' => 'Unknown Unix OS', + 'symbian' => 'Symbian OS' +); + + +// The order of this array should NOT be changed. Many browsers return +// multiple browser types so we want to identify the sub-type first. +$browsers = array( + 'OPR' => 'Opera', + 'Flock' => 'Flock', + 'Edge' => 'Edge', + 'Chrome' => 'Chrome', + // Opera 10+ always reports Opera/9.80 and appends Version/Directory access is forbidden.
+ + + diff --git a/application/application/controllers/login.php b/application/application/controllers/login.php new file mode 100644 index 00000000000..3e72196c53f --- /dev/null +++ b/application/application/controllers/login.php @@ -0,0 +1,10 @@ +load->view('view_login'); + } +} \ No newline at end of file diff --git a/application/application/core/index.html b/application/application/core/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/core/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/helpers/index.html b/application/application/helpers/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/helpers/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/hooks/index.html b/application/application/hooks/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/hooks/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/index.html b/application/application/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/language/english/index.html b/application/application/language/english/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/language/english/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/language/index.html b/application/application/language/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/language/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/libraries/index.html b/application/application/libraries/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/libraries/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/logs/index.html b/application/application/logs/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/logs/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/models/index.html b/application/application/models/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/models/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/third_party/index.html b/application/application/third_party/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/third_party/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/views/errors/cli/error_404.php b/application/application/views/errors/cli/error_404.php new file mode 100644 index 00000000000..6984b61e993 --- /dev/null +++ b/application/application/views/errors/cli/error_404.php @@ -0,0 +1,8 @@ + + +An uncaught Exception was encountered + +Type: +Message: +Filename: getFile(), "\n"; ?> +Line Number: getLine(); ?> + + + +Backtrace: +getTrace() as $error): ?> + + File: + Line: + Function: + + + + diff --git a/application/application/views/errors/cli/error_general.php b/application/application/views/errors/cli/error_general.php new file mode 100644 index 00000000000..6984b61e993 --- /dev/null +++ b/application/application/views/errors/cli/error_general.php @@ -0,0 +1,8 @@ + + +A PHP Error was encountered + +Severity: +Message: +Filename: +Line Number: + + + +Backtrace: + + + File: + Line: + Function: + + + + diff --git a/application/application/views/errors/cli/index.html b/application/application/views/errors/cli/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/views/errors/cli/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/views/errors/html/error_404.php b/application/application/views/errors/html/error_404.php new file mode 100644 index 00000000000..756ea9d6209 --- /dev/null +++ b/application/application/views/errors/html/error_404.php @@ -0,0 +1,64 @@ + + + + +Type:
+Message:
+Filename: getFile(); ?>
+Line Number: getLine(); ?>
+ + + +Backtrace:
+ getTrace() as $error): ?> + + + +
+ File:
+ Line:
+ Function:
+
Severity:
+Message:
+Filename:
+Line Number:
+ + + +Backtrace:
+ + + + +
+ File:
+ Line:
+ Function:
+
Directory access is forbidden.
+ + + diff --git a/application/application/views/errors/index.html b/application/application/views/errors/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/views/errors/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/views/index.html b/application/application/views/index.html new file mode 100644 index 00000000000..b702fbc3967 --- /dev/null +++ b/application/application/views/index.html @@ -0,0 +1,11 @@ + + + +Directory access is forbidden.
+ + + diff --git a/application/application/views/view_login.php b/application/application/views/view_login.php new file mode 100644 index 00000000000..28bb4abcd92 --- /dev/null +++ b/application/application/views/view_login.php @@ -0,0 +1,66 @@ + + + +
+
+
+ The page you are looking at is being generated dynamically by CodeIgniter.
+ +If you would like to edit this page you'll find it located at:
+application/views/welcome_message.php
+
+ The corresponding controller for this page is found at:
+application/controllers/Welcome.php
+
+ If you are exploring CodeIgniter for the very first time, you should start by reading the User Guide.
+z_fB|MXWi&0CD(D8B12-GZ~}ahS)O!!F5v+ANZf+|
zxb*qyF{rG!Xk@uHGMyofjS{Y07m}AqRuSBkFp^*N)qkYr94mK;hrRa9d6EO8TdciQ
z-a+|p++)F%4QczM3&iIZi0#g85GZp=k0O@yCdH-1&`yHkU&9IGNUI&wl?a7|O>HC(
z>m^}gal+Pz_Ag}>)#RoI=tWQ ZAmCznn+a8ZC{v!YiD^RV)x2N8Uj%&uqN>{<`&K_wzP=g1w0eP>U5*DtA^+|+
z=w}?sxDLMdFnnbuhS=lp`?q(f3%{u%mExA03ouHg9K(1_AP~T~9T|tsj+Y2Q%R0rR
z@6NIcef%f5AQJD^(pdg4*15U5F&^>qV`1n|0m80H^gt3nfr64>bInxjedSCuU^%|l
zj8HR0T|n`umxrwO%C^m7j)aVwm|(|4LhWD!dv82zjghrm*_0$ugNTz@pnA-aCuP=T
z>a3$juY1^n=pKMk`z;dtGBflfIIihN?`Z$`)X
z&9k&r)N}~5<(R(yGR)yG+%=5Qt#>E2o8H{dSL{b^b^iq!vOh648p )6y-~?N
z=lkK2lQanv_u5zGQgB;kNerlF*ugrb#1(!!*gFNS1*u<#YBzEh+OJBM)_2A<*JO2a
zy8B@lX3M5F?ge5W{Wg@x8hb?C@wi#7=1~A!7zyclzk2kQ=TZOqvJ-f}jm_>fHLY_u
zs1y)OAdGxBKaKQB6u7CwQX_Yw9q=sY*3-*wcv+l*ACiBQxq}J>33jIw
$v_$T|QRaf%CXd}0LDb5@dW#Adz^p~VrneAAiGF8+JWG!QHPWw4 zzygUdw1KDSm21cBz=ABx1>KCS$|MmjS<7c@q1;H}vD6l05W`X>F+{q?X4=r=P_bl* zJ2Zw4v!3!sw%8!?U9ikb`z@9+Sp~L6&3bZ?7WslZ@tq{vEqyaWR6n;ry3#`-w{x$2 z5-M6yN5u97#;|p^KCe|YX)PB4tqu~6-GK-9^y9x6@2H$#B%iuZ!E~+*HP0demKe9B zAkZUR$1E-d=u{ZJJh?Z`V-LomVd&&N%7fksft>YeQ=V+rrjbg4bsS}1B$D$&7vhrAwOns3d390gvqpn^@CMqMwc6Y@D)>No?oA77t!q5^Gkd&wf4Q!%{-aY;1sk zLVYuhrO1PD%l52Re%EA(EFBuS12CZ>-UMoUNuE+GDUFYByfOCUVbK>ZW6AsHIfea0 z<9sSJ50{`gON!KOZ4q~5@W_0*noW{)@l{8B#fT<8t^x75#Pvs{fO~z>>J1G&tWM33 zYakf{ANmfY4@HLO-M4W``Du-q$y3RS^MWqG5tu>5%|8fe12`1qp35*J1uoU3(Ep%4 z(TeEewlF;O5j*mNM~omv5eW1o1Zj`Dci%o7KYQwt=#DcNHN-yF?Ai}J< eTM&hAv2#v3zY9=L~o^L&2jwhwlj8- zyo(bD0*(Nq0<`>mVsxVr7gS4&54T*tY+kU@(NfbG#%P?*PqGm`C7aja(3*P8Za%8s zuoLgu9(kc=fH3T87?*q=OR;zi78g|A>w7z^XS >Y)apY|)(cQ @|^qwC-3~pFL^{ z=eDT}Z~N%?a%YZHrfIUkdOq*-xhS!|pnfdX5>HVU_aJc!vHSW*DdM(%oZVLqN5hA+ z%I+7&6`bf?T0#oRPnnZMUp4bn B(33Tk?L%w?MYJ{p9n3BLviadE+ Y9F0uF=wU0nyAlS| zke8KD`XYcj)`mn`V_gZnQ}Y;Xiy~Ux5i0c{ZA EUW6tVf56PbdkU7UH!`#C~z!pivT911OwIHF86XBHB+sWr_)_!Gz=CwIx<~5mWVZ zJmJ@T-n?Cl&|&%bwsoW0u+XkfY}Z3?W5_NoQx$$lqcDNJK(^1OrNJ#+RK&n`=fL7e zR}AD7)B8B4r9sYtku3Qp=>2UMpN6=_Oy{+ai<>F+r!4M)ieBVhsmVdzsJA6}{U|Da z9;$7GmtYS!XUlLB&F8s~tcP~5w18@q_5(El`giQ#vBQa$IB0sZ5G4v#zDz_*SZuy- z_Xcg^#8o3|+V3*4RnYXEuKX6XWr?RUN&Z=+2qTv2W?oBcW064lVi7ZLW>ssV+Dq*B zWixG;ir%`K3P6^><+u{Y4Gw>nq6g?XHd9+`=Kfx{V0JYgPN>0^c2W9Hlkfz#vXM4{ z_j)FHV3%VTBT7s({{RxL+z=EgNkYULn{i2ipjY31e)U%dh)%&|T3cMv6lL(O4pEoX zw?}UO(*8q_zSbAm_2ogK7(Q(+6Boq4gu|#mTzb{tG#g~kK{|zj-Qo^RaU~*P!ZCBc z+m@YYi2ysGc>-fIZR&V8MfS>XS$gizHIf=$i+QZz;kxF2f#3MbrAXoKNK f)%PVeM=lG_V8wnn9S}dh ztA5@*E##~w3YphS1)NJDV=r&LXWa@w7cYh1#c9te_*)BPr#j$_HU`QWe75zRc8nN+ zzUdjk5)jEYW=W5obDK+f8|R0!iKA(i!evDZFzV&)T1?ljJP{hu0i^;vudLZ*BvN5# zIUdz=@%sw?ZH`JEVk%Lyf3B56jkY#bR&b(Au+SF^f37W1hDipbZn36T5TLM<`O|7t zmUt(gD+v0SW^a9>(af8k@G|$~gTaNN#NydDUW01Myd5&V$E;O>%YA3oRj@l+Y~LAe zAG{LAG-*(S$pN%?LPkU$uPe};a4M=9%bmSiX &!ye!gf^i@W}#h6j0X!EWH-0Sis5st|JvWo6aSnjDq)(nnF-$0^L*Bw7KKM(SLv z-zt>12R5{SZWd_uF>Hs&GZH*fp496=TQ%Zen#cC}E3Lm# x`l9XJijtH0Q;zr6x)zfb#k7hGf&Zv@5lyFjqDGmVkSbNR zn`Y(tZBHQEl_o=(q4nXZmjRX5b>tnxbSb`^hqg6 fCn zlW#v{|M$l_{%R3fTvQ8unX70H`mb5&j_9_kz9{h{Q(N-<_^FqjbccJG`?-F^oSf~E zmVhizS>{doVzwjZcD9e+1NJhTFb_jiJ6vR~M~Y@xxpn&ckP=|#{>$~Z(vR8=@UB>w z7nPOM2RnH 3~Yv~xQrVHmqU&lFvDpl8NAKW)0m?ALm zpzZWJ!2B@&&o!ph5dQP$K0W7JJYx`l_#oQT^YdAREc88|*29KY)xUbA+o}N@GuHp* z^^Kv1RuHR>xzEMN%310vMLK3}Lah&6O~p~13XOc}*1fYJUiqaob1EGQg<2aveCm6w zo*KcxWUrU75$YNV-i>g3Y zLct;ogcB;3%MoC+v*b*#S**@Ac^2OHy z|6@u$MIZ$dvlR=NF+{Uf${xRkknRpMb4)>#bJL+0y0$g~K)y6YDwp(bfYJ5?qdIqe zz8>H2Fe9Un$nLSV=+3L7hZy-B7VVV3h?=}m(4LUoaSc;1;2(F6TgOQ+`uT3-oz{%Y z8v~6T1_oi=R6ytSRDy1cTYRVq(F_WDz8fKLhex-0e=$l+3ToEksN4QzGl>TA>S?f5 znv5STK$8o>ljDR1XsG-W3@64gnLHH7GFTkQ+b%HU>D!8qlr%u=agw$_tQPF`A6D8* zKvW0Ic7sSyGyYuD-|H>+wj1swlZ}RkGV i5C0kfKn`Q@(L zm8b>dH&@xgU2vf}R%w>{YVKiOG(b)!U3fBoUzES_Wtwr1Mm{Fdpw0ZzI{weKsrwRw zgykLM*T$iui1>kv{*Nr8GyHs`f!~*N7_8Xjk6Uc)?E{QEh !=+-SFc-a3nSnzgp{+NqpoUN_ z-komrc>Vf{8O!_pwfZ*4`uEASHc2Flhp8^&D?ZP=n*N*~Vl>jYyv;<6PDB>Nlj@*J zB=gAl!I6j4 r7WG48Cf|l!o?KZg{!e+bB>uM8p%VFK?nnD>;)6_<_JG zBkg)3EfOhI!MB(+5D$|vZuTB%Za2at=s!SH8NUN~J&feY-BZcY>-aRLwA?Mb{1(tk zbLc`?CV})g2OHQU&Z?Wv-;pW@Tr(P5=QPQ|s!&5U#F%U+V$w}H4^=gTS|q=nYInB1 zV{opqPGODLR;Lr6-7&@uh`y^tCC`}(8PpgxiKtpYbn{<^Cu3yAC-ZyN OUX4cc=&oysz$(gLJSK z2nmyyDkq1s?TBW`K*~UjnELIKEnCyi(ec`iBK&>6s#ACji_)1UNXQ;5ZqL*?Slore zeQC=p%Augn-O}tt^ZC63NyDI{ANKcms<{Pan?p2iqUb_oq!9L3?4odS9hb@O{Hj5w zo8tMoJHB1>EPZuEJ>x%uu<@jMKKw+Ts52%gJf+ywtoja2@GS!9vz80)Q@krc3iwFf zo%0a3GWV;X+BQrym8DrEq0wK{AhG%@v*;9appeHDzbbcr&AOqFNEqD%jD%1t-{4CU zc^UD`825F4JCfW@xpNPnphXR?aaybd@}p4c(sDBV1vPg)GwKtF(oj3BG+qK3M)$6g zq8V2xe#8PjVghHfcVjj(=}e0A0A@n$VQfPix~XpC@o#6kE+vM;nIvmu*yj(bZ+>LN zOsl#hku;qYF+LrB$cRwVG$8)jCx-DD@3*Z~ZXh6cx{|#E4k%5{n)m8-KH-S>U2%%7 zBV5Pv%g~)r9i=T`VVS%F wD4>Rmf7zyiVCVle46j zNB#EK<=% )Dl9A}7on}7_GBMe4-OehPb(Z>P9DcOC)n**N?2&Y^?nu0N(;)g zt>J~+P<5I?H68K@=u{B@=+JnTA~AHzd5x@}^DeFELDC8ipp ^y7!sUh-R>L)D8(Pb(qzivWBK`XM^e#QJQmGDY`H5eCg*%P zs&o15;K{j%=G`ANwXQD6uapK!vxs>%HHtu>LnNV&SGq**a;^z>mS?BRlkP*q5GVtc zeT{Ox5%ls^f0#^f{5PPFna*&*y5L&MTYJna+ULs!peAh3DHeUz+`8@61e+X9AdzbY zxVZR*GexKCK;(*u7wZJjCp`_AjDF@ %wbO9d*f@Bd>QR# zEZP|pZ_d57V`UP-tP7f!W?G>j-#YmcH?$*4yAjlAq2@IVci57SBl>S8>{z-ifylqO zxE|zmlI}5EHFJi-_a?3{E*>NlXGF`xFmAIt0a0m*FfgKCQ|HBsRww{K5DA4Zgyj?C zrFw~p$yM?RlLl}C$?(Cn0({O*TfiL|FNG4$P0qO|(jq8r@Qp1m8botu>}hMWO4&zT zJ+HO+MQbvRGekeWQt)c^G}}-i_uGE#S4z)G`GS>!Q_2NLuW< zq&bwV(d v})VVR%aAngSFM @#zN$-UB0kPI5gN!imh2(tE*BZ~ zXSagW#Y{Pi%Ti*zqOYI}KJ1=1F_QhyHFW2{gnyRfM2O)hQoj4}Wo=mz73pCCP%Lad zJfoRi*ijq4@G4%hL#gO<%*P-h3Lkjs3Z$$2e<1w|qhG&% k{vS#A zeXWVhuVE4Fp#EQ$zQATC2i^OBH2tc$j>a|LeK~9Vvhi1eES4;FXMCXITBQwnuUx_s zmcvWQC??!AXe2Qk p|IR^m~FA%FZ6H}nJD)awlG|3-v{V{+( z9^BLF=og-CJ?SzSQ0n$npk m}-r`f31E+ImuHVj8NXMReYXj8t*1lcId7 zujETa&lXcH24+~)dYJ1F(WQnm7XTnu+{HuPWC@JV?4vS4b82gl{QUfCLfHO{EG~C{ z9ZB5pnaNg=ZzJW#w6Y?x1~OYA9>?Dxtiv}xa7*Lm`efe|S2x@%{h@JO7~w-ZurxKB zCZZL{9}juOV>%l<+4&qRkYdl6g)a_IZ&J--sZM$PP&5@0hAN`WX7bUeYpO$L<8$Nn zNTR;=1_VP+uf#T4gPxJr22nr- ;Qr31oS>Y0>o;mVIY=STF@IleYkbxutg2BNErJ#`N!) z!?=m|SZ)us^d&o-<(h7)mnKRR{GhJ47LlW&m#6a4-8)d@wM)g0b|gX3Xj9 7L(M&$e}({qqBTWQYm@cR=T)8RkYShUMFvh6uk zvZgYo-JxhMwom#Z9R|d;Ho>&rpt`Ld9K`KDy=@)*)W&(8Uq6~+4$563mu~N ~n#zH(Jq zrd=@3?T0;MZ=SFa7qGM~G5E|O#SLi`SjJ?~=pt!kk4t=!*j)XlOYw6VS|*=@3&a+b z82jr>sa *0+ulbaYI-4cj zA6y+MTG${&;qr>%;+A GG0J3S!q4tN@FBcrLXlvRj@v&3zOv{$6c(?L$z3EF-FL~w1HVhiMa&}2 z>N$p-zDgR}JUjPc_n&iCb`##{x^m}3W)0GTrd1$p!oo;@Y7t3f7h(A=$LZNqh96wO zZwFV9bxjLYzK+{Tn6zn_^;Ez2J~77&FvEWbw7sQ79r4N%&aoM}Fh+_eD8S;W+4p+8 zZZO$YyfOcz`z>EyfMYQy#Z4+Hs|(PB9Za1N31G@egcxOxmS)w#Tnt{l%FHhD4Yf?p zPN;jakz&y$+V{G9Xh{=23>0A*@8)rsVo{rVT%|POBH!`nnn~XY(`M>~m$fZ$X*(@g zbelb&G>*0i@(`MnN>o#QH8rOFl>b53?E7En$@RS>NOLM2l*Y?6hZSb6L`_ojoZ&xz z2wBhfTicz3@>!BH4GeXCRBwndDZ?HcWK{br$rs?@yFwCLVP0C|Mj1INXne8D`udjK z_;kU2lf@$$xVaq@*b;@wd8~Feuy%$O;(SzChR3J?Ivp|en(;&mv~((I9rjJQG*{8G z8}~cQB7SFUy?`W2Mtz}DVU^v9k~=&xP?(EV!}4C4gyvU3zmMs1I--g`1 zq-p=qsX}l_Il@NxEU%%PN7+|y3D-X1cOD4l+A=;u#96NZNScHew?EfvRT8ap|6G%o z9xDt4? y zZT+gOL-R;HC5xMzIev>OpS39p!qZ)1s&}5f$ouHD+I}dsOOc v}ZddKlXDF)M@jQ )*NQ|1v98rz3?4m%^Mt zqg@!9;cl?EJo;1^;I%)ovQ9c6CWeUI^6`&K`nKpaw22H*u4&Ttzp6cUIc^v*r_!(; zrE!rFDXk9F{BsRrd|}`a$o_b$+w|i3pKCAS9b#9jul8>fM &H}iuM11C*cBDG5S5_XVSx3Npa}gs%+y62_cXeAYE^r!NB#Sau>#=$p&F4; z!RzG~0W4!{B?!0u_`%PO+L4*^h+IWB|LX1}7kzO%Sw*9zcH%&Gx$m?#589A3?}T*G z{-KS1 &P-@;X`^DOOsP0|~tRFWYj zWad!s?r0x%_nC(SQ<_iUb|AQ+5;IgRd^O91{Fc$%263H0Z80P~wMa3gx#UEFus=_( z)tg0Xe9yWBArFH8T%%7V{4DL;dpGI63cEB|ztk964v;`G6ti1u>+M?MLCMssOl4Cy zYN(DKx1>?Vs;lph0!Ogw6z0KIwWBS>JBD&8RY5!i&oGAJJazvLAWo>zoQ{Yujcc5w zqgI $KHvq<*}j?yR+~g{f+WDhrVd^SEq6&A3FcvJSPDiNP;#m}1xhcr6V~ z{1Rq6(gs=JCs+22EUwszqT9NaoH}k65YWJq%VT3g4X0AeRZT`-d#U@A>%|-O-(DMf zz&jUdUq-_U&xNnp HN_g_qFB$ACZXyiX*x}1e|4d_ zwyCkzezLq?c*Yc}FQ}!hJ8L^mCWj*q5PA7-^l7#8cr%b)0vkk# M zkcxU1iXeXKUkZOHqtS^n?1KyGqxMmS>79X7340nJ28w}xF}{c%3e2Nx!tm#b9|ERQ zI$}H&CoEE+dS?7C^E>)L+tw@I_=mQ>g3@@Vl3+wxL=y!_bww@>4Tq!Llo~t4Y z#^Qq@x?y=;Md?l@#Yrc_QTWR(cPN*9L8$Y&_e7{rWkkA`R5={S$vE4`_0~PFQOqQ# zLbNhWaaHF)re_jS?jJWBzpJoKotEp&$PBG5`T=P7J^(a4>fxuPf1{B<6`MMyi^+gV zxz$@^K4QU4ASQQMsei@xU?5>q@3DM|C&`|U(T*{Uy+->`pw9KH+aQ3@76p)@PaU@G zl7GyX*#D_<6Jf$!sPA?0d=rrvuh6LN)~HwA$h-VwI@I)Y#pedXX7N|zMNFvd!XDbp z_b6&jMh)9onl2jjjI(w*r&)FOST2mDZ|Ga)e4r*;=?>Dr2wGbYjk= fh%`uoQMr&!IM!34(b0oVAmL&$$x?t|6W%D}ixj zk$*T)-`b)gJ8CqXDMf#vy)@f_WMSByT~N?lv$Eq^bi%R9*`+V-T4M648q9jM+q1F= z`DXnc|CQ6XMoFn9)bZE$k0h-l4Q9Z)bxGlgmfpUZ@Zps_UUuJCSgH #CI%!u_WHwBRx=SHHa7@4sV@8b!&E$86I9fmu*|l*{D+eZ+6mBVctI z(NvUZV(#!hU6C`8BsW&AqET!2os@R3S*=T{NSE@33G(K$T%=VuD*0U-N@0%o``S*; zm{n2y@h2NCF4OSZLd=Ud=Y&I1UA++2d;FCu1B`H_Wxvt!!Fa8w56pXHchb?~BC!vt z>kbM~I;&|GYLQtoL8JGMvW!z2)W4wZh^BSQ5HvqqBb+c=2Y>!)TUpiAu{wcr1WP*K zeP+QlEXZC^wZLBJLghg_64ns Jxz%0K{7jj z8Vf40;~0TN)$fTq+CzR{S!@OmOL{ E1(t@P<%FlSsj1{g5fu7w5IUlEsDsp-B>=^(9 zq}t77&8*m+)19MC0huYBqT^^Nj^`>if{Ihbmq7kzzL;uch<#2?o4LwVkPCX3aCBxQ zmc)?{wt6$XD<&nOuWB+MNb%{zv;0UE`(?Z};4tSXTFuteos#5lZ?G3Q!n0gppLcg) zZ>9JUn)fLORPHZEpUNzP$;Tzf;5rjin Vg%%C(@$I`8gxUD=FtBG=(n%W_tB=u?>i#kAQeRZhCUg{+QePXZHD_EREMAD|o4W zqv9;X=O7q1HTtY&;Y#@OM4fBZ?k%|=XgkGs%Pq8Amadb&ss#cgt~-k-6sXfJrs+kl z -_(>vzpI0D}On?S#*D&6)Am|sHKgtmHGW4laqc!85|mB zE|ge|UGmls?XbrSUd4O)g}$GMvw#D>b3iq(=gUc*B@QIZn9&zu;dSkB|Kn4{;CU(F z$_e#+re*2U^tYgpxwd0mNmkSJg~p-re_z^Bf36wRbS_kkg}w@Z{}xp?8m?NAG?q|b z?fL5>aZWoj@6R=I_wbP&QG@04pKA%HvgeV~m*iNmkZ&M15DsJ>%NghwOv5bnuBaO&RHDspyfiU4@~-TtX$54&O=r)VTh+3Sn#q zQw1}r@;a&}xDRD7cjX4W(%cZ)iHZ+u(HdkBy1xNY;1mzU&T4#Bz>Xf;u +5@ z-kggEEKQG?Hz56kcI~AS(PO;gb2Yc~iFNLJJuUY_Lqj|@xwrsvj6J#oklmU9Wp*a$ zCNhduV=}_e2~CIFl=%dmSR)? V7In9!-ZAviDeY}a5gd2k-*T|K z6fF>Te$4t%rt0