first commit

This commit is contained in:
Madhuri 2024-03-08 18:33:59 +05:30
commit 588be896ce
1253 changed files with 1052502 additions and 0 deletions

0
README.md Normal file
View File

6
application/.htaccess Normal file
View File

@ -0,0 +1,6 @@
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>

11
application/cache/index.html vendored Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,135 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| AUTO-LOADER
| -------------------------------------------------------------------
| This file specifies which systems should be loaded by default.
|
| In order to keep the framework as light-weight as possible only the
| absolute minimal resources are loaded by default. For example,
| the database is not connected to automatically since no assumption
| is made regarding whether you intend to use it. This file lets
| you globally define which systems you would like loaded with every
| request.
|
| -------------------------------------------------------------------
| Instructions
| -------------------------------------------------------------------
|
| These are the things you can load automatically:
|
| 1. Packages
| 2. Libraries
| 3. Drivers
| 4. Helper files
| 5. Custom config files
| 6. Language files
| 7. Models
|
*/
/*
| -------------------------------------------------------------------
| Auto-load Packages
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
*/
$autoload['packages'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in system/libraries/ or your
| application/libraries/ directory, with the addition of the
| 'database' library, which is somewhat of a special case.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'email', 'session');
|
| You can also supply an alternative library name to be assigned
| in the controller:
|
| $autoload['libraries'] = array('user_agent' => 'ua');
*/
$autoload['libraries'] = array('database', 'session', 'form_validation', 'upload', 'pagination');
/*
| -------------------------------------------------------------------
| 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', 'file');
/*
| -------------------------------------------------------------------
| 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('get_model');

View File

@ -0,0 +1,538 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
| WARNING: You MUST set this value!
|
| If it is not set, then CodeIgniter will try to guess the protocol and
| path to your installation, but due to security concerns the hostname will
| be set to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
| The auto-detection mechanism exists only for convenience during
| development and MUST NOT be used in production!
|
| If you need to allow multiple domains, remember that this file is still
| a PHP script and you can easily do that on your own.
|
*/
$config['base_url'] = 'http://192.168.0.109/chess/admin/';
// $base_url = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
// $base_url .= "://". @$_SERVER['HTTP_HOST'];
// $base_url .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
// $config['base_url'] = $base_url;
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'REQUEST_URI' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
|
| WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
*/
$config['uri_protocol'] = 'REQUEST_URI';
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| https://codeigniter.com/userguide3/general/urls.html
|
| Note: This option is ignored for CLI requests.
*/
$config['url_suffix'] = '';
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| This determines which set of language files should be used. Make sure
| there is an available translation if you intend to use something other
| than english.
|
*/
$config['language'] = 'english';
/*
|--------------------------------------------------------------------------
| Default Character Set
|--------------------------------------------------------------------------
|
| This determines which character set is used by default in various methods
| that require a character set to be provided.
|
| See http://php.net/htmlspecialchars for a list of supported charsets.
|
*/
$config['charset'] = 'UTF-8';
/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the 'hooks' feature you must enable it by
| setting this variable to TRUE (boolean). See the user guide for details.
|
*/
$config['enable_hooks'] = FALSE;
/*
|--------------------------------------------------------------------------
| Class Extension Prefix
|--------------------------------------------------------------------------
|
| This item allows you to set the filename/classname prefix when extending
| native libraries. For more information please see the user guide:
|
| https://codeigniter.com/userguide3/general/core_classes.html
| https://codeigniter.com/userguide3/general/creating_libraries.html
|
*/
$config['subclass_prefix'] = 'MY_';
/*
|--------------------------------------------------------------------------
| Composer auto-loading
|--------------------------------------------------------------------------
|
| Enabling this setting will tell CodeIgniter to look for a Composer
| package auto-loader script in application/vendor/autoload.php.
|
| $config['composer_autoload'] = TRUE;
|
| Or if you have your vendor/ directory located somewhere else, you
| can opt to set a specific path as well:
|
| $config['composer_autoload'] = '/path/to/vendor/autoload.php';
|
| For more information about Composer, please visit http://getcomposer.org/
|
| Note: This will NOT disable or override the CodeIgniter-specific
| autoloading (application/config/autoload.php)
*/
$config['composer_autoload'] = FALSE;
/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify which characters are permitted within your URLs.
| When someone tries to submit a URL with disallowed characters they will
| get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
| Leave blank to allow all characters -- but only if you are insane.
|
| The configured value is actually a regular expression character group
| and it will be executed as: ! preg_match('/^[<permitted_uri_chars>]+$/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'] = 4;
/*
|--------------------------------------------------------------------------
| 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/userguide3/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_samesite'
|
| Session cookie SameSite attribute: Lax (default), Strict or None
|
| '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_samesite'] = 'Lax';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = '/tmp';
$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)
| 'cookie_samesite' = Cookie's samesite attribute (Lax, Strict or None)
|
| 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;
$config['cookie_samesite'] = 'Lax';
/*
|--------------------------------------------------------------------------
| 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'] = '';

View File

@ -0,0 +1,87 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Display Debug backtrace
|--------------------------------------------------------------------------
|
| If set to TRUE, a backtrace will be displayed along with php errors. If
| error_reporting is disabled, the backtrace will not display, regardless
| of this setting
|
*/
defined('SHOW_DEBUG_BACKTRACE') OR define('SHOW_DEBUG_BACKTRACE', TRUE);
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
defined('FILE_READ_MODE') OR define('FILE_READ_MODE', 0644);
defined('FILE_WRITE_MODE') OR define('FILE_WRITE_MODE', 0666);
defined('DIR_READ_MODE') OR define('DIR_READ_MODE', 0755);
defined('DIR_WRITE_MODE') OR define('DIR_WRITE_MODE', 0755);
define('api_url', 'http://localhost/chess_api/');
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
defined('FOPEN_READ') OR define('FOPEN_READ', 'rb');
defined('FOPEN_READ_WRITE') OR define('FOPEN_READ_WRITE', 'r+b');
defined('FOPEN_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
defined('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
defined('FOPEN_WRITE_CREATE') OR define('FOPEN_WRITE_CREATE', 'ab');
defined('FOPEN_READ_WRITE_CREATE') OR define('FOPEN_READ_WRITE_CREATE', 'a+b');
defined('FOPEN_WRITE_CREATE_STRICT') OR define('FOPEN_WRITE_CREATE_STRICT', 'xb');
defined('FOPEN_READ_WRITE_CREATE_STRICT') OR define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
/*
|--------------------------------------------------------------------------
| Exit Status Codes
|--------------------------------------------------------------------------
|
| Used to indicate the conditions under which the script is exit()ing.
| While there is no universal standard for error codes, there are some
| broad conventions. Three such conventions are mentioned below, for
| those who wish to make use of them. The CodeIgniter defaults were
| chosen for the least overlap with these conventions, while still
| leaving room for others to be defined in future versions and user
| applications.
|
| The three main conventions used for determining exit status codes
| are as follows:
|
| Standard C/C++ Library (stdlibc):
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
| (This link also contains other GNU-specific conventions)
| BSD sysexits.h:
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
| Bash scripting:
| http://tldp.org/LDP/abs/html/exitcodes.html
|
*/
defined('EXIT_SUCCESS') OR define('EXIT_SUCCESS', 0); // no errors
defined('EXIT_ERROR') OR define('EXIT_ERROR', 1); // generic error
defined('EXIT_CONFIG') OR define('EXIT_CONFIG', 3); // configuration error
defined('EXIT_UNKNOWN_FILE') OR define('EXIT_UNKNOWN_FILE', 4); // file not found
defined('EXIT_UNKNOWN_CLASS') OR define('EXIT_UNKNOWN_CLASS', 5); // unknown class
defined('EXIT_UNKNOWN_METHOD') OR define('EXIT_UNKNOWN_METHOD', 6); // unknown class member
defined('EXIT_USER_INPUT') OR define('EXIT_USER_INPUT', 7); // invalid user input
defined('EXIT_DATABASE') OR define('EXIT_DATABASE', 8); // database error
defined('EXIT__AUTO_MIN') OR define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
defined('EXIT__AUTO_MAX') OR define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code

View File

@ -0,0 +1,98 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['dsn'] The full DSN string describe a connection to the database.
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database driver. e.g.: mysqli.
| Currently supported:
| cubrid, ibase, mssql, mysql, mysqli, oci8,
| odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Query Builder class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| NOTE: For MySQL and MySQLi databases, this setting is only used
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
| (and in table creation queries made with DB Forge).
| There is an incompatibility in PHP with mysql_real_escape_string() which
| can make your site vulnerable to SQL injection if you are using a
| multi-byte character set and are running versions lower than these.
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['encrypt'] Whether or not to use an encrypted connection.
|
| 'mysql' (deprecated), 'sqlsrv' and 'pdo/sqlsrv' drivers accept TRUE/FALSE
| 'mysqli' and 'pdo/mysql' drivers accept an array with the following options:
|
| 'ssl_key' - Path to the private key file
| 'ssl_cert' - Path to the public key certificate file
| 'ssl_ca' - Path to the certificate authority file
| 'ssl_capath' - Path to a directory containing trusted CA certificates in PEM format
| 'ssl_cipher' - List of *allowed* ciphers to be used for the encryption, separated by colons (':')
| 'ssl_verify' - TRUE/FALSE; Whether verify the server certificate or not
|
| ['compress'] Whether or not to use client compression (MySQL only)
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
| ['ssl_options'] Used to set various SSL options that can be used when making SSL connections.
| ['failover'] array - A array with 0 or more data for connections if the main should fail.
| ['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
| NOTE: Disabling this will also effectively disable both
| $this->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' => 'root',
'password' => '',
'database' => 'testing_chess',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'db_debug' => TRUE,
//$this->db->_error_message(),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);

View File

@ -0,0 +1,24 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$_doctypes = array(
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
'html5' => '<!DOCTYPE html>',
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">',
'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">',
'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">',
'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">',
'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">',
'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">',
'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">',
'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">'
);

View File

@ -0,0 +1,10 @@
<?php
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.gmail.com';
$config['smtp_user'] = 'akshayj.appzia@gmail.com';
$config['smtp_pass'] = 'affdazorhcxszfch';
$config['smtp_port'] = 465;
$config['charset'] = 'utf-8';
$config['mailtype'] = 'html';
$config['newline'] = "\r\n";

View File

@ -0,0 +1,114 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| Foreign Characters
| -------------------------------------------------------------------
| This file contains an array of foreign characters for transliteration
| conversion used by the Text helper
|
*/
$foreign_characters = array(
'/ä|æ|ǽ/' => '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'
);

View File

@ -0,0 +1,13 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files. Please see the user guide for info:
|
| https://codeigniter.com/userguide3/general/hooks.html
|
*/

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,19 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Memcached settings
| -------------------------------------------------------------------------
| Your Memcached servers can be specified below.
|
| See: https://codeigniter.com/userguide3/libraries/caching.html#memcached
|
*/
$config = array(
'default' => array(
'hostname' => '127.0.0.1',
'port' => '11211',
'weight' => '1',
),
);

View File

@ -0,0 +1,84 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Enable/Disable Migrations
|--------------------------------------------------------------------------
|
| Migrations are disabled by default for security reasons.
| You should enable migrations whenever you intend to do a schema migration
| and disable it back when you're done.
|
*/
$config['migration_enabled'] = FALSE;
/*
|--------------------------------------------------------------------------
| Migration Type
|--------------------------------------------------------------------------
|
| Migration file names may be based on a sequential identifier or on
| a timestamp. Options are:
|
| 'sequential' = Sequential migration naming (001_add_blog.php)
| 'timestamp' = Timestamp migration naming (20121031104401_add_blog.php)
| Use timestamp format YYYYMMDDHHIISS.
|
| Note: If this configuration value is missing the Migration library
| defaults to 'sequential' for backward compatibility with CI2.
|
*/
$config['migration_type'] = 'timestamp';
/*
|--------------------------------------------------------------------------
| Migrations table
|--------------------------------------------------------------------------
|
| This is the name of the table that will store the current migrations state.
| When migrations runs it will store in a database table which migration
| level the system is at. It then compares the migration level in this
| table to the $config['migration_version'] if they are not the same it
| will migrate up. This must be set.
|
*/
$config['migration_table'] = 'migrations';
/*
|--------------------------------------------------------------------------
| Auto Migrate To Latest
|--------------------------------------------------------------------------
|
| If this is set to TRUE when you load the migrations class and have
| $config['migration_enabled'] set to TRUE the system will auto migrate
| to your latest migration (whatever $config['migration_version'] is
| set to). This way you do not have to call migrations anywhere else
| in your code to have the latest migration.
|
*/
$config['migration_auto_latest'] = FALSE;
/*
|--------------------------------------------------------------------------
| Migrations version
|--------------------------------------------------------------------------
|
| This is used to set migration version that the file system should be on.
| If you run $this->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/';

View File

@ -0,0 +1,186 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| MIME TYPES
| -------------------------------------------------------------------
| This file contains an array of mime types. It is used by the
| Upload class to help identify allowed file types.
|
*/
return array(
'hqx' => 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',
'heic' => 'image/heic',
'heif' => 'image/heif',
'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', 'image/svg', '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'
);

View File

@ -0,0 +1,14 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Profiler Sections
| -------------------------------------------------------------------------
| This file lets you determine whether or not various sections of Profiler
| data are displayed when the Profiler is enabled.
| Please see the user guide for info:
|
| https://codeigniter.com/userguide3/general/profiling.html
|
*/

View File

@ -0,0 +1,191 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| https://codeigniter.com/userguide3/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There are three reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router which controller/method to use if those
| provided in the URL cannot be matched to a valid route.
|
| $route['translate_uri_dashes'] = FALSE;
|
| This is not exactly a route, but allows you to automatically route
| controller and method names that contain dashes. '-' isn't a valid
| class or method name character, so it requires translation.
| When you set this option to TRUE, it will replace ALL dashes in the
| controller and method URI segments.
|
| Examples: my-controller/index -> my_controller/index
| my-controller/my-method -> my_controller/my_method
*/
$route['default_controller'] = 'PageController/login';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['dashboard'] = 'Dashboard_controller/index';
$route['logout'] = 'Login_controller/logout';
$route['profile'] = 'Dashboard_controller/profile';
$route['reset_pass'] = 'Dashboard_controller/reset_pass';
$route['client_testimonial'] = 'Dashboard_controller/client_testimonial';
$route['client_testimonial/(:num)'] = 'Dashboard_controller/client_testimonial/$1';
$route['privacy_policy'] = 'Dashboard_controller/privacy_policy';
$route['terms'] = 'Dashboard_controller/terms';
$route['faq'] = 'Dashboard_controller/faq';
$route['faq/(:num)'] = 'Dashboard_controller/faq/$1';
$route['add_country'] = 'Dashboard_controller/add_country';
$route['add_country/(:num)'] = 'Dashboard_controller/add_country/$1';
$route['add_language'] = 'Dashboard_controller/add_language';
$route['add_language/(:num)'] = 'Dashboard_controller/add_language/$1';
$route['add_testi'] = 'User_management/add_testi';
$route['edit_testi'] = 'User_management/edit_testi';
$route['user_manage'] = 'Dashboard_controller/user_manage';
$route['user_manage/(:num)'] = 'Dashboard_controller/user_manage/$1';
//$route['wallet_manage'] = 'PageController/wallet_manage';
$route['wallet_manage'] = 'Dashboard_controller/wallet_manage';
$route['wallet_manage/(:num)'] = 'Dashboard_controller/wallet_manage/$1';
$route['contact_us'] = 'Dashboard_controller/contact_us';
$route['contact_us/(:num)'] = 'Dashboard_controller/contact_us/$1';
$route['time_slot'] = 'Dashboard_controller/time_slot';
//$route['index'] = 'PageController/index';
$route['view_user'] = 'User_management/view_user';
$route['view_user/(:any)'] = 'User_management/view_user/$1';
$route['view_user/(:any)'] = 'User_management/view_user/$1/$2';
$route['send_add_amount'] = 'Dashboard_controller/send_add_amount';
$route['login'] = 'PageController/login';
$route['wallet_history/(:any)'] = 'Dashboard_controller/wallet_history';
$route['wallet_history/(:any)/(:any)'] = 'Dashboard_controller/wallet_history';
$route['withdrawl_request'] = 'Dashboard_controller/withdrawl_request';
$route['manage_tournament'] = 'Dashboard_controller/manage_tournament';
$route['manage_tournament/(:num)'] = 'Dashboard_controller/manage_tournament/$1';
$route['add_tournament'] = 'Dashboard_controller/add_tournament';
$route['update'] = 'tournaments/update';
$route['update_tournament'] = 'Dashboard_controller/update_tournament';
$route['tournaments/update/(:num)'] = 'tournaments/update/$1';
$routes['tournaments/delete/(:any)'] = 'tournaments/delete/$1';
//$route['wallet_history/(:any)'] = 'PageController/wallet_history';
//wallet history pagination
//$route['wallet_history/(:any)/(:any)'] = 'PageController/wallet_history';
$route['register'] = 'PageController/register';
$route['win_games'] = 'PageController/win_games';
$route['win_games/(:any)'] = 'PageController/win_games/$1';
$route['lost_games'] = 'PageController/lost_games';
$route['lost_games/(:any)'] = 'PageController/win_games/$1';
$route['drawn_games'] = 'PageController/drawn_games';
$route['drawn_games/(:any)'] = 'PageController/drawn_games/$1';
$route['withdrawl_history/(:num)'] = 'Dashboard_controller/withdrawl_history/$1';
$route['withdrawl_history/(:num)/(:num)'] = 'Dashboard_controller/withdrawl_history/$1/$2';
$route['wallet_transaction'] = 'PageController/wallet_transaction';
$route['tournament_participant'] = 'PageController/tournament_participant';
$route['user_payment_history'] = 'PageController/user_payment_history';
$route['leaderboard'] = 'PageController/leaderboard';
$route['leaderboard/(:any)'] = 'PageController/leaderboard/$1';
$route['add_lang'] = 'PageController/add_lang';
$route['tournament_history'] = 'PageController/tournament_history';
$route['tournament_user'] = 'PageController/tournament_user';
$route['forgot_password'] = 'PageController/forgot_password';
//$route['faq'] = 'PageController/faq';
$route['first_live_tournament'] = 'PageController/first_live_tournament';
$route['second_live_tournament'] = 'PageController/second_live_tournament';
$route['choose_player'] = 'PageController/choose_player';
$route['all_round'] = 'PageController/all_round';
$route['user_join_tournament'] = 'Api/user_join_tournament';
$route['get_joined_user_tournament'] = 'Api/get_joined_user_tournament';
$route['update_user_score'] = 'Api/update_user_score';
$route['calculate_winnings'] = 'Api/calculate_winnings';
$route['get_leaderboard'] = 'Api/get_leaderboard';
$route['declare_winners'] = 'Api/declare_winners';
$route['update_tournament_user_playing_status'] = 'Api/update_tournament_user_playing_status';
$route['check_tournament_completion'] = 'Api/check_tournament_completion';
$route['get_wallet_data'] = 'Api/get_wallet_data';
$route['played_game_history'] = 'Api/played_game_history';
$route['get_leaderboard_data'] = 'Api/get_leaderboard_data';

View File

@ -0,0 +1,64 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| SMILEYS
| -------------------------------------------------------------------
| This file contains an array of smileys for use with the emoticon helper.
| Individual images can be used to replace multiple smileys. For example:
| :-) and :) use the same image replacement.
|
| Please see user guide for more info:
| https://codeigniter.com/userguide3/helpers/smiley_helper.html
|
*/
$smileys = array(
// smiley image name width height alt
':-)' => 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')
);

View File

@ -0,0 +1,222 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| USER AGENT TYPES
| -------------------------------------------------------------------
| This file contains four arrays of user agent data. It is used by the
| User Agent Class to help identify browser, platform, robot, and
| mobile device data. The array keys are used to identify the device
| and the array values are used to set the actual name of the item.
*/
$platforms = array(
'windows nt 10.0' => '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/<real version> to the user agent string
'Opera.*?Version' => 'Opera',
'Opera' => 'Opera',
'MSIE' => 'Internet Explorer',
'Internet Explorer' => 'Internet Explorer',
'Trident.* rv' => 'Internet Explorer',
'Shiira' => 'Shiira',
'Firefox' => 'Firefox',
'Chimera' => 'Chimera',
'Phoenix' => 'Phoenix',
'Firebird' => 'Firebird',
'Camino' => 'Camino',
'Netscape' => 'Netscape',
'OmniWeb' => 'OmniWeb',
'Safari' => 'Safari',
'Mozilla' => 'Mozilla',
'Konqueror' => 'Konqueror',
'icab' => 'iCab',
'Lynx' => 'Lynx',
'Links' => 'Links',
'hotjava' => 'HotJava',
'amaya' => 'Amaya',
'IBrowse' => 'IBrowse',
'Maxthon' => 'Maxthon',
'Ubuntu' => 'Ubuntu Web Browser'
);
$mobiles = array(
// legacy array, old values commented out
'mobileexplorer' => 'Mobile Explorer',
// 'openwave' => 'Open Wave',
// 'opera mini' => 'Opera Mini',
// 'operamini' => 'Opera Mini',
// 'elaine' => 'Palm',
'palmsource' => 'Palm',
// 'digital paths' => 'Palm',
// 'avantgo' => 'Avantgo',
// 'xiino' => 'Xiino',
'palmscape' => 'Palmscape',
// 'nokia' => 'Nokia',
// 'ericsson' => 'Ericsson',
// 'blackberry' => 'BlackBerry',
// 'motorola' => 'Motorola'
// Phones and Manufacturers
'motorola' => 'Motorola',
'nokia' => 'Nokia',
'nexus' => 'Nexus',
'palm' => 'Palm',
'iphone' => 'Apple iPhone',
'ipad' => 'iPad',
'ipod' => 'Apple iPod Touch',
'sony' => 'Sony Ericsson',
'ericsson' => 'Sony Ericsson',
'blackberry' => 'BlackBerry',
'cocoon' => 'O2 Cocoon',
'blazer' => 'Treo',
'lg' => 'LG',
'amoi' => 'Amoi',
'xda' => 'XDA',
'mda' => 'MDA',
'vario' => 'Vario',
'htc' => 'HTC',
'samsung' => 'Samsung',
'sharp' => 'Sharp',
'sie-' => 'Siemens',
'alcatel' => 'Alcatel',
'benq' => 'BenQ',
'ipaq' => 'HP iPaq',
'mot-' => 'Motorola',
'playstation portable' => 'PlayStation Portable',
'playstation 3' => 'PlayStation 3',
'playstation vita' => 'PlayStation Vita',
'hiptop' => 'Danger Hiptop',
'nec-' => 'NEC',
'panasonic' => 'Panasonic',
'philips' => 'Philips',
'sagem' => 'Sagem',
'sanyo' => 'Sanyo',
'spv' => 'SPV',
'zte' => 'ZTE',
'sendo' => 'Sendo',
'nintendo dsi' => 'Nintendo DSi',
'nintendo ds' => 'Nintendo DS',
'nintendo 3ds' => 'Nintendo 3DS',
'wii' => 'Nintendo Wii',
'open web' => 'Open Web',
'openweb' => 'OpenWeb',
'meizu' => 'Meizu',
'huawei' => 'Huawei',
'xiaomi' => 'Xiaomi',
'oppo' => 'Oppo',
'vivo' => 'Vivo',
'infinix' => 'Infinix',
// Operating Systems
'android' => 'Android',
'symbian' => 'Symbian',
'SymbianOS' => 'SymbianOS',
'elaine' => 'Palm',
'series60' => 'Symbian S60',
'windows ce' => 'Windows CE',
// Browsers
'obigo' => 'Obigo',
'netfront' => 'Netfront Browser',
'openwave' => 'Openwave Browser',
'mobilexplorer' => 'Mobile Explorer',
'operamini' => 'Opera Mini',
'opera mini' => 'Opera Mini',
'opera mobi' => 'Opera Mobile',
'fennec' => 'Firefox Mobile',
// Other
'digital paths' => 'Digital Paths',
'avantgo' => 'AvantGo',
'xiino' => 'Xiino',
'novarra' => 'Novarra Transcoder',
'vodafone' => 'Vodafone',
'docomo' => 'NTT DoCoMo',
'o2' => 'O2',
// Fallback
'mobile' => 'Generic Mobile',
'wireless' => 'Generic Mobile',
'j2me' => 'Generic Mobile',
'midp' => 'Generic Mobile',
'cldc' => 'Generic Mobile',
'up.link' => 'Generic Mobile',
'up.browser' => 'Generic Mobile',
'smartphone' => 'Generic Mobile',
'cellphone' => 'Generic Mobile'
);
// There are hundreds of bots but these are the most common.
$robots = array(
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'baiduspider' => 'Baiduspider',
'bingbot' => 'Bing',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'ask jeeves' => 'Ask Jeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos',
'yandex' => 'YandexBot',
'mediapartners-google' => 'MediaPartners Google',
'CRAZYWEBCRAWLER' => 'Crazy Webcrawler',
'adsbot-google' => 'AdsBot Google',
'feedfetcher-google' => 'Feedfetcher Google',
'curious george' => 'Curious George',
'ia_archiver' => 'Alexa Crawler',
'MJ12bot' => 'Majestic-12',
'Uptimebot' => 'Uptimebot',
'UptimeRobot' => 'UptimeRobot'
);

View File

@ -0,0 +1,826 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Api extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('api_model');
$this->load->library('form_validation');
}
function index()
{
$data = $this->api_model->fetch_all();
echo json_encode($data->result_array());
}
public function insert()
{
// Set form validation rules
$this->form_validation->set_rules("tname", "Tournament Name", "required");
$this->form_validation->set_rules("entry_fee", "Entry Fee", "required");
$this->form_validation->set_rules("start_date_time", "Start Date Time", "required");
// $this->form_validation->set_rules("end_date", "End date", "required");
$this->form_validation->set_rules("win_amount", "Win Amount", "required");
$this->form_validation->set_rules("time_slot", "Time Slot", "required");
$this->form_validation->set_rules("t_type", "Tournament Type", "required");
$this->form_validation->set_rules("round[]", "Round", "required");
// Initialize the response array
$response = array();
// Check if form validation passed
if ($this->form_validation->run()) {
$data = array(
'tname' => trim($this->input->post('tname')),
'entry_fee' => trim($this->input->post('entry_fee')),
'start_date_time' => trim($this->input->post('start_date_time')),
// 'end_date' => trim($this->input->post('end_date')),
'win_amount' => trim($this->input->post('win_amount')),
'time_slot' => trim($this->input->post('time_slot')),
't_type' => trim($this->input->post('t_type')),
'round' => json_encode($this->input->post('round'))
//'round' => json_encode($this->input->post('round')) // Convert the 'round' array to a JSON string
);
// print_r($data);
// Call your API model method to insert data
$insert = $this->api_model->insert_api($data);
// Check if the insertion was successful
if ($insert) {
$response['success'] = true;
} else {
$response['error'] = true;
$response['message'] = 'Failed to insert data.';
}
} else {
// Form validation failed, return error details
$response['error'] = true;
$response['validation_errors'] = validation_errors();
}
// Return the response as JSON
echo json_encode($response);
}
function fetch_single()
{
$response = array();
if ($this->input->post('tid')) {
$user_id = $this->input->post('tid');
$data = $this->api_model->fetch_single_user($user_id);
if ($data) {
$response['success'] = true;
$response['data']['tname'] = $data[0]["tname"];
$response['data']['entry_fee'] = $data[0]["entry_fee"];
$response['data']['start_date_time'] = $data[0]["start_date_time"];
$response['data']['end_date'] = $data[0]["end_date"];
$response['data']['win_amount'] = $data[0]["win_amount"];
$response['data']['time_slot'] = $data[0]["time_slot"];
$response['data']['t_type'] = $data[0]["t_type"];
} else {
$response['success'] = false;
$response['message'] = 'User not found';
}
} else {
$response['success'] = false;
$response['message'] = 'Invalid input parameters';
}
echo json_encode($response);
}
function update()
{
$this->form_validation->set_rules("tname", "Tournament Name", "required");
$this->form_validation->set_rules("entry_fee", "Entry Fee", "required|numeric");
$this->form_validation->set_rules("start_date", "Start Date", "required");
$this->form_validation->set_rules("end_date", "End date", "required");
$this->form_validation->set_rules("win_amount", "Win Amount", "required");
$this->form_validation->set_rules("time_slot", "Time Slot", "required");
$array = array();
if($this->form_validation->run())
{
$tid = $this->input->post('tid'); // Get the tournament ID
$data = array(
'tname' => trim($this->input->post('tname')),
'entry_fee' => trim($this->input->post('entry_fee')),
'start_date' => trim($this->input->post('start_date')),
'end_date' => trim($this->input->post('end_date')),
'win_amount' => trim($this->input->post('win_amount')),
'time_slot' => trim($this->input->post('time_slot')),
);
$this->api_model->update_api($tid, $data);
$array = array(
'success' => true
);
}
else
{
$array = array(
'error' => true,
'tname_error' => form_error('tname'),
'entry_fee_error' => form_error('entry_fee'),
'start_date_error' => form_error('start_date'),
'end_date_error' => form_error('end_date'),
'win_amount_error' => form_error('win_amount'),
'time_slot_error' => form_error('time_slot')
);
}
echo json_encode($array, true);
}
function delete()
{
if($this->input->post('id'))
{
if($this->api_model->delete_single_user($this->input->post('id')))
{
$array = array(
'success' => true
);
}
else
{
$array = array(
'error' => true
);
}
echo json_encode($array);
}
}
public function user_join_tournament()
{
$user_id = $this->input->post('user_id');
$tid = $this->input->post('tid');
$round = $this->input->post('round');
if (empty($user_id) || empty($tid)) {
$response['error_code'] = 406;
$response['message'] = "Required Parameter Missing";
echo json_encode($response);
exit();
}
$where_user = '(user_id="'.$user_id.'")';
$get_wallet_amount = $this->api_model->getData($tbl = "tbl_user", $where_user);
$where_tournament = '(tid= "' . $tid . '")';
$t_data = $this->api_model->getData('tournament', $where_tournament);
if (empty($get_wallet_amount) || empty($t_data)) {
$response['error_code'] = 404;
$response['message'] = "User or Tournament Not Found";
echo json_encode($response);
exit();
}
$send_data = $get_wallet_amount['wallet_amount'];
if ($t_data['entry_fee'] > $send_data) {
$response['error_code'] = 404;
$response['message'] = "Insufficient Balance";
echo json_encode($response);
exit();
}
$deducted_amount = $send_data - $t_data['entry_fee'];
$update_data = array('wallet_amount' => $deducted_amount);
$update_user_wallet = $this->api_model->editData2($tbl = 'tbl_user', $update_data, $where_user);
$address_data = array(
'user_id' => $user_id,
'tid' => $tid,
'round' => $round,
);
$insert_id = $this->api_model->insertData('tournament_registrations', $address_data);
if ($update_user_wallet && $insert_id) {
$response['error_code'] = 200;
$response['message'] = "User Joined Successfully";
echo json_encode($response);
exit();
} else {
$response['error_code'] = 404;
$response['message'] = "Something Went Wrong";
echo json_encode($response);
exit();
}
}
// public function get_joined_user_tournament()
// {
// $tid = $this->input->post('tid');
// if (!empty($tid)) {
// $where_condition = '(tid= "' . $tid . '")';
// $data = $this->api_model->getAllData('tournament_registrations', $where_condition);
// if (!empty($data)) {
// $users_data = array();
// foreach ($data as $dat) {
// $where = '(user_id= "' . $dat['user_id'] . '")';
// $user_data = $this->api_model->getData('tbl_user', $where);
// $where_1 = '(tid= "' . $dat['tid'] . '")';
// $t_data = $this->api_model->getData('tournament', $where_1);
// $u_data = array(
// 'id' => $dat['id'],
// 'registration_time' => $dat['registration_time'],
// 'user_name' => $user_data['username'],
// 'profile_photo' => base_url() . $user_data['profile_photo'],
// );
// $users_count = count($data);
// $users_data[] = $u_data;
// }
// $response['error_code'] = 200;
// $response['message'] = "Success";
// $response['tid'] = $dat['tid'];
// $response['tournament_name'] = $t_data['tname'];
// $response['users_count'] = $users_count;
// $response['data'] = $users_data;
// echo json_encode($response);
// exit();
// } else {
// $response['error_code'] = 404;
// $response['message'] = "No Data Found";
// echo json_encode($response);
// exit();
// }
// } else {
// $response['error_code'] = 406;
// $response['message'] = "Required Parameter Missing";
// echo json_encode($response);
// exit();
// }
// }
// public function get_joined_user_tournament()
// {
// $tid = $this->input->post('tid'); // Change from post to get
// if (!empty($tid)) {
// $where_condition = '(tid= "' . $tid . '")';
// $data = $this->api_model->getAllData('tournament_registrations', $where_condition);
// if (!empty($data)) {
// $users_data = array();
// foreach ($data as $dat) {
// $where = '(user_id= "' . $dat['user_id'] . '")';
// $user_data = $this->api_model->getData('tbl_user', $where);
// $where_1 = '(tid= "' . $dat['tid'] . '")';
// $t_data = $this->api_model->getData('tournament', $where_1);
// $u_data = array(
// 'id' => $dat['id'],
// 'registration_time' => $dat['registration_time'],
// 'user_name' => $user_data['username'],
// 'user_id' => $user_data['user_id'],
// 'profile_photo' => base_url() . $user_data['profile_photo'],
// 'round' => $dat['round'],
// );
// $users_count = count($data);
// $users_data[] = $u_data;
// }
// $response['error_code'] = 200;
// $response['message'] = "Success";
// $response['tid'] = $dat['tid'];
// $response['tournament_name'] = $t_data['tname'];
// $response['users_count'] = $users_count;
// $response['data'] = $users_data;
// echo json_encode($response);
// exit();
// } else {
// $response['error_code'] = 404;
// $response['message'] = "No Data Found";
// echo json_encode($response);
// exit();
// }
// } else {
// $response['error_code'] = 406;
// $response['message'] = "Required Parameter Missing";
// echo json_encode($response);
// exit();
// }
// }
public function get_joined_user_tournament()
{
$tid = $this->input->post('tid'); // Change from post to get
if (!empty($tid)) {
$where_condition = '(tid= "' . $tid . '")';
$data = $this->api_model->getAllData('tournament_registrations', $where_condition);
if (!empty($data)) {
$users_data = array();
$highest_round = 0; // Initialize to 0
foreach ($data as $dat) {
$where = '(user_id= "' . $dat['user_id'] . '")';
$user_data = $this->api_model->getData('tbl_user', $where);
$where_1 = '(tid= "' . $dat['tid'] . '")';
$t_data = $this->api_model->getData('tournament', $where_1);
$round = (int)$dat['round']; // Convert round to integer
// If the current round is higher than the stored highest round
if ($round > $highest_round) {
$highest_round = $round;
$users_data = array(); // Reset the array for the new highest round
}
// If the current round is equal to the highest round or the first iteration
if ($round >= $highest_round) {
$u_data = array(
'id' => $dat['id'],
'registration_time' => $dat['registration_time'],
'user_name' => $user_data['username'],
'user_id' => $user_data['user_id'],
'profile_photo' => base_url() . $user_data['profile_photo'],
'round' => $round,
);
// Add $u_data to $users_data array
$users_data[] = $u_data;
}
}
$users_count = count($users_data);
// Check if any user data is present
if ($users_count > 0) {
$response['error_code'] = 200;
$response['message'] = "Success";
$response['tid'] = $dat['tid'];
$response['tournament_name'] = $t_data['tname'];
$response['users_count'] = $users_count;
$response['data'] = $users_data;
} else {
$response['error_code'] = 404;
$response['message'] = "No Data Found";
}
echo json_encode($response);
exit();
} else {
$response['error_code'] = 404;
$response['message'] = "No Data Found";
echo json_encode($response);
exit();
}
} else {
$response['error_code'] = 406;
$response['message'] = "Required Parameter Missing";
echo json_encode($response);
exit();
}
}
// public function calculate_winnings()
// {
// $tid = $this->input->post('tid');
// $participants = $this->api_model->get_tournament_participants($tid);
// usort($participants, function ($a, $b) {
// // Compare rounds first
// if ($a['round'] != $b['round']) {
// return $b['round'] - $a['round'];
// } else {
// // If rounds are the same, compare scores
// return $b['score'] - $a['score'];
// }
// });
// // Add rank to each participant
// foreach ($participants as $key => $participant) {
// $participants[$key]['rank'] = $key + 1;
// }
// $totalWinnings = $this->api_model->get_tournament_win_amount($tid);
// $winningsDistribution = array();
// $this->api_model->update_winnings_in_database($winningsDistribution, $tid);
// $response['status'] = 'success';
// $response['message'] = 'Winnings calculated for the tournament';
// $response['participants'] = $participants;
// echo json_encode($response);
// }
///main
public function calculate_winnings()
{
$tid = $this->input->post('tid');
$participants = $this->api_model->get_tournament_participants($tid);
usort($participants, function ($a, $b) {
if ($a['round'] != $b['round']) {
return $b['round'] - $a['round'];
} else {
return $b['score'] - $a['score'];
}
});
foreach ($participants as $key => $participant) {
$participants[$key]['rank'] = $key + 1;
}
$totalWinnings = $this->api_model->get_tournament_win_amount($tid);
$adminShare = 0.2 * $totalWinnings;
$playersShare = 0.8 * $totalWinnings;
$numPlayersToDistribute = ceil(0.2 * count($participants));
$winningsDistribution = array();
for ($i = 0; $i < $numPlayersToDistribute; $i++) {
$rank = $participants[$i]['rank'];
$percentage = 1 / pow(2, $rank); // 1/2, 1/4, 1/8, ...
$winningsDistribution[$participants[$i]['user_id']] = $percentage * $playersShare;
}
$this->api_model->update_winnings_in_database($winningsDistribution, $tid);
// $this->api_model->update_admin_wallet($adminShare);
$response['status'] = 'success';
$response['message'] = 'Winnings calculated for the tournament';
$response['winningsDistribution'] = $winningsDistribution;
$response['participants'] = $participants;
echo json_encode($response);
}
public function get_leaderboard()
{
$tid = $this->input->post('tid');
$participants = $this->api_model->get_tournament_leaderboard($tid);
usort($participants, function ($a, $b) {
// Compare rounds first
if ($a['round'] != $b['round']) {
return $b['round'] - $a['round'];
} else {
// If rounds are the same, compare scores
return $b['score'] - $a['score'];
}
});
// Add rank to each participant
foreach ($participants as $key => $participant) {
$participants[$key]['rank'] = $key + 1;
}
$response['status'] = 'success';
$response['message'] = 'Leaderboard retrieved successfully';
$response['leaderboard'] = $participants;
echo json_encode($response);
}
public function declare_winners()
{
$tid = $this->input->post('tid');
$winners = $this->api_model->get_tournament_winners($tid);
$response['status'] = 'success';
$response['message'] = 'Winners declared for the tournament';
$response['winners'] = $winners;
echo json_encode($response);
}
// public function get_leaderboard()
// {
// $tid = $this->input->post('tid');
// if (empty($tid)) {
// $response['status'] = 'error';
// $response['message'] = 'Tournament ID is required.';
// echo json_encode($response);
// return;
// }
// $leaderboard = $this->api_model->get_tournament_leaderboard($tid);
// $response['status'] = 'success';
// $response['message'] = 'Leaderboard data retrieved successfully.';
// $response['leaderboard'] = $leaderboard;
// echo json_encode($response);
// }
public function get_wallet_data()
{
$user_id = $this->input->post('user_id');
$where = '(user_id="'.$user_id.'")';
$get_bet_won_data = $this->api_model->getData($tbl="tbl_user",$where);
if ($get_bet_won_data) {
$send_data = $get_bet_won_data['wallet_amount'];
$response['error_code'] = "200";
$response['message'] = "Success";
$response['wallet_amount'] = $send_data;
echo json_encode($response);
exit();
}
else {
$response['error_code'] = "400";
$response['message'] = "Failed";
echo json_encode($response);
exit();
}
}
// public function get_leaderboard()
// {
// $tid = $this->input->post('tid');
// if (empty($tid)) {
// $response['status'] = 'error';
// $response['message'] = 'Tournament ID is required.';
// echo json_encode($response);
// return;
// }
// $is_tournament_completed = $this->api_model->check_tournament_completion_status($tid);
// if ($is_tournament_completed) {
// $leaderboard = $this->api_model->get_tournament_leaderboard($tid);
// $response['error_code'] = 200;
// $response['status'] = 'success';
// $response['message'] = 'Leaderboard data retrieved successfully.';
// $response['leaderboard'] = $leaderboard;
// } else {
// $response['error_code'] = 206;
// $response['status'] = 'info';
// $response['message'] = 'Tournament is ongoing. Please wait for completion.';
// }
// echo json_encode($response);
// }
public function update_user_score()
{
$user_id = $this->input->post('user_id');
$score = $this->input->post('score');
$tid = $this->input->post('tid');
$round = $this->input->post('round');
if (empty($user_id) || empty($score) || empty($tid) || empty($round)) {
$response['status'] = 'error';
$response['message'] = 'User ID, score, round, and tournament ID (tid) are required.';
echo json_encode($response);
return;
}
$this->api_model->update_user_score($user_id, $score, $tid,$round);
$response['status'] = 'success';
$response['message'] = 'User score updated successfully.';
echo json_encode($response);
}
public function update_tournament_user_playing_status()
{
$user_id = $this->input->post('user_id');
$tid = $this->input->post('tid');
$is_match_completed = $this->input->post('is_match_completed');
$opponent_id = $this->input->post('opponent_id');
$match_status = $this->input->post('match_status');
$is_tournament_won = $this->input->post('is_tournament_won');
if (empty($tid) || empty($user_id) || !is_numeric($user_id) || !in_array($is_match_completed, array(0, 1)) || !is_numeric($opponent_id) || !in_array($match_status, array('1', '0', '2', '3')) || !in_array($is_tournament_won, array(0, 1))) {
$response['status'] = 'error';
$response['message'] = 'Invalid or missing parameters.';
echo json_encode($response);
return;
}
$data = array(
'is_match_completed' => $is_match_completed,
'opponent_id' => $opponent_id,
'match_status' => $match_status,
'is_tournament_won' => $is_tournament_won,
);
$this->api_model->update_tournament_registration($user_id, $data, $tid);
$response['status'] = 'success';
$response['message'] = 'Tournament registration updated successfully.';
echo json_encode($response);
}
public function check_tournament_completion()
{
$tid = $this->input->post('tid');
if (empty($tid) || !is_numeric($tid)) {
$response['status'] = 'error';
$response['message'] = 'Invalid or missing tournament ID.';
echo json_encode($response);
return;
}
$result = $this->api_model->check_tournament_completion($tid);
$response['status'] = 'success';
$response['is_tournament_completed'] = $result['is_tournament_completed'];
$response['message'] = $result['message'];
echo json_encode($response);
}
public function played_game_history(){
if($this->input->post('user_id')!=null){
$user_id = $this->input->post('user_id');
$where = '(user_id = "'.$user_id.'")';
$user_data = $this->api_model->getData($tbl = 'tbl_user',$where);
if(!empty($user_data)){
$where1 ='(status = 1)';
$user = $this->api_model->getData($tbl = 'tbl_user', $where1);
if(empty($user)){
$response['error_code'] = 404;
$response['message'] = 'User not registered';
echo json_encode($response);
exit();
}else{
$player2 = $this->input->post('player2_id');
$game_type = $this->input->post('game_type');
$time_slot = $this->input->post('time_slot');
$status = $this->input->post('status');
$result = $this->input->post('result');
$arr = array(
"player1_id" => $user_id,
"player2_id" => $player2,
"game_type" =>$game_type,
"time_slot"=>$time_slot,
"status"=>$status,
"result" => $result
);
$insert_player = $this->api_model->insertData($tbl = 'tbl_game_data', $arr);
if($insert_player){
$response['error_code'] = 200;
$response['message'] = 'Registered Successfully!';
echo json_encode($response);
exit();
}else{
$response['error_code'] = 403;
$response['message'] = 'Data is not inserted successfully!';
echo json_encode($response);
exit();
}
}
}else{
$response['error_code'] = '404';
$response['message'] = 'Incorrect User id';
echo json_encode($response);
exit();
}
}else{
$response['error_code'] = 400;
$response['message'] = 'required parameter missing!';
echo json_encode($response);
exit();
}
}
//get_user_leaderboard
public function get_leaderboard_data() {
$where = '(status = 1) OR (status=0) OR (status= 0.5)';
$leader_data = $this->get_model->get_all1($tbl = 'tbl_game_data', $where);
$user_arr = array();
$i = 1;
foreach ($leader_data as $leader_key => $leader_value) {
$user_id = $leader_value['player1_id'];
$tbl = 'tbl_game_data';
$where = '(status = 1 AND player1_id = "' . $user_id . '")';
$win_count = $this->get_model->count_rows($tbl, $where);
$where = '(status = 0.5) AND (player1_id = "' . $user_id . '")';
$draw_count = $this->get_model->count_rows($tbl, $where);
$where = '(status = 0) AND (player1_id = "' . $user_id . '")';
$lost_count = $this->get_model->count_rows($tbl, $where);
$win = $win_count;
$drawn = $draw_count;
$lost = $lost_count;
$where1 = '(user_id = "' . $user_id . '")';
$user_data = $this->get_model->get_all($tbl = 'tbl_user', $where1);
foreach ($user_data as $user_key => $user_value) {
$country = $user_value['country'];
}
$points = $win_count*1+$draw_count*0.5+$lost_count*0;
$game_arr[] = array(
"sr_no" => $i++,
"profile_photo" => $user_value['profile_photo'],
"name" => $user_value['name'],
"win_count"=>$win_count,
"draw_count" =>$draw_count,
"lost_count"=>$lost_count,
"points"=>$points
);
}
if($game_arr){
$response['error_code']= 200;
$response['message'] = "Success";
$response['data']= $game_arr;
echo json_encode($response);
exit();
}else{
$response['error_code']=400;
$response['message'] = "Required parameter missing.";
echo json_encode($response);
}
}
}

View File

@ -0,0 +1,23 @@
<?php
class Tournament extends CI_Controller {
public function register() {
// Get the total number of participants from the registration form
$totalParticipants = $this->input->post('total_participants');
// Calculate the number of rounds
$numberOfRounds = $this->calculateRounds($totalParticipants);
// Pass the number of rounds to the view or store it in the database
$data['numberOfRounds'] = $numberOfRounds;
// Load your view with the tournament information
$this->load->view('tournament_view', $data);
}
}
// Function to calculate the number of rounds
function calculateRounds($totalParticipants) {
return ceil(log($totalParticipants, 2));
}
?>

View File

@ -0,0 +1,132 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Common_controller extends CI_Controller {
public function __construct()
{
parent::__construct();
//$this->load->model('insert_model');
$this->load->model('common_model');
$this->load->model('get_model');
$this->load->library(array('form_validation','session','pagination','email'));
$this->load->helper(array('url','html','form'));
$this->load->library('form_validation');
$this->load->config('email');
}
public function index()
{
$this->load->view('welcome_message');
}
//forgot password
public function forgot_password()
{
$email = $_POST['email'];
$check = $this->get_model->get_by_id('tbl_admin',array('admin_email' => $email));
if($check){
$random = substr(md5(mt_rand()), 0, 24);
$randon = array (
'email_token' => $random
);
$set_pass = $this->common_model->set_token($email, $randon);
$data['link'] = base_url()."Common_controller/reset_password?email=$email&email_token=$random";
//$data1['email'] = $email;
$this->email->from('testingsites.com@gmail.com', 'Reset Password')
->to($email)
->subject('Welcome')
->message($this->load->view('forget_email_template', $data, true));
//->message("email has been sent succesfully".$data, true);
//$this->email->send();
if($this->email->send()){
//$arr = array('msg' => 'Mail has been sent successfully', 'success' =>true);
echo json_encode(array("statusCode"=>200));
}
else {
// $arr = array('msg' => 'Something went wrong try again lator', 'success' =>false);
echo json_encode(array("statusCode"=>204));
}
//email send code
}
else {
echo json_encode(array("statusCode"=>201));
//echo "email not avaialbel";
}
}
public function reset_password(){
$this->load->view('pages/reset_password');
}
public function forgot_pass_check()
{
$password=$_POST['password'];
$cpassword=$_POST['cpassword'];
$email = $_POST['email'];
$token = $_POST['token'];
if($password != $cpassword) {
echo json_encode(array("statusCode"=>201));
exit();
}
$check = $this->get_model->row_getById('tbl_admin', array('admin_email' => $email));
$ctoken = $check->email_token;
if($ctoken != $token){
echo json_encode(array("statusCode"=>202));
exit();
}
else {
$data = array(
'admin_password' => $password,
'email_token' => '__(0876@@@@::://**1asewf7&5%$#^&&**'
);
$set_pass = $this->common_model->set_data('tbl_admin',array('admin_email' => $email ), $data);
if($set_pass){
echo json_encode(array("statusCode"=>200));
}
else {
echo json_encode(array("statusCode"=>204));
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,195 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Login_controller extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
$this->load->library('session');
$this->load->model('auth_model');
}
public function index()
{
$this->load->view('pages/login');
}
public function login_submit()
{
// print_r($_POST); exit();
$email = $this->input->post('email');
$password = $this->input->post('password');
$admin_id = $this->auth_model->check_admin_login($email, $password);
$admin = count($admin_id);
if($admin >= 1){
$newdata = array(
'email' => 'email',
'logged_in' => TRUE,
'admin_id' => $admin_id[0]['admin_id'],
'admin_email' => $admin_id[0]['admin_email'],
'admin_name' => $admin_id[0]['admin_name'],
'admin_photo' => $admin_id[0]['admin_photo'],
'admin_mobile' => $admin_id[0]['admin_mobile'],
);
$this->session->set_userdata($newdata);
redirect('dashboard');
}
else {
$this->session->set_flashdata('login_error', 'Please check Email or Password');
redirect('login');
//echo "wrong email or password";
}
}
public function logout()
{
$user_data = $this->session->all_userdata();
foreach ($user_data as $key => $value) {
if ($key != 'session_id' && $key != 'ip_address' && $key != 'user_agent' && $key != 'last_activity') {
$this->session->unset_userdata($key);
}
}
$this->session->sess_destroy();
redirect('login');
}
function alpha_dash_space($str)
{
return ( ! preg_match("/^([-a-z_ ])+$/i", $str)) ? FALSE : TRUE;
}
public function update_admin_profile()
{
//print_r($_POST); exit();
//$this->form_validation->set_rules('name','Full Name','trim|xss_clean|callback__alpha_dash_space');
$this->form_validation->set_rules('mobile','Mobile','trim|exact_length[10]');
$this->form_validation->set_message('exact_length', 'The Mobile field must be exactly 10 numbers in length.');
if($this->form_validation->run() == false)
{
$this->load->view('pages/profile');
}
else
{
$name = $this->input->post('name');
$email = $this->input->post('email');
$mobile = $this->input->post('mobile');
$config['upload_path'] = 'uploads/';
$config['allowed_types'] = 'jpg|jpeg|png|gif';
//$config['max_size'] = '10000'; // max_size in kb
$config['file_name'] = $_FILES['file']['name'];
// Load upload library
$this->load->library('upload',$config);
// File upload
$this->upload->initialize($config);
if($this->upload->do_upload('file')){
// Get data about the file
$uploadData = $this->upload->data();
$filename = $uploadData['file_name'];
}
else {
$error = array('error' => $this->upload->display_errors());
// print_r($error); exit();
// print_r($config); exit();
$filename = $this->input->post('old_photo');
}
$array = array(
'admin_name' => $name,
'admin_email' => $email,
'admin_mobile' => $mobile,
'admin_photo' => $filename,
);
$this->auth_model->update_profile('tbl_admin', $array);
// echo $data; exit();
// if($data){
$this->session->set_flashdata('update_success', 'Profile Updated Successfully...!');
// $this->load->view('pages/admin_profile');
redirect('./Dashboard_controller/profile');
}
}
public function change_password(){
$old_password = $this->input->post('old_password');
$password = $this->input->post('password');
$confirm_password = $this->input->post('confirm_password');
$admin_id = $this->session->userdata('admin_id');
$old_verify = $this->auth_model->check_password($admin_id,$old_password);
if($old_verify == 0){
$this->session->set_flashdata('error', 'Old Password does not match...!');
$this->load->view('pages/reset_pass');
}
else if($password != $confirm_password){
$this->session->set_flashdata('error', 'Password and Confirm password does not match...!');
$this->load->view('pages/reset_pass');
}
else {
$data = array('admin_password' => $password);
$this->auth_model->update_profile('tbl_admin', $data);
$this->session->set_flashdata('success', 'Password update successfully...!');
// $this->load->view('pages/reset_pass');
redirect('/');
}
}
}

View File

@ -0,0 +1,342 @@
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class PageController extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->model('insert_model');
$this->load->model('get_model');
$this->load->model('common_model');
$this->load->library('pagination');
$this->load->library('email');
$this->load->config('email');
}
public function index()
{
$this->load->view('pages/index');
}
public function login()
{
$this->load->view('pages/login');
}
public function register()
{
$this->load->view('pages/register');
}
// public function time_slot()
// {
// $this->load->view('pages/time_slots');
// }
public function terms()
{
$this->load->view('pages/terms');
}
public function win_games()
{
$id = $this->uri->segment(3);
$where = '(result = "win" AND game_type = 2)';
$win_game = $this->common_model->getAllData($tbl = 'tbl_game_data', $where);
$data['win_game'] = $win_game;
$config['base_url'] = base_url() . "PageController/win_games";
$config['use_page_numbers'] = TRUE;
$config['total_rows'] = $this->get_model->num_row('tbl_game_data');
$config['per_page'] = 3;
$config['url_sigment'] = 3;
$config['num_links'] = 2;
/*start add boostrap class and styles*/
$config['next_link'] = 'Next';
$config['prev_link'] = 'Prev';
$config['first_link'] = false;
$config['last_link'] = false;
$config['full_tag_open'] = '<ul class="pagination listjs-pagination mb-0">';
$config['full_tag_close'] = '</ul>';
$config['attributes'] = ['class' => 'page-link'];
$config['first_tag_open'] = '<li class="page-item">';
$config['first_tag_close'] = '</li>';
$config['prev_tag_open'] = '<li class="page-item">';
$config['prev_tag_close'] = '</li>';
$config['next_tag_open'] = '<li class="page-item">';
$config['next_tag_close'] = '</li>';
$config['last_tag_open'] = '<li class="page-item">';
$config['last_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="page-item active"><span class="page-link">';
$config['cur_tag_close'] = '<span class="sr-only">(current)</span></span></li>';
$config['num_tag_open'] = '<li class="page-item">';
$config['num_tag_close'] = '</li>';
$limit = $config['per_page'];
$page = $this->uri->segment(3);
if ($page > 1) {
$offset = ($page - 1) * $limit;
} else {
$offset = $page;
}
$this->pagination->initialize($config);
$data['win_game'] = $this->get_model->list_by_desc_wh($config['per_page'], $offset, 'tbl_game_data', "id", $where);
$this->load->view('pages/win_games', $data);
}
public function lost_games()
{
$where1 = '(result = "lost")';
$lost_game = $this->common_model->getAllData($tbl = 'tbl_game_data', $where1);
$data['lost_game'] = $lost_game;
$config['base_url'] = base_url() . "PageController/lost_games";
$config['use_page_numbers'] = TRUE;
$config['total_rows'] = $this->get_model->num_row('tbl_game_data');
$config['per_page'] = 3;
$config['url_sigment'] = 3;
$config['num_links'] = 2;
/*start add boostrap class and styles*/
$config['next_link'] = 'Next';
$config['prev_link'] = 'Prev';
$config['first_link'] = false;
$config['last_link'] = false;
$config['full_tag_open'] = '<ul class="pagination listjs-pagination mb-0">';
$config['full_tag_close'] = '</ul>';
$config['attributes'] = ['class' => 'page-link'];
$config['first_tag_open'] = '<li class="page-item">';
$config['first_tag_close'] = '</li>';
$config['prev_tag_open'] = '<li class="page-item">';
$config['prev_tag_close'] = '</li>';
$config['next_tag_open'] = '<li class="page-item">';
$config['next_tag_close'] = '</li>';
$config['last_tag_open'] = '<li class="page-item">';
$config['last_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="page-item active"><span class="page-link">';
$config['cur_tag_close'] = '<span class="sr-only">(current)</span></span></li>';
$config['num_tag_open'] = '<li class="page-item">';
$config['num_tag_close'] = '</li>';
$limit = $config['per_page'];
$page = $this->uri->segment(3);
if ($page > 1) {
$offset = ($page - 1) * $limit;
} else {
$offset = $page;
}
$this->pagination->initialize($config);
$data['lost_game'] = $this->get_model->list_by_desc_wh($config['per_page'], $offset, 'tbl_game_data', "id", $where1);
$this->load->view('pages/lost_games', $data);
}
public function drawn_games()
{
$where2 = '(result = "drawn")';
$drawn_game = $this->common_model->getAllData($tbl = 'tbl_game_data', $where2);
$data['drawn_game'] = $drawn_game;
$config['base_url'] = base_url() . "PageController/drawn_games";
$config['use_page_numbers'] = TRUE;
$config['total_rows'] = $this->get_model->num_row('tbl_game_data');
$config['per_page'] = 3;
$config['url_sigment'] = 3;
$config['num_links'] = 2;
/*start add boostrap class and styles*/
$config['next_link'] = 'Next';
$config['prev_link'] = 'Prev';
$config['first_link'] = false;
$config['last_link'] = false;
$config['full_tag_open'] = '<ul class="pagination listjs-pagination mb-0">';
$config['full_tag_close'] = '</ul>';
$config['attributes'] = ['class' => 'page-link'];
$config['first_tag_open'] = '<li class="page-item">';
$config['first_tag_close'] = '</li>';
$config['prev_tag_open'] = '<li class="page-item">';
$config['prev_tag_close'] = '</li>';
$config['next_tag_open'] = '<li class="page-item">';
$config['next_tag_close'] = '</li>';
$config['last_tag_open'] = '<li class="page-item">';
$config['last_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="page-item active"><span class="page-link">';
$config['cur_tag_close'] = '<span class="sr-only">(current)</span></span></li>';
$config['num_tag_open'] = '<li class="page-item">';
$config['num_tag_close'] = '</li>';
$limit = $config['per_page'];
$page = $this->uri->segment(3);
if ($page > 1) {
$offset = ($page - 1) * $limit;
} else {
$offset = $page;
}
$this->pagination->initialize($config);
$data['drawn_game'] = $this->get_model->list_by_desc_wh($config['per_page'], $offset, 'tbl_game_data', "id", $where2);
$this->load->view('pages/drawn_games', $data);
}
// public function withdrawl_request()
// {
// $this->load->view('pages/withdrawl_request');
// }
public function wallet_transaction()
{
$this->load->view('pages/wallet_transaction');
}
public function tournament_participant()
{
$this->load->view('pages/tournament_participant');
}
public function add_country()
{
$this->load->view('pages/add_country');
}
public function user_payment_history()
{
$this->load->view('pages/user_payment_history');
}
public function leaderboard()
{
$where = '(status = 1) OR (status=0) OR (status= 0.5)';
$leader_data = $this->get_model->get_all1($tbl = 'tbl_game_data', $where);
// var_dump($leader_data);
$user_arr = array();
$i = 1;
foreach ($leader_data as $leader_key => $leader_value) {
$user_id = $leader_value['player1_id'];
$tbl = 'tbl_game_data';
$where = '(status = 1 AND player1_id = "' . $user_id . '")';
$win_count = $this->get_model->count_rows($tbl, $where);
$where = '(status = 0.5) AND (player1_id = "' . $user_id . '")';
$draw_count = $this->get_model->count_rows($tbl, $where);
$where = '(status = 0) AND (player1_id = "' . $user_id . '")';
$lost_count = $this->get_model->count_rows($tbl, $where);
$win = $win_count;
$drawn = $draw_count;
$lost = $lost_count;
$where1 = '(user_id = "' . $user_id . '")';
$user_data = $this->get_model->get_all($tbl = 'tbl_user', $where1);
// var_dump($user_data);
foreach ($user_data as $user_key => $user_value) {
$country = $user_value['country'];
}
$where2 = '(id = "' . $country . '")';
$country_data = $this->get_model->get_all($tbl = 'tbl_country', $where2);
foreach ($country_data as $c_key => $c_value) {
$country = $c_value['country_name'];
}
$points = $win_count*1+$draw_count*0.5+$lost_count*0;
$user_arr[] = array(
"sr_no" => $i++,
"profile_photo" => $user_value['profile_photo'],
"name" => $user_value['name'],
"email" => $user_value['email'],
"country_name" => $country,
"win"=>$win,
"drawn" =>$drawn,
"lost"=>$lost,
"points"=>$points
);
}
$config['base_url'] = base_url('leaderboard');
$config['use_page_numbers'] = TRUE;
$config['total_rows'] = count($user_arr);
$config['per_page'] = 10;
$config['uri_segment'] = 2;
$config['num_links'] = 2;
$config['next_link'] = '>';
$config['prev_link'] = '<';
$config['first_link'] = false;
$config['last_link'] = false;
$config['full_tag_open'] = '<ul class="pagination pagination-circle">';
$config['full_tag_close'] = '</ul>';
$config['attributes'] = ['class' => 'page-link'];
$config['first_tag_open'] = '<li class="page-item">';
$config['first_tag_close'] = '</li>';
$config['prev_tag_open'] = '<li class="page-item">';
$config['prev_tag_close'] = '</li>';
$config['next_tag_open'] = '<li class="page-item">';
$config['next_tag_close'] = '</li>';
$config['last_tag_open'] = '<li class="page-item">';
$config['last_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="active page-item"><span class="page-link">';
$config['cur_tag_close'] = '<span class="sr-only">(current)</span></span></li>';
$config['num_tag_open'] = '<li class="page-item">';
$config['num_tag_close'] = '</li>';
$limit = $config['per_page'];
$page = $this->uri->segment(2);
$this->pagination->initialize($config);
if ($page > 1) {
$offset = ($page - 1) * $limit;
} else {
$offset = $page;
}
$page_data = array_slice($user_arr, $offset, $limit);
if (!empty($user_arr)) {
$data['user_data'] = $page_data;
// var_dump($page_data);
} else {
$data['user_data'] = array();
}
$this->load->view('pages/leaderboard', $data);
}
public function tournament_history()
{
$this->load->view('pages/tournament_history');
}
public function tournament_user()
{
$this->load->view('pages/tournament_user');
}
public function forgot_password()
{
$this->load->view('pages/forgot_password');
}
public function first_live_tournament()
{
$this->load->view('pages/first_live_tournament');
}
public function second_live_tournament()
{
$this->load->view('pages/first_live_tournament');
}
public function choose_player()
{
$this->load->view('pages/choose_player');
}
public function all_round()
{
$this->load->view('pages/all_round');
}
}

View File

@ -0,0 +1,200 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Test_api extends CI_Controller {
function index()
{
$this->load->view('api_view');
}
function action()
{
if($this->input->post('data_action'))
{
$data_action = $this->input->post('data_action');
if($data_action == "Delete")
{
$api_url = "http://localhost/chess/admin/api/delete";
$form_data = array(
'id' => $this->input->post('user_id')
);
$client = curl_init($api_url);
curl_setopt($client, CURLOPT_POST, true);
curl_setopt($client, CURLOPT_POSTFIELDS, $form_data);
curl_setopt($client, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($client);
curl_close($client);
echo $response;
}
if($data_action == "Edit")
{
$api_url = "http://localhost/chess/admin/api/update";
$form_data = array(
'tid' => $this->input->post('tid'),
'tname' => $this->input->post('tname'),
'entry_fee' => $this->input->post('entry_fee'),
'start_date' => $this->input->post('start_date'),
'end_date' => $this->input->post('end_date'),
'win_amount' => $this->input->post('win_amount'),
'time_slot' => $this->input->post('time_slot')
);
$client = curl_init($api_url);
curl_setopt($client, CURLOPT_POST, true);
curl_setopt($client, CURLOPT_POSTFIELDS, $form_data);
curl_setopt($client, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($client);
curl_close($client);
echo $response;
}
if($data_action == "fetch_single")
{
$api_url = "http://localhost/chess/admin/api/fetch_single";
$form_data = array(
'tid' => $this->input->post('tid')
);
$client = curl_init($api_url);
curl_setopt($client, CURLOPT_POST, true);
curl_setopt($client, CURLOPT_POSTFIELDS, $form_data);
curl_setopt($client, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($client);
curl_close($client);
echo $response;
}
if($data_action == "Insert")
{
$api_url = "http://localhost/chess/admin/api/insert";
$form_data = array(
'tname' => $this->input->post('tname'),
'entry_fee' => $this->input->post('entry_fee'),
'start_date' => $this->input->post('start_date'),
'end_date' => $this->input->post('end_date'),
'win_amount' => $this->input->post('win_amount'),
'time_slot' => $this->input->post('time_slot'),
'round' => $this->input->post('round')
);
$client = curl_init($api_url);
curl_setopt($client, CURLOPT_POST, true);
curl_setopt($client, CURLOPT_POSTFIELDS, http_build_query($form_data));
curl_setopt($client, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($client);
curl_close($client);
echo $response;
}
if($data_action == "fetch_all")
{
$api_url = "http://localhost/chess/admin/api";
$client = curl_init($api_url);
curl_setopt($client, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($client);
curl_close($client);
$result = json_decode($response);
$output = '';
if (is_array($result) && count($result) > 0)
{
foreach($result as $row)
{
$output .= '
<tr>
<td>'.$row->tid.'</td>
<td>'.$row->tname.'</td>
<td>'.$row->entry_fee.'</td>
<td>'.$row->start_date.'</td>
<td>'.$row->end_date.'</td>
<td>'.$row->win_amount.'</td>
<td>'.$row->time_slot.'</td>
<td><butto type="button" name="round" class="btn btn-warning btn-xs round" id="'.$row->tid.'">Round</button></td>
<td><butto type="button" name="edit" class="btn btn-warning btn-xs edit" id="'.$row->tid.'">Edit</button></td>
<td><button type="button" name="delete" class="btn btn-danger btn-xs delete" id="'.$row->tid.'">Delete</button></td>
</tr>
';
}
}
else
{
$output .= '
<tr>
<td colspan="4" align="center">No Data Found</td>
</tr>
';
}
echo $output;
}
}
}
}
?>

View File

@ -0,0 +1,61 @@
<?php
class Tournaments extends CI_Controller {
public function update($tournament_id = null) {
// Check if $tournament_id is provided
if ($tournament_id === null) {
// Handle the case where $tournament_id is not provided
// You may redirect to an error page or perform other actions
}
$this->load->model('Tournament_model');
// If the form is submitted, update the tournament
if ($this->input->post()) {
$postData = $this->input->post();
var_dump($postData);
$this->Tournament_model->update_tournament($tournament_id, $postData);
// Debugging: Check if the update query is executed
echo $this->db->last_query();
$this->session->set_flashdata('success', 'Tournament updated successfully.');
redirect('manage_tournament'); // Redirect to the tournament list or details page
}
// Load the tournament details for the form
$data['tournament'] = $this->Tournament_model->get_tournament($tournament_id);
$this->load->view('update_tournament', $data);
}
public function delete() {
$tournamentId = $this->input->post('tournament_id');
// Add your model function to delete the tournament record by ID
$this->load->model('Tournament_model');
$this->Tournament_model->delete_tournament($tournamentId);
// You can return a response if needed
//$this->session->set_flashdata('success', 'Tournament deleted successfully.');
//echo json_encode(['message' => 'Tournament deleted successfully']);
echo json_encode(array(
"statusCode"=>200
));
}
}
?>

View File

@ -0,0 +1,414 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class User_management extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->model('insert_model');
$this->load->model('get_model');
$this->load->model('common_model');
$this->load->library('pagination');
$this->load->library('email');
$this->load->config('email');
if(!$this->session->userdata('admin_name')){
redirect('login');
}
}
public function send_reply()
{
$email = $_POST['email'];
$message = $_POST['message'];
$id = $_POST['id'];
$data['message'] = $message;
//$data1['email'] = $email;
$this->email->from('testingsites.com@gmail.com', 'Reply from Chess Admin')
->to($email)
->subject('Reply from Chess Admin')
->message($this->load->view('reply_template', $data, true));
//->message("email has been sent succesfully".$data, true);
//$this->email->send();
if($this->email->send()){
$status = 1;
}
else {
$status = 2;
}
$reply_date = date('Y-m-d');
$data = array(
'rply_msg' => $message,
'rply_status' => $status,
'rply_date' => $reply_date
);
$where= array('id' => $id);
$this->common_model->update('user_contact_us', $data, $where);
redirect('contact_us',$this->session->set_flashdata('success', 'Reply Sent Successfully',3));
//email send code
}
public function add_testi()
{
//print_r($_FILES); die;
if(isset($_FILES['file']) && $_FILES['file'] != '') {
// echo "in"; die;
$config['upload_path'] = './assets/images/';
$config['allowed_types'] = 'jpg|jpeg|gif|png';
//$config['max_size'] = '10000'; // max_size in kb
$config['file_name'] = $_FILES['file']['name'];
// Load upload library
$this->load->library('upload',$config);
// File upload
$this->upload->initialize($config);
if($this->upload->do_upload('file')){
// Get data about the file
$uploadData = $this->upload->data();
$filename = $uploadData['file_name'];
$path = '/assets/images/';
$msg = array(
'name' => $_POST['name'],
'message' => $_POST['message'],
'image' => $path.$filename
);
$insert = $this->insert_model->insert('tbl_testimonials', $msg);
if($insert){
$this->session->set_flashdata('success', 'Testimonial Added Successfully...!');
redirect('client_testimonial');
}
}else{
$error = array('error' => $this->upload->display_errors());
$this->session->set_flashdata('error',$error['error']);
redirect('client_testimonial');
}
}
else {
$this->session->set_flashdata('error', 'Please Upload Image...!');
redirect('client_testimonial');
}
}
public function edit_testi()
{
$id=$this->input->post("id");
// print_r($_FILES); exit();
if(isset($_FILES['file_e']) && !empty($_FILES['file_e']))
{
$path = '/assets/images/';
$config['upload_path'] = './assets/images/';
$config['allowed_types'] = '*';
$config['file_name'] = $_FILES['file_e']['name'];
$this->load->library('upload', $config);
$this->upload->initialize($config);
if ( $this->upload->do_upload('file_e'))
{
$upload_data=$this->upload->data();
$image_name=$upload_data['file_name'];
// delete old file from server, if exists...
$old_img=$this->input->post('photo');
$image_path = FCPATH .'assets/images/';
$filename = $image_path . $old_img;
$image_name=$path.$image_name;
if (file_exists($filename))
{
unlink($filename);
//echo "file deleted on server successfully"; exit();
}
}
else
{
$image_name=$this->input->post('photo');
}
}
else{
$image_name=$this->input->post('photo');
}
$data = array(
'name' => $_POST['name'],
'message' => $_POST['message'],
'image'=> $image_name,
);
$where= array('id' => $id);
$this->common_model->update('tbl_testimonials', $data, $where);
redirect('client_testimonial',$this->session->set_flashdata('success', 'Testimonial Update Successfully',3));
}
// add country
public function add_country()
{
//print_r($_FILES); die;
if(isset($_FILES['file']) && $_FILES['file'] != '') {
// echo "in"; die;
$config['upload_path'] = './assets/images/country/';
$config['allowed_types'] = 'jpg|jpeg|gif|png';
//$config['max_size'] = '10000'; // max_size in kb
$config['file_name'] = $_FILES['file']['name'];
// Load upload library
$this->load->library('upload',$config);
// File upload
$this->upload->initialize($config);
if($this->upload->do_upload('file')){
// Get data about the file
$uploadData = $this->upload->data();
$filename = $uploadData['file_name'];
$path = 'assets/images/country/';
$msg = array(
'country_name' => $_POST['name'],
'country_flag' => $path.$filename
);
$insert = $this->insert_model->insert('tbl_country', $msg);
if($insert){
$this->session->set_flashdata('success', 'Country Added Successfully...!');
redirect('add_country');
}
}else{
$error = array('error' => $this->upload->display_errors());
$this->session->set_flashdata('error',$error['error']);
redirect('add_country');
}
}
else {
$this->session->set_flashdata('error', 'Please Upload Image...!');
redirect('add_country');
}
}
public function edit_country()
{
$id=$this->input->post("id");
if(isset($_FILES['file_e']) && !empty($_FILES['file_e']))
{
$path = 'assets/images/country/';
$config['upload_path'] = './assets/images/country/';
$config['allowed_types'] = '*';
$config['file_name'] = $_FILES['file_e']['name'];
$this->load->library('upload', $config);
$this->upload->initialize($config);
if ( $this->upload->do_upload('file_e'))
{
$upload_data=$this->upload->data();
$image_name=$upload_data['file_name'];
// delete old file from server, if exists...
$old_img=$this->input->post('photo');
$image_path = FCPATH .'assets/images/country/';
$filename = $image_path . $old_img;
$image_name=$path.$image_name;
if (file_exists($filename))
{
unlink($filename);
//echo "file deleted on server successfully"; exit();
}
}
else
{
$image_name=$this->input->post('photo');
}
}
else{
$image_name=$this->input->post('photo');
}
$data = array(
'country_name' => $_POST['name'],
'country_flag'=> $image_name,
);
$where= array('id' => $id);
$this->common_model->update('tbl_country', $data, $where);
redirect('add_country',$this->session->set_flashdata('success', 'Country Update Successfully',3));
}
public function insert_lang()
{
$msg = array(
'name' => $this->input->post('lang')
);
$insert = $this->insert_model->insert('tbl_lang', $msg);
if($insert){
$this->session->set_flashdata('success', 'Language Added Successfully...!');
redirect('add_language');
}
}
public function edit_lang()
{
$id=$this->input->post("id");
$lang=$this->input->post("lang");
$data=array('name'=>$lang);
$where= array('id' => $id);
$this->common_model->update('tbl_lang', $data, $where);
redirect('add_language',$this->session->set_flashdata('success', 'Language Update Successfully',3));
}
public function change_status()
{
// print_r($_POST); die;
$id = $this->input->post('id');
$status = $this->input->post('status');
// 'updated_at' => date('Y-m-d H:i:s')
$where = array('user_id' => $id);
$data = array('is_active' => $status );
$update = $this->common_model->update_data('tbl_user',$data, $where);
$arr = array('success' => false, 'data' => '');
if($update){
$arr = array('success' => true, 'data' => $update);
}
echo json_encode($arr);
}
//user details page
public function view_user($id)
{
$user_id = $id;
$where = '(user_id ="'.$user_id.'")';
// var_dump($user_id);
$data['user'] = $this->get_model->get_by_id('tbl_user', $where);
$data['bank'] = $this->get_model->get_by_id('user_bank_details', $where);
$where1 = '(player1_id = "'.$id.'")';
// var_dump($id);
$view_user_data = $this->get_model->get_all($tbl = 'tbl_game_data',$where1);
$data['view_user_data']= $view_user_data;
$config = [
'base_url' => base_url('view_user/'.$id."/"),
'per_page' => 5,
'total_rows' => count($view_user_data),
'next_link' => '>',
'prev_link' => '<',
'first_link' => false,
'last_link' => false,
'full_tag_open' => '<ul class="pagination pagination-circle">',
'full_tag_close' => "</ul>",
'attributes' => ['class' => 'page-link'],
'next_tag_open' => '<li class="page-item">',
'next_tag_close' => "</li>",
'prev_tag_open' => '<li class="page-item">',
'prev_tag_close' => "</li>",
'num_tag_open' => '<li class="page-item">',
'num_tag_close' => "</li>",
'cur_tag_open' => '<li class="active page-item"><span class="page-link">',
'cur_tag_close' => '<span class="sr-only">(current)</span></span></li>'
];
$this->pagination->initialize($config);
$data['view_user_data'] = $this->get_model->list_by_desc($config['per_page'], $this->uri->segment(3),$tbl="tbl_game_data", "player1_id");
// var_dump($view_user_data);
$this->load->view('pages/view_user', $data);
}
public function edit_time_slot()
{
//print_r($_POST); exit();
$id=$this->input->post("id");
$time_slot=$this->input->post("time_slot");
$data=array('time_slot'=>$time_slot);
$where= array('id' => $id);
$this->common_model->update('tbl_time_Slot', $data, $where);
redirect('time_slot',$this->session->set_flashdata('success', 'Time Slot Updated Successfully',3));
}
}

View File

@ -0,0 +1,25 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
/**
* Index Page for this controller.
*
* Maps to the following URL
* http://example.com/index.php/welcome
* - or -
* http://example.com/index.php/welcome/index
* - or -
* Since this controller is set as the default controller in
* config/routes.php, it's displayed at http://example.com/
*
* So any other public methods not prefixed with an underscore will
* map to /index.php/welcome/<method_name>
* @see https://codeigniter.com/userguide3/general/urls.html
*/
public function index()
{
$this->load->view('welcome_message');
}
}

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

11
application/index.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,836 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2023-12-18 13:22:25 --> Config Class Initialized
INFO - 2023-12-18 13:22:25 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:22:25 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:22:25 --> Utf8 Class Initialized
INFO - 2023-12-18 13:22:25 --> URI Class Initialized
INFO - 2023-12-18 13:22:25 --> Router Class Initialized
INFO - 2023-12-18 13:22:25 --> Output Class Initialized
INFO - 2023-12-18 13:22:25 --> Security Class Initialized
DEBUG - 2023-12-18 13:22:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:22:25 --> Input Class Initialized
INFO - 2023-12-18 13:22:25 --> Language Class Initialized
INFO - 2023-12-18 13:22:25 --> Loader Class Initialized
INFO - 2023-12-18 13:22:25 --> Helper loaded: url_helper
INFO - 2023-12-18 13:22:25 --> Helper loaded: file_helper
INFO - 2023-12-18 13:22:25 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:22:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:22:25 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:22:25 --> Helper loaded: form_helper
INFO - 2023-12-18 13:22:25 --> Form Validation Class Initialized
INFO - 2023-12-18 13:22:25 --> Upload Class Initialized
INFO - 2023-12-18 13:22:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:22:25 --> Pagination Class Initialized
INFO - 2023-12-18 13:22:25 --> Model "Get_model" initialized
INFO - 2023-12-18 13:22:25 --> Controller Class Initialized
INFO - 2023-12-18 13:22:25 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-18 13:22:25 --> Final output sent to browser
DEBUG - 2023-12-18 13:22:25 --> Total execution time: 0.0697
INFO - 2023-12-18 13:22:25 --> Config Class Initialized
INFO - 2023-12-18 13:22:25 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:22:25 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:22:25 --> Utf8 Class Initialized
INFO - 2023-12-18 13:22:25 --> URI Class Initialized
INFO - 2023-12-18 13:22:25 --> Router Class Initialized
INFO - 2023-12-18 13:22:25 --> Output Class Initialized
INFO - 2023-12-18 13:22:25 --> Security Class Initialized
DEBUG - 2023-12-18 13:22:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:22:25 --> Input Class Initialized
INFO - 2023-12-18 13:22:25 --> Language Class Initialized
INFO - 2023-12-18 13:22:25 --> Loader Class Initialized
INFO - 2023-12-18 13:22:25 --> Helper loaded: url_helper
INFO - 2023-12-18 13:22:25 --> Helper loaded: file_helper
INFO - 2023-12-18 13:22:25 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:22:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:22:25 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:22:25 --> Helper loaded: form_helper
INFO - 2023-12-18 13:22:25 --> Form Validation Class Initialized
INFO - 2023-12-18 13:22:25 --> Upload Class Initialized
INFO - 2023-12-18 13:22:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:22:25 --> Pagination Class Initialized
INFO - 2023-12-18 13:22:25 --> Model "Get_model" initialized
INFO - 2023-12-18 13:22:25 --> Controller Class Initialized
INFO - 2023-12-18 13:22:25 --> Config Class Initialized
INFO - 2023-12-18 13:22:25 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:22:25 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:22:25 --> Utf8 Class Initialized
INFO - 2023-12-18 13:22:25 --> URI Class Initialized
INFO - 2023-12-18 13:22:25 --> Router Class Initialized
INFO - 2023-12-18 13:22:25 --> Output Class Initialized
INFO - 2023-12-18 13:22:25 --> Security Class Initialized
DEBUG - 2023-12-18 13:22:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:22:25 --> Input Class Initialized
INFO - 2023-12-18 13:22:25 --> Language Class Initialized
INFO - 2023-12-18 13:22:25 --> Loader Class Initialized
INFO - 2023-12-18 13:22:25 --> Helper loaded: url_helper
INFO - 2023-12-18 13:22:25 --> Helper loaded: file_helper
INFO - 2023-12-18 13:22:25 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:22:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:22:25 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:22:25 --> Helper loaded: form_helper
INFO - 2023-12-18 13:22:25 --> Form Validation Class Initialized
INFO - 2023-12-18 13:22:25 --> Upload Class Initialized
INFO - 2023-12-18 13:22:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:22:25 --> Pagination Class Initialized
INFO - 2023-12-18 13:22:25 --> Model "Get_model" initialized
INFO - 2023-12-18 13:22:25 --> Controller Class Initialized
INFO - 2023-12-18 13:22:25 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:22:25 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:22:25 --> Final output sent to browser
DEBUG - 2023-12-18 13:22:25 --> Total execution time: 0.0858
INFO - 2023-12-18 13:22:25 --> Final output sent to browser
DEBUG - 2023-12-18 13:22:25 --> Total execution time: 0.2000
INFO - 2023-12-18 13:23:00 --> Config Class Initialized
INFO - 2023-12-18 13:23:00 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:23:00 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:23:00 --> Utf8 Class Initialized
INFO - 2023-12-18 13:23:00 --> URI Class Initialized
INFO - 2023-12-18 13:23:00 --> Router Class Initialized
INFO - 2023-12-18 13:23:00 --> Output Class Initialized
INFO - 2023-12-18 13:23:00 --> Security Class Initialized
DEBUG - 2023-12-18 13:23:00 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:23:00 --> Input Class Initialized
INFO - 2023-12-18 13:23:00 --> Language Class Initialized
INFO - 2023-12-18 13:23:00 --> Loader Class Initialized
INFO - 2023-12-18 13:23:00 --> Helper loaded: url_helper
INFO - 2023-12-18 13:23:00 --> Helper loaded: file_helper
INFO - 2023-12-18 13:23:00 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:23:00 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:23:00 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:23:00 --> Helper loaded: form_helper
INFO - 2023-12-18 13:23:00 --> Form Validation Class Initialized
INFO - 2023-12-18 13:23:00 --> Upload Class Initialized
INFO - 2023-12-18 13:23:00 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:23:00 --> Pagination Class Initialized
INFO - 2023-12-18 13:23:00 --> Model "Get_model" initialized
INFO - 2023-12-18 13:23:00 --> Controller Class Initialized
INFO - 2023-12-18 13:23:00 --> Config Class Initialized
INFO - 2023-12-18 13:23:00 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:23:00 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:23:00 --> Utf8 Class Initialized
INFO - 2023-12-18 13:23:00 --> URI Class Initialized
INFO - 2023-12-18 13:23:00 --> Router Class Initialized
INFO - 2023-12-18 13:23:00 --> Output Class Initialized
INFO - 2023-12-18 13:23:00 --> Security Class Initialized
DEBUG - 2023-12-18 13:23:00 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:23:00 --> Input Class Initialized
INFO - 2023-12-18 13:23:00 --> Language Class Initialized
INFO - 2023-12-18 13:23:00 --> Loader Class Initialized
INFO - 2023-12-18 13:23:00 --> Helper loaded: url_helper
INFO - 2023-12-18 13:23:00 --> Helper loaded: file_helper
INFO - 2023-12-18 13:23:00 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:23:00 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:23:00 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:23:00 --> Helper loaded: form_helper
INFO - 2023-12-18 13:23:00 --> Form Validation Class Initialized
INFO - 2023-12-18 13:23:00 --> Upload Class Initialized
INFO - 2023-12-18 13:23:00 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:23:00 --> Pagination Class Initialized
INFO - 2023-12-18 13:23:00 --> Model "Get_model" initialized
INFO - 2023-12-18 13:23:00 --> Controller Class Initialized
INFO - 2023-12-18 13:23:00 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:23:00 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:23:00 --> Language file loaded: language/english/form_validation_lang.php
INFO - 2023-12-18 13:23:00 --> Final output sent to browser
DEBUG - 2023-12-18 13:23:00 --> Total execution time: 0.1562
INFO - 2023-12-18 13:23:00 --> Final output sent to browser
DEBUG - 2023-12-18 13:23:00 --> Total execution time: 0.2540
INFO - 2023-12-18 13:29:40 --> Config Class Initialized
INFO - 2023-12-18 13:29:40 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:29:40 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:29:40 --> Utf8 Class Initialized
INFO - 2023-12-18 13:29:40 --> URI Class Initialized
INFO - 2023-12-18 13:29:40 --> Router Class Initialized
INFO - 2023-12-18 13:29:40 --> Output Class Initialized
INFO - 2023-12-18 13:29:40 --> Security Class Initialized
DEBUG - 2023-12-18 13:29:40 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:29:40 --> Input Class Initialized
INFO - 2023-12-18 13:29:40 --> Language Class Initialized
INFO - 2023-12-18 13:29:40 --> Loader Class Initialized
INFO - 2023-12-18 13:29:40 --> Helper loaded: url_helper
INFO - 2023-12-18 13:29:40 --> Helper loaded: file_helper
INFO - 2023-12-18 13:29:40 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:29:40 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:29:40 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:29:40 --> Helper loaded: form_helper
INFO - 2023-12-18 13:29:40 --> Form Validation Class Initialized
INFO - 2023-12-18 13:29:40 --> Upload Class Initialized
INFO - 2023-12-18 13:29:40 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:29:40 --> Pagination Class Initialized
INFO - 2023-12-18 13:29:40 --> Model "Get_model" initialized
INFO - 2023-12-18 13:29:40 --> Controller Class Initialized
INFO - 2023-12-18 13:29:40 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-18 13:29:40 --> Final output sent to browser
DEBUG - 2023-12-18 13:29:40 --> Total execution time: 0.0748
INFO - 2023-12-18 13:29:40 --> Config Class Initialized
INFO - 2023-12-18 13:29:40 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:29:40 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:29:40 --> Utf8 Class Initialized
INFO - 2023-12-18 13:29:40 --> URI Class Initialized
INFO - 2023-12-18 13:29:40 --> Router Class Initialized
INFO - 2023-12-18 13:29:40 --> Output Class Initialized
INFO - 2023-12-18 13:29:40 --> Security Class Initialized
DEBUG - 2023-12-18 13:29:40 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:29:40 --> Input Class Initialized
INFO - 2023-12-18 13:29:40 --> Language Class Initialized
INFO - 2023-12-18 13:29:40 --> Loader Class Initialized
INFO - 2023-12-18 13:29:40 --> Helper loaded: url_helper
INFO - 2023-12-18 13:29:40 --> Helper loaded: file_helper
INFO - 2023-12-18 13:29:40 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:29:40 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:29:40 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:29:40 --> Helper loaded: form_helper
INFO - 2023-12-18 13:29:40 --> Form Validation Class Initialized
INFO - 2023-12-18 13:29:40 --> Upload Class Initialized
INFO - 2023-12-18 13:29:40 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:29:40 --> Pagination Class Initialized
INFO - 2023-12-18 13:29:40 --> Model "Get_model" initialized
INFO - 2023-12-18 13:29:40 --> Controller Class Initialized
INFO - 2023-12-18 13:29:40 --> Config Class Initialized
INFO - 2023-12-18 13:29:40 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:29:41 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:29:41 --> Utf8 Class Initialized
INFO - 2023-12-18 13:29:41 --> URI Class Initialized
INFO - 2023-12-18 13:29:41 --> Router Class Initialized
INFO - 2023-12-18 13:29:41 --> Output Class Initialized
INFO - 2023-12-18 13:29:41 --> Security Class Initialized
DEBUG - 2023-12-18 13:29:41 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:29:41 --> Input Class Initialized
INFO - 2023-12-18 13:29:41 --> Language Class Initialized
INFO - 2023-12-18 13:29:41 --> Loader Class Initialized
INFO - 2023-12-18 13:29:41 --> Helper loaded: url_helper
INFO - 2023-12-18 13:29:41 --> Helper loaded: file_helper
INFO - 2023-12-18 13:29:41 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:29:41 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:29:41 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:29:41 --> Helper loaded: form_helper
INFO - 2023-12-18 13:29:41 --> Form Validation Class Initialized
INFO - 2023-12-18 13:29:41 --> Upload Class Initialized
INFO - 2023-12-18 13:29:41 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:29:41 --> Pagination Class Initialized
INFO - 2023-12-18 13:29:41 --> Model "Get_model" initialized
INFO - 2023-12-18 13:29:41 --> Controller Class Initialized
INFO - 2023-12-18 13:29:41 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:29:41 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:29:41 --> Final output sent to browser
DEBUG - 2023-12-18 13:29:41 --> Total execution time: 0.0734
INFO - 2023-12-18 13:29:41 --> Final output sent to browser
DEBUG - 2023-12-18 13:29:41 --> Total execution time: 0.1720
INFO - 2023-12-18 13:30:23 --> Config Class Initialized
INFO - 2023-12-18 13:30:23 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:30:23 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:30:23 --> Utf8 Class Initialized
INFO - 2023-12-18 13:30:23 --> URI Class Initialized
INFO - 2023-12-18 13:30:23 --> Router Class Initialized
INFO - 2023-12-18 13:30:23 --> Output Class Initialized
INFO - 2023-12-18 13:30:23 --> Security Class Initialized
DEBUG - 2023-12-18 13:30:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:30:23 --> Input Class Initialized
INFO - 2023-12-18 13:30:23 --> Language Class Initialized
INFO - 2023-12-18 13:30:23 --> Loader Class Initialized
INFO - 2023-12-18 13:30:23 --> Helper loaded: url_helper
INFO - 2023-12-18 13:30:23 --> Helper loaded: file_helper
INFO - 2023-12-18 13:30:23 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:30:23 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:30:23 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:30:23 --> Helper loaded: form_helper
INFO - 2023-12-18 13:30:23 --> Form Validation Class Initialized
INFO - 2023-12-18 13:30:23 --> Upload Class Initialized
INFO - 2023-12-18 13:30:23 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:30:23 --> Pagination Class Initialized
INFO - 2023-12-18 13:30:23 --> Model "Get_model" initialized
INFO - 2023-12-18 13:30:23 --> Controller Class Initialized
INFO - 2023-12-18 13:30:23 --> Config Class Initialized
INFO - 2023-12-18 13:30:23 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:30:23 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:30:23 --> Utf8 Class Initialized
INFO - 2023-12-18 13:30:23 --> URI Class Initialized
INFO - 2023-12-18 13:30:23 --> Router Class Initialized
INFO - 2023-12-18 13:30:23 --> Output Class Initialized
INFO - 2023-12-18 13:30:23 --> Security Class Initialized
DEBUG - 2023-12-18 13:30:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:30:23 --> Input Class Initialized
INFO - 2023-12-18 13:30:23 --> Language Class Initialized
INFO - 2023-12-18 13:30:23 --> Loader Class Initialized
INFO - 2023-12-18 13:30:23 --> Helper loaded: url_helper
INFO - 2023-12-18 13:30:23 --> Helper loaded: file_helper
INFO - 2023-12-18 13:30:23 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:30:23 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:30:23 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:30:23 --> Helper loaded: form_helper
INFO - 2023-12-18 13:30:23 --> Form Validation Class Initialized
INFO - 2023-12-18 13:30:23 --> Upload Class Initialized
INFO - 2023-12-18 13:30:23 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:30:23 --> Pagination Class Initialized
INFO - 2023-12-18 13:30:23 --> Model "Get_model" initialized
INFO - 2023-12-18 13:30:23 --> Controller Class Initialized
INFO - 2023-12-18 13:30:23 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:30:23 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:30:23 --> Language file loaded: language/english/form_validation_lang.php
INFO - 2023-12-18 13:30:23 --> Final output sent to browser
DEBUG - 2023-12-18 13:30:23 --> Total execution time: 0.1397
INFO - 2023-12-18 13:30:23 --> Final output sent to browser
DEBUG - 2023-12-18 13:30:23 --> Total execution time: 0.2233
INFO - 2023-12-18 13:34:58 --> Config Class Initialized
INFO - 2023-12-18 13:34:58 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:34:58 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:34:58 --> Utf8 Class Initialized
INFO - 2023-12-18 13:34:58 --> URI Class Initialized
INFO - 2023-12-18 13:34:58 --> Router Class Initialized
INFO - 2023-12-18 13:34:58 --> Output Class Initialized
INFO - 2023-12-18 13:34:58 --> Security Class Initialized
DEBUG - 2023-12-18 13:34:58 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:34:58 --> Input Class Initialized
INFO - 2023-12-18 13:34:58 --> Language Class Initialized
INFO - 2023-12-18 13:34:58 --> Loader Class Initialized
INFO - 2023-12-18 13:34:58 --> Helper loaded: url_helper
INFO - 2023-12-18 13:34:58 --> Helper loaded: file_helper
INFO - 2023-12-18 13:34:58 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:34:58 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:34:58 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:34:58 --> Helper loaded: form_helper
INFO - 2023-12-18 13:34:58 --> Form Validation Class Initialized
INFO - 2023-12-18 13:34:58 --> Upload Class Initialized
INFO - 2023-12-18 13:34:58 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:34:58 --> Pagination Class Initialized
INFO - 2023-12-18 13:34:58 --> Model "Get_model" initialized
INFO - 2023-12-18 13:34:58 --> Controller Class Initialized
INFO - 2023-12-18 13:34:58 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-18 13:34:58 --> Final output sent to browser
DEBUG - 2023-12-18 13:34:58 --> Total execution time: 0.0860
INFO - 2023-12-18 13:34:58 --> Config Class Initialized
INFO - 2023-12-18 13:34:58 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:34:58 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:34:58 --> Utf8 Class Initialized
INFO - 2023-12-18 13:34:58 --> URI Class Initialized
INFO - 2023-12-18 13:34:58 --> Router Class Initialized
INFO - 2023-12-18 13:34:58 --> Output Class Initialized
INFO - 2023-12-18 13:34:58 --> Security Class Initialized
DEBUG - 2023-12-18 13:34:58 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:34:58 --> Input Class Initialized
INFO - 2023-12-18 13:34:58 --> Language Class Initialized
INFO - 2023-12-18 13:34:58 --> Loader Class Initialized
INFO - 2023-12-18 13:34:58 --> Helper loaded: url_helper
INFO - 2023-12-18 13:34:58 --> Helper loaded: file_helper
INFO - 2023-12-18 13:34:58 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:34:58 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:34:58 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:34:58 --> Helper loaded: form_helper
INFO - 2023-12-18 13:34:58 --> Form Validation Class Initialized
INFO - 2023-12-18 13:34:58 --> Upload Class Initialized
INFO - 2023-12-18 13:34:58 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:34:58 --> Pagination Class Initialized
INFO - 2023-12-18 13:34:58 --> Model "Get_model" initialized
INFO - 2023-12-18 13:34:58 --> Controller Class Initialized
INFO - 2023-12-18 13:34:58 --> Config Class Initialized
INFO - 2023-12-18 13:34:58 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:34:58 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:34:58 --> Utf8 Class Initialized
INFO - 2023-12-18 13:34:58 --> URI Class Initialized
INFO - 2023-12-18 13:34:58 --> Router Class Initialized
INFO - 2023-12-18 13:34:58 --> Output Class Initialized
INFO - 2023-12-18 13:34:58 --> Security Class Initialized
DEBUG - 2023-12-18 13:34:58 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:34:58 --> Input Class Initialized
INFO - 2023-12-18 13:34:58 --> Language Class Initialized
INFO - 2023-12-18 13:34:58 --> Loader Class Initialized
INFO - 2023-12-18 13:34:58 --> Helper loaded: url_helper
INFO - 2023-12-18 13:34:58 --> Helper loaded: file_helper
INFO - 2023-12-18 13:34:58 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:34:58 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:34:58 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:34:58 --> Helper loaded: form_helper
INFO - 2023-12-18 13:34:58 --> Form Validation Class Initialized
INFO - 2023-12-18 13:34:58 --> Upload Class Initialized
INFO - 2023-12-18 13:34:58 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:34:58 --> Pagination Class Initialized
INFO - 2023-12-18 13:34:58 --> Model "Get_model" initialized
INFO - 2023-12-18 13:34:58 --> Controller Class Initialized
INFO - 2023-12-18 13:34:58 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:34:58 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:34:58 --> Final output sent to browser
DEBUG - 2023-12-18 13:34:58 --> Total execution time: 0.0816
INFO - 2023-12-18 13:34:58 --> Final output sent to browser
DEBUG - 2023-12-18 13:34:58 --> Total execution time: 0.1888
INFO - 2023-12-18 13:35:37 --> Config Class Initialized
INFO - 2023-12-18 13:35:37 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:35:37 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:35:37 --> Utf8 Class Initialized
INFO - 2023-12-18 13:35:37 --> URI Class Initialized
INFO - 2023-12-18 13:35:37 --> Router Class Initialized
INFO - 2023-12-18 13:35:37 --> Output Class Initialized
INFO - 2023-12-18 13:35:37 --> Security Class Initialized
DEBUG - 2023-12-18 13:35:37 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:35:37 --> Input Class Initialized
INFO - 2023-12-18 13:35:37 --> Language Class Initialized
INFO - 2023-12-18 13:35:37 --> Loader Class Initialized
INFO - 2023-12-18 13:35:37 --> Helper loaded: url_helper
INFO - 2023-12-18 13:35:37 --> Helper loaded: file_helper
INFO - 2023-12-18 13:35:37 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:35:37 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:35:37 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:35:37 --> Helper loaded: form_helper
INFO - 2023-12-18 13:35:37 --> Form Validation Class Initialized
INFO - 2023-12-18 13:35:37 --> Upload Class Initialized
INFO - 2023-12-18 13:35:37 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:35:37 --> Pagination Class Initialized
INFO - 2023-12-18 13:35:37 --> Model "Get_model" initialized
INFO - 2023-12-18 13:35:37 --> Controller Class Initialized
INFO - 2023-12-18 13:35:37 --> Config Class Initialized
INFO - 2023-12-18 13:35:37 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:35:37 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:35:37 --> Utf8 Class Initialized
INFO - 2023-12-18 13:35:37 --> URI Class Initialized
INFO - 2023-12-18 13:35:37 --> Router Class Initialized
INFO - 2023-12-18 13:35:37 --> Output Class Initialized
INFO - 2023-12-18 13:35:37 --> Security Class Initialized
DEBUG - 2023-12-18 13:35:37 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:35:37 --> Input Class Initialized
INFO - 2023-12-18 13:35:37 --> Language Class Initialized
INFO - 2023-12-18 13:35:37 --> Loader Class Initialized
INFO - 2023-12-18 13:35:37 --> Helper loaded: url_helper
INFO - 2023-12-18 13:35:37 --> Helper loaded: file_helper
INFO - 2023-12-18 13:35:37 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:35:37 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:35:37 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:35:37 --> Helper loaded: form_helper
INFO - 2023-12-18 13:35:37 --> Form Validation Class Initialized
INFO - 2023-12-18 13:35:37 --> Upload Class Initialized
INFO - 2023-12-18 13:35:37 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:35:37 --> Pagination Class Initialized
INFO - 2023-12-18 13:35:37 --> Model "Get_model" initialized
INFO - 2023-12-18 13:35:37 --> Controller Class Initialized
INFO - 2023-12-18 13:35:37 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:35:37 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:35:37 --> Language file loaded: language/english/form_validation_lang.php
ERROR - 2023-12-18 13:35:37 --> Query error: Unknown column 'tname' in 'field list' - Invalid query: INSERT INTO `tournament_round` (`tname`, `entry_fee`, `start_date`, `end_date`, `win_amount`, `time_slot`, `round`) VALUES ('test221', '5001', '2023-12-23', '2023-12-30', '1500000', '3', '[\"90\"]')
INFO - 2023-12-18 13:35:37 --> Language file loaded: language/english/db_lang.php
INFO - 2023-12-18 13:35:37 --> Final output sent to browser
DEBUG - 2023-12-18 13:35:37 --> Total execution time: 0.1525
INFO - 2023-12-18 13:38:22 --> Config Class Initialized
INFO - 2023-12-18 13:38:22 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:38:22 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:38:22 --> Utf8 Class Initialized
INFO - 2023-12-18 13:38:22 --> URI Class Initialized
INFO - 2023-12-18 13:38:22 --> Router Class Initialized
INFO - 2023-12-18 13:38:22 --> Output Class Initialized
INFO - 2023-12-18 13:38:22 --> Security Class Initialized
DEBUG - 2023-12-18 13:38:22 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:38:22 --> Input Class Initialized
INFO - 2023-12-18 13:38:22 --> Language Class Initialized
INFO - 2023-12-18 13:38:22 --> Loader Class Initialized
INFO - 2023-12-18 13:38:22 --> Helper loaded: url_helper
INFO - 2023-12-18 13:38:22 --> Helper loaded: file_helper
INFO - 2023-12-18 13:38:22 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:38:22 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:38:22 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:38:22 --> Helper loaded: form_helper
INFO - 2023-12-18 13:38:22 --> Form Validation Class Initialized
INFO - 2023-12-18 13:38:22 --> Upload Class Initialized
INFO - 2023-12-18 13:38:22 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:38:22 --> Pagination Class Initialized
INFO - 2023-12-18 13:38:22 --> Model "Get_model" initialized
INFO - 2023-12-18 13:38:22 --> Controller Class Initialized
INFO - 2023-12-18 13:38:22 --> Config Class Initialized
INFO - 2023-12-18 13:38:22 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:38:22 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:38:22 --> Utf8 Class Initialized
INFO - 2023-12-18 13:38:22 --> URI Class Initialized
INFO - 2023-12-18 13:38:22 --> Router Class Initialized
INFO - 2023-12-18 13:38:22 --> Output Class Initialized
INFO - 2023-12-18 13:38:22 --> Security Class Initialized
DEBUG - 2023-12-18 13:38:22 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:38:22 --> Input Class Initialized
INFO - 2023-12-18 13:38:22 --> Language Class Initialized
INFO - 2023-12-18 13:38:22 --> Loader Class Initialized
INFO - 2023-12-18 13:38:22 --> Helper loaded: url_helper
INFO - 2023-12-18 13:38:22 --> Helper loaded: file_helper
INFO - 2023-12-18 13:38:22 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:38:22 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:38:22 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:38:22 --> Helper loaded: form_helper
INFO - 2023-12-18 13:38:22 --> Form Validation Class Initialized
INFO - 2023-12-18 13:38:22 --> Upload Class Initialized
INFO - 2023-12-18 13:38:22 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:38:22 --> Pagination Class Initialized
INFO - 2023-12-18 13:38:22 --> Model "Get_model" initialized
INFO - 2023-12-18 13:38:22 --> Controller Class Initialized
INFO - 2023-12-18 13:38:22 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:38:22 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:38:22 --> Language file loaded: language/english/form_validation_lang.php
INFO - 2023-12-18 13:38:22 --> Final output sent to browser
DEBUG - 2023-12-18 13:38:22 --> Total execution time: 0.1577
INFO - 2023-12-18 13:38:22 --> Final output sent to browser
DEBUG - 2023-12-18 13:38:22 --> Total execution time: 0.2421
INFO - 2023-12-18 13:39:18 --> Config Class Initialized
INFO - 2023-12-18 13:39:18 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:39:18 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:39:18 --> Utf8 Class Initialized
INFO - 2023-12-18 13:39:18 --> URI Class Initialized
INFO - 2023-12-18 13:39:18 --> Router Class Initialized
INFO - 2023-12-18 13:39:18 --> Output Class Initialized
INFO - 2023-12-18 13:39:18 --> Security Class Initialized
DEBUG - 2023-12-18 13:39:18 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:39:18 --> Input Class Initialized
INFO - 2023-12-18 13:39:18 --> Language Class Initialized
INFO - 2023-12-18 13:39:18 --> Loader Class Initialized
INFO - 2023-12-18 13:39:18 --> Helper loaded: url_helper
INFO - 2023-12-18 13:39:18 --> Helper loaded: file_helper
INFO - 2023-12-18 13:39:18 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:39:18 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:39:18 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:39:18 --> Helper loaded: form_helper
INFO - 2023-12-18 13:39:18 --> Form Validation Class Initialized
INFO - 2023-12-18 13:39:18 --> Upload Class Initialized
INFO - 2023-12-18 13:39:18 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:39:18 --> Pagination Class Initialized
INFO - 2023-12-18 13:39:18 --> Model "Get_model" initialized
INFO - 2023-12-18 13:39:18 --> Controller Class Initialized
INFO - 2023-12-18 13:39:18 --> Model "Common_model" initialized
INFO - 2023-12-18 13:39:18 --> Model "Insert_model" initialized
INFO - 2023-12-18 13:39:18 --> Model "Update_model" initialized
INFO - 2023-12-18 13:39:18 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-18 13:39:18 --> Final output sent to browser
DEBUG - 2023-12-18 13:39:18 --> Total execution time: 0.0864
INFO - 2023-12-18 13:39:18 --> Config Class Initialized
INFO - 2023-12-18 13:39:18 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:39:18 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:39:18 --> Utf8 Class Initialized
INFO - 2023-12-18 13:39:18 --> URI Class Initialized
INFO - 2023-12-18 13:39:18 --> Router Class Initialized
INFO - 2023-12-18 13:39:18 --> Output Class Initialized
INFO - 2023-12-18 13:39:18 --> Security Class Initialized
DEBUG - 2023-12-18 13:39:18 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:39:18 --> Input Class Initialized
INFO - 2023-12-18 13:39:18 --> Language Class Initialized
ERROR - 2023-12-18 13:39:18 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-18 13:39:18 --> Config Class Initialized
INFO - 2023-12-18 13:39:18 --> Config Class Initialized
INFO - 2023-12-18 13:39:18 --> Hooks Class Initialized
INFO - 2023-12-18 13:39:18 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:39:18 --> UTF-8 Support Enabled
DEBUG - 2023-12-18 13:39:18 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:39:18 --> Utf8 Class Initialized
INFO - 2023-12-18 13:39:18 --> Utf8 Class Initialized
INFO - 2023-12-18 13:39:18 --> URI Class Initialized
INFO - 2023-12-18 13:39:18 --> URI Class Initialized
INFO - 2023-12-18 13:39:18 --> Router Class Initialized
INFO - 2023-12-18 13:39:18 --> Router Class Initialized
INFO - 2023-12-18 13:39:18 --> Output Class Initialized
INFO - 2023-12-18 13:39:18 --> Output Class Initialized
INFO - 2023-12-18 13:39:18 --> Security Class Initialized
INFO - 2023-12-18 13:39:18 --> Security Class Initialized
DEBUG - 2023-12-18 13:39:18 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:39:18 --> Input Class Initialized
DEBUG - 2023-12-18 13:39:18 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:39:18 --> Input Class Initialized
INFO - 2023-12-18 13:39:18 --> Language Class Initialized
INFO - 2023-12-18 13:39:18 --> Language Class Initialized
ERROR - 2023-12-18 13:39:18 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-18 13:39:18 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-18 13:39:18 --> Config Class Initialized
INFO - 2023-12-18 13:39:18 --> Config Class Initialized
INFO - 2023-12-18 13:39:18 --> Hooks Class Initialized
INFO - 2023-12-18 13:39:18 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:39:18 --> UTF-8 Support Enabled
DEBUG - 2023-12-18 13:39:18 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:39:18 --> Utf8 Class Initialized
INFO - 2023-12-18 13:39:18 --> Utf8 Class Initialized
INFO - 2023-12-18 13:39:18 --> URI Class Initialized
INFO - 2023-12-18 13:39:18 --> URI Class Initialized
INFO - 2023-12-18 13:39:18 --> Router Class Initialized
INFO - 2023-12-18 13:39:18 --> Router Class Initialized
INFO - 2023-12-18 13:39:18 --> Output Class Initialized
INFO - 2023-12-18 13:39:18 --> Output Class Initialized
INFO - 2023-12-18 13:39:18 --> Security Class Initialized
INFO - 2023-12-18 13:39:18 --> Security Class Initialized
DEBUG - 2023-12-18 13:39:18 --> Global POST, GET and COOKIE data sanitized
DEBUG - 2023-12-18 13:39:18 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:39:18 --> Input Class Initialized
INFO - 2023-12-18 13:39:18 --> Input Class Initialized
INFO - 2023-12-18 13:39:18 --> Language Class Initialized
INFO - 2023-12-18 13:39:18 --> Language Class Initialized
ERROR - 2023-12-18 13:39:19 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-18 13:39:19 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-18 13:40:49 --> Config Class Initialized
INFO - 2023-12-18 13:40:49 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:40:49 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:40:49 --> Utf8 Class Initialized
INFO - 2023-12-18 13:40:49 --> URI Class Initialized
INFO - 2023-12-18 13:40:49 --> Router Class Initialized
INFO - 2023-12-18 13:40:49 --> Output Class Initialized
INFO - 2023-12-18 13:40:49 --> Security Class Initialized
DEBUG - 2023-12-18 13:40:49 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:40:49 --> Input Class Initialized
INFO - 2023-12-18 13:40:49 --> Language Class Initialized
INFO - 2023-12-18 13:40:49 --> Loader Class Initialized
INFO - 2023-12-18 13:40:49 --> Helper loaded: url_helper
INFO - 2023-12-18 13:40:49 --> Helper loaded: file_helper
INFO - 2023-12-18 13:40:49 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:40:49 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:40:49 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:40:49 --> Helper loaded: form_helper
INFO - 2023-12-18 13:40:49 --> Form Validation Class Initialized
INFO - 2023-12-18 13:40:49 --> Upload Class Initialized
INFO - 2023-12-18 13:40:49 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:40:49 --> Pagination Class Initialized
INFO - 2023-12-18 13:40:49 --> Model "Get_model" initialized
INFO - 2023-12-18 13:40:49 --> Controller Class Initialized
INFO - 2023-12-18 13:40:49 --> Config Class Initialized
INFO - 2023-12-18 13:40:49 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:40:49 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:40:49 --> Utf8 Class Initialized
INFO - 2023-12-18 13:40:49 --> URI Class Initialized
INFO - 2023-12-18 13:40:49 --> Router Class Initialized
INFO - 2023-12-18 13:40:49 --> Output Class Initialized
INFO - 2023-12-18 13:40:49 --> Security Class Initialized
DEBUG - 2023-12-18 13:40:49 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:40:49 --> Input Class Initialized
INFO - 2023-12-18 13:40:49 --> Language Class Initialized
INFO - 2023-12-18 13:40:49 --> Loader Class Initialized
INFO - 2023-12-18 13:40:49 --> Helper loaded: url_helper
INFO - 2023-12-18 13:40:49 --> Helper loaded: file_helper
INFO - 2023-12-18 13:40:49 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:40:49 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:40:49 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:40:49 --> Helper loaded: form_helper
INFO - 2023-12-18 13:40:49 --> Form Validation Class Initialized
INFO - 2023-12-18 13:40:49 --> Upload Class Initialized
INFO - 2023-12-18 13:40:49 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:40:49 --> Pagination Class Initialized
INFO - 2023-12-18 13:40:49 --> Model "Get_model" initialized
INFO - 2023-12-18 13:40:49 --> Controller Class Initialized
INFO - 2023-12-18 13:40:49 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:40:49 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:40:49 --> Language file loaded: language/english/form_validation_lang.php
INFO - 2023-12-18 13:40:49 --> Final output sent to browser
DEBUG - 2023-12-18 13:40:49 --> Total execution time: 0.1378
INFO - 2023-12-18 13:40:49 --> Final output sent to browser
DEBUG - 2023-12-18 13:40:49 --> Total execution time: 0.2138
INFO - 2023-12-18 13:41:09 --> Config Class Initialized
INFO - 2023-12-18 13:41:09 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:41:09 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:41:09 --> Utf8 Class Initialized
INFO - 2023-12-18 13:41:09 --> URI Class Initialized
INFO - 2023-12-18 13:41:09 --> Router Class Initialized
INFO - 2023-12-18 13:41:09 --> Output Class Initialized
INFO - 2023-12-18 13:41:09 --> Security Class Initialized
DEBUG - 2023-12-18 13:41:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:41:09 --> Input Class Initialized
INFO - 2023-12-18 13:41:09 --> Language Class Initialized
INFO - 2023-12-18 13:41:09 --> Loader Class Initialized
INFO - 2023-12-18 13:41:09 --> Helper loaded: url_helper
INFO - 2023-12-18 13:41:09 --> Helper loaded: file_helper
INFO - 2023-12-18 13:41:09 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:41:09 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:41:09 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:41:09 --> Helper loaded: form_helper
INFO - 2023-12-18 13:41:09 --> Form Validation Class Initialized
INFO - 2023-12-18 13:41:09 --> Upload Class Initialized
INFO - 2023-12-18 13:41:09 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:41:09 --> Pagination Class Initialized
INFO - 2023-12-18 13:41:09 --> Model "Get_model" initialized
INFO - 2023-12-18 13:41:09 --> Controller Class Initialized
INFO - 2023-12-18 13:41:09 --> Model "Common_model" initialized
INFO - 2023-12-18 13:41:09 --> Model "Insert_model" initialized
INFO - 2023-12-18 13:41:09 --> Model "Update_model" initialized
INFO - 2023-12-18 13:41:09 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-18 13:41:09 --> Final output sent to browser
DEBUG - 2023-12-18 13:41:09 --> Total execution time: 0.0878
INFO - 2023-12-18 13:41:09 --> Config Class Initialized
INFO - 2023-12-18 13:41:09 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:41:09 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:41:09 --> Utf8 Class Initialized
INFO - 2023-12-18 13:41:09 --> URI Class Initialized
INFO - 2023-12-18 13:41:09 --> Router Class Initialized
INFO - 2023-12-18 13:41:09 --> Output Class Initialized
INFO - 2023-12-18 13:41:09 --> Security Class Initialized
DEBUG - 2023-12-18 13:41:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:41:09 --> Input Class Initialized
INFO - 2023-12-18 13:41:09 --> Language Class Initialized
ERROR - 2023-12-18 13:41:09 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-18 13:41:09 --> Config Class Initialized
INFO - 2023-12-18 13:41:09 --> Config Class Initialized
INFO - 2023-12-18 13:41:09 --> Hooks Class Initialized
INFO - 2023-12-18 13:41:09 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:41:09 --> UTF-8 Support Enabled
DEBUG - 2023-12-18 13:41:09 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:41:09 --> Utf8 Class Initialized
INFO - 2023-12-18 13:41:09 --> Utf8 Class Initialized
INFO - 2023-12-18 13:41:09 --> URI Class Initialized
INFO - 2023-12-18 13:41:09 --> URI Class Initialized
INFO - 2023-12-18 13:41:09 --> Router Class Initialized
INFO - 2023-12-18 13:41:09 --> Router Class Initialized
INFO - 2023-12-18 13:41:09 --> Output Class Initialized
INFO - 2023-12-18 13:41:09 --> Output Class Initialized
INFO - 2023-12-18 13:41:09 --> Security Class Initialized
INFO - 2023-12-18 13:41:09 --> Security Class Initialized
DEBUG - 2023-12-18 13:41:09 --> Global POST, GET and COOKIE data sanitized
DEBUG - 2023-12-18 13:41:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:41:09 --> Input Class Initialized
INFO - 2023-12-18 13:41:09 --> Input Class Initialized
INFO - 2023-12-18 13:41:09 --> Language Class Initialized
INFO - 2023-12-18 13:41:09 --> Language Class Initialized
ERROR - 2023-12-18 13:41:09 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-18 13:41:09 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-18 13:41:09 --> Config Class Initialized
INFO - 2023-12-18 13:41:09 --> Config Class Initialized
INFO - 2023-12-18 13:41:09 --> Hooks Class Initialized
INFO - 2023-12-18 13:41:09 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:41:09 --> UTF-8 Support Enabled
DEBUG - 2023-12-18 13:41:09 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:41:09 --> Utf8 Class Initialized
INFO - 2023-12-18 13:41:09 --> Utf8 Class Initialized
INFO - 2023-12-18 13:41:09 --> URI Class Initialized
INFO - 2023-12-18 13:41:09 --> URI Class Initialized
INFO - 2023-12-18 13:41:09 --> Router Class Initialized
INFO - 2023-12-18 13:41:09 --> Router Class Initialized
INFO - 2023-12-18 13:41:09 --> Output Class Initialized
INFO - 2023-12-18 13:41:09 --> Output Class Initialized
INFO - 2023-12-18 13:41:09 --> Security Class Initialized
INFO - 2023-12-18 13:41:09 --> Security Class Initialized
DEBUG - 2023-12-18 13:41:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:41:09 --> Input Class Initialized
DEBUG - 2023-12-18 13:41:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:41:09 --> Input Class Initialized
INFO - 2023-12-18 13:41:09 --> Language Class Initialized
INFO - 2023-12-18 13:41:09 --> Language Class Initialized
ERROR - 2023-12-18 13:41:09 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-18 13:41:09 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-18 13:45:30 --> Config Class Initialized
INFO - 2023-12-18 13:45:30 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:45:30 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:45:30 --> Utf8 Class Initialized
INFO - 2023-12-18 13:45:30 --> URI Class Initialized
INFO - 2023-12-18 13:45:30 --> Router Class Initialized
INFO - 2023-12-18 13:45:30 --> Output Class Initialized
INFO - 2023-12-18 13:45:30 --> Security Class Initialized
DEBUG - 2023-12-18 13:45:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:45:30 --> Input Class Initialized
INFO - 2023-12-18 13:45:30 --> Language Class Initialized
INFO - 2023-12-18 13:45:30 --> Loader Class Initialized
INFO - 2023-12-18 13:45:30 --> Helper loaded: url_helper
INFO - 2023-12-18 13:45:30 --> Helper loaded: file_helper
INFO - 2023-12-18 13:45:30 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:45:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:45:30 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:45:30 --> Helper loaded: form_helper
INFO - 2023-12-18 13:45:30 --> Form Validation Class Initialized
INFO - 2023-12-18 13:45:30 --> Upload Class Initialized
INFO - 2023-12-18 13:45:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:45:30 --> Pagination Class Initialized
INFO - 2023-12-18 13:45:30 --> Model "Get_model" initialized
INFO - 2023-12-18 13:45:30 --> Controller Class Initialized
INFO - 2023-12-18 13:45:30 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-18 13:45:30 --> Final output sent to browser
DEBUG - 2023-12-18 13:45:30 --> Total execution time: 0.0748
INFO - 2023-12-18 13:45:30 --> Config Class Initialized
INFO - 2023-12-18 13:45:30 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:45:30 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:45:30 --> Utf8 Class Initialized
INFO - 2023-12-18 13:45:30 --> URI Class Initialized
INFO - 2023-12-18 13:45:30 --> Router Class Initialized
INFO - 2023-12-18 13:45:30 --> Output Class Initialized
INFO - 2023-12-18 13:45:30 --> Security Class Initialized
DEBUG - 2023-12-18 13:45:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:45:30 --> Input Class Initialized
INFO - 2023-12-18 13:45:30 --> Language Class Initialized
INFO - 2023-12-18 13:45:30 --> Loader Class Initialized
INFO - 2023-12-18 13:45:30 --> Helper loaded: url_helper
INFO - 2023-12-18 13:45:30 --> Helper loaded: file_helper
INFO - 2023-12-18 13:45:30 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:45:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:45:30 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:45:30 --> Helper loaded: form_helper
INFO - 2023-12-18 13:45:30 --> Form Validation Class Initialized
INFO - 2023-12-18 13:45:30 --> Upload Class Initialized
INFO - 2023-12-18 13:45:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:45:30 --> Pagination Class Initialized
INFO - 2023-12-18 13:45:30 --> Model "Get_model" initialized
INFO - 2023-12-18 13:45:30 --> Controller Class Initialized
INFO - 2023-12-18 13:45:30 --> Config Class Initialized
INFO - 2023-12-18 13:45:30 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:45:30 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:45:30 --> Utf8 Class Initialized
INFO - 2023-12-18 13:45:30 --> URI Class Initialized
INFO - 2023-12-18 13:45:30 --> Router Class Initialized
INFO - 2023-12-18 13:45:30 --> Output Class Initialized
INFO - 2023-12-18 13:45:30 --> Security Class Initialized
DEBUG - 2023-12-18 13:45:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:45:30 --> Input Class Initialized
INFO - 2023-12-18 13:45:30 --> Language Class Initialized
INFO - 2023-12-18 13:45:30 --> Loader Class Initialized
INFO - 2023-12-18 13:45:30 --> Helper loaded: url_helper
INFO - 2023-12-18 13:45:30 --> Helper loaded: file_helper
INFO - 2023-12-18 13:45:30 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:45:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:45:30 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:45:30 --> Helper loaded: form_helper
INFO - 2023-12-18 13:45:30 --> Form Validation Class Initialized
INFO - 2023-12-18 13:45:30 --> Upload Class Initialized
INFO - 2023-12-18 13:45:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:45:30 --> Pagination Class Initialized
INFO - 2023-12-18 13:45:30 --> Model "Get_model" initialized
INFO - 2023-12-18 13:45:30 --> Controller Class Initialized
INFO - 2023-12-18 13:45:30 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:45:30 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:45:30 --> Final output sent to browser
DEBUG - 2023-12-18 13:45:30 --> Total execution time: 0.0790
INFO - 2023-12-18 13:45:30 --> Final output sent to browser
DEBUG - 2023-12-18 13:45:30 --> Total execution time: 0.1957
INFO - 2023-12-18 13:46:12 --> Config Class Initialized
INFO - 2023-12-18 13:46:12 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:46:12 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:46:12 --> Utf8 Class Initialized
INFO - 2023-12-18 13:46:12 --> URI Class Initialized
INFO - 2023-12-18 13:46:12 --> Router Class Initialized
INFO - 2023-12-18 13:46:12 --> Output Class Initialized
INFO - 2023-12-18 13:46:12 --> Security Class Initialized
DEBUG - 2023-12-18 13:46:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:46:12 --> Input Class Initialized
INFO - 2023-12-18 13:46:12 --> Language Class Initialized
INFO - 2023-12-18 13:46:12 --> Loader Class Initialized
INFO - 2023-12-18 13:46:12 --> Helper loaded: url_helper
INFO - 2023-12-18 13:46:12 --> Helper loaded: file_helper
INFO - 2023-12-18 13:46:12 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:46:12 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:46:12 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:46:12 --> Helper loaded: form_helper
INFO - 2023-12-18 13:46:12 --> Form Validation Class Initialized
INFO - 2023-12-18 13:46:12 --> Upload Class Initialized
INFO - 2023-12-18 13:46:12 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:46:12 --> Pagination Class Initialized
INFO - 2023-12-18 13:46:12 --> Model "Get_model" initialized
INFO - 2023-12-18 13:46:12 --> Controller Class Initialized
INFO - 2023-12-18 13:46:12 --> Config Class Initialized
INFO - 2023-12-18 13:46:12 --> Hooks Class Initialized
DEBUG - 2023-12-18 13:46:12 --> UTF-8 Support Enabled
INFO - 2023-12-18 13:46:12 --> Utf8 Class Initialized
INFO - 2023-12-18 13:46:12 --> URI Class Initialized
INFO - 2023-12-18 13:46:12 --> Router Class Initialized
INFO - 2023-12-18 13:46:12 --> Output Class Initialized
INFO - 2023-12-18 13:46:12 --> Security Class Initialized
DEBUG - 2023-12-18 13:46:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-18 13:46:12 --> Input Class Initialized
INFO - 2023-12-18 13:46:12 --> Language Class Initialized
INFO - 2023-12-18 13:46:12 --> Loader Class Initialized
INFO - 2023-12-18 13:46:12 --> Helper loaded: url_helper
INFO - 2023-12-18 13:46:12 --> Helper loaded: file_helper
INFO - 2023-12-18 13:46:12 --> Database Driver Class Initialized
DEBUG - 2023-12-18 13:46:12 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-18 13:46:12 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-18 13:46:12 --> Helper loaded: form_helper
INFO - 2023-12-18 13:46:12 --> Form Validation Class Initialized
INFO - 2023-12-18 13:46:12 --> Upload Class Initialized
INFO - 2023-12-18 13:46:12 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-18 13:46:12 --> Pagination Class Initialized
INFO - 2023-12-18 13:46:12 --> Model "Get_model" initialized
INFO - 2023-12-18 13:46:12 --> Controller Class Initialized
INFO - 2023-12-18 13:46:12 --> Model "Api_model" initialized
DEBUG - 2023-12-18 13:46:12 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-18 13:46:12 --> Language file loaded: language/english/form_validation_lang.php
INFO - 2023-12-18 13:46:12 --> Final output sent to browser
DEBUG - 2023-12-18 13:46:12 --> Total execution time: 0.1272
INFO - 2023-12-18 13:46:12 --> Final output sent to browser
DEBUG - 2023-12-18 13:46:12 --> Total execution time: 0.2095

View File

@ -0,0 +1,542 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2023-12-19 05:43:18 --> Config Class Initialized
INFO - 2023-12-19 05:43:18 --> Hooks Class Initialized
DEBUG - 2023-12-19 05:43:18 --> UTF-8 Support Enabled
INFO - 2023-12-19 05:43:18 --> Utf8 Class Initialized
INFO - 2023-12-19 05:43:18 --> URI Class Initialized
INFO - 2023-12-19 05:43:18 --> Router Class Initialized
INFO - 2023-12-19 05:43:18 --> Output Class Initialized
INFO - 2023-12-19 05:43:18 --> Security Class Initialized
DEBUG - 2023-12-19 05:43:18 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 05:43:18 --> Input Class Initialized
INFO - 2023-12-19 05:43:18 --> Language Class Initialized
INFO - 2023-12-19 05:43:18 --> Loader Class Initialized
INFO - 2023-12-19 05:43:18 --> Helper loaded: url_helper
INFO - 2023-12-19 05:43:18 --> Helper loaded: file_helper
INFO - 2023-12-19 05:43:18 --> Database Driver Class Initialized
DEBUG - 2023-12-19 05:43:19 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 05:43:19 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 05:43:19 --> Helper loaded: form_helper
INFO - 2023-12-19 05:43:19 --> Form Validation Class Initialized
INFO - 2023-12-19 05:43:19 --> Upload Class Initialized
INFO - 2023-12-19 05:43:19 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 05:43:19 --> Pagination Class Initialized
INFO - 2023-12-19 05:43:19 --> Model "Get_model" initialized
INFO - 2023-12-19 05:43:19 --> Controller Class Initialized
INFO - 2023-12-19 05:43:20 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-19 05:43:20 --> Final output sent to browser
DEBUG - 2023-12-19 05:43:20 --> Total execution time: 1.8375
INFO - 2023-12-19 05:43:20 --> Config Class Initialized
INFO - 2023-12-19 05:43:20 --> Hooks Class Initialized
DEBUG - 2023-12-19 05:43:20 --> UTF-8 Support Enabled
INFO - 2023-12-19 05:43:20 --> Utf8 Class Initialized
INFO - 2023-12-19 05:43:20 --> URI Class Initialized
INFO - 2023-12-19 05:43:20 --> Router Class Initialized
INFO - 2023-12-19 05:43:20 --> Output Class Initialized
INFO - 2023-12-19 05:43:20 --> Security Class Initialized
DEBUG - 2023-12-19 05:43:20 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 05:43:20 --> Input Class Initialized
INFO - 2023-12-19 05:43:20 --> Language Class Initialized
INFO - 2023-12-19 05:43:20 --> Loader Class Initialized
INFO - 2023-12-19 05:43:20 --> Helper loaded: url_helper
INFO - 2023-12-19 05:43:20 --> Helper loaded: file_helper
INFO - 2023-12-19 05:43:20 --> Database Driver Class Initialized
DEBUG - 2023-12-19 05:43:20 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 05:43:20 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 05:43:20 --> Helper loaded: form_helper
INFO - 2023-12-19 05:43:20 --> Form Validation Class Initialized
INFO - 2023-12-19 05:43:20 --> Upload Class Initialized
INFO - 2023-12-19 05:43:20 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 05:43:20 --> Pagination Class Initialized
INFO - 2023-12-19 05:43:20 --> Model "Get_model" initialized
INFO - 2023-12-19 05:43:20 --> Controller Class Initialized
INFO - 2023-12-19 05:43:20 --> Config Class Initialized
INFO - 2023-12-19 05:43:20 --> Hooks Class Initialized
DEBUG - 2023-12-19 05:43:20 --> UTF-8 Support Enabled
INFO - 2023-12-19 05:43:20 --> Utf8 Class Initialized
INFO - 2023-12-19 05:43:21 --> URI Class Initialized
INFO - 2023-12-19 05:43:21 --> Router Class Initialized
INFO - 2023-12-19 05:43:21 --> Output Class Initialized
INFO - 2023-12-19 05:43:21 --> Security Class Initialized
DEBUG - 2023-12-19 05:43:21 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 05:43:21 --> Input Class Initialized
INFO - 2023-12-19 05:43:21 --> Language Class Initialized
INFO - 2023-12-19 05:43:21 --> Loader Class Initialized
INFO - 2023-12-19 05:43:21 --> Helper loaded: url_helper
INFO - 2023-12-19 05:43:21 --> Helper loaded: file_helper
INFO - 2023-12-19 05:43:21 --> Database Driver Class Initialized
DEBUG - 2023-12-19 05:43:21 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 05:43:21 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 05:43:21 --> Helper loaded: form_helper
INFO - 2023-12-19 05:43:21 --> Form Validation Class Initialized
INFO - 2023-12-19 05:43:21 --> Upload Class Initialized
INFO - 2023-12-19 05:43:21 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 05:43:21 --> Pagination Class Initialized
INFO - 2023-12-19 05:43:21 --> Model "Get_model" initialized
INFO - 2023-12-19 05:43:21 --> Controller Class Initialized
INFO - 2023-12-19 05:43:21 --> Model "Api_model" initialized
DEBUG - 2023-12-19 05:43:21 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-19 05:43:21 --> Final output sent to browser
DEBUG - 2023-12-19 05:43:21 --> Total execution time: 0.5094
INFO - 2023-12-19 05:43:21 --> Final output sent to browser
DEBUG - 2023-12-19 05:43:21 --> Total execution time: 0.8407
INFO - 2023-12-19 13:28:02 --> Config Class Initialized
INFO - 2023-12-19 13:28:02 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:28:03 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:28:03 --> Utf8 Class Initialized
INFO - 2023-12-19 13:28:03 --> URI Class Initialized
DEBUG - 2023-12-19 13:28:03 --> No URI present. Default controller set.
INFO - 2023-12-19 13:28:03 --> Router Class Initialized
INFO - 2023-12-19 13:28:03 --> Output Class Initialized
INFO - 2023-12-19 13:28:04 --> Security Class Initialized
DEBUG - 2023-12-19 13:28:04 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:28:04 --> Input Class Initialized
INFO - 2023-12-19 13:28:04 --> Language Class Initialized
INFO - 2023-12-19 13:28:04 --> Loader Class Initialized
INFO - 2023-12-19 13:28:04 --> Helper loaded: url_helper
INFO - 2023-12-19 13:28:04 --> Helper loaded: file_helper
INFO - 2023-12-19 13:28:04 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:28:05 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:28:05 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:28:05 --> Helper loaded: form_helper
INFO - 2023-12-19 13:28:05 --> Form Validation Class Initialized
INFO - 2023-12-19 13:28:05 --> Upload Class Initialized
INFO - 2023-12-19 13:28:05 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:28:05 --> Pagination Class Initialized
INFO - 2023-12-19 13:28:05 --> Model "Get_model" initialized
INFO - 2023-12-19 13:28:05 --> Controller Class Initialized
INFO - 2023-12-19 13:28:07 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2023-12-19 13:28:07 --> Final output sent to browser
DEBUG - 2023-12-19 13:28:07 --> Total execution time: 4.6511
INFO - 2023-12-19 13:28:08 --> Config Class Initialized
INFO - 2023-12-19 13:28:08 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:28:08 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:28:08 --> Utf8 Class Initialized
INFO - 2023-12-19 13:28:08 --> URI Class Initialized
INFO - 2023-12-19 13:28:08 --> Router Class Initialized
INFO - 2023-12-19 13:28:08 --> Output Class Initialized
INFO - 2023-12-19 13:28:08 --> Security Class Initialized
DEBUG - 2023-12-19 13:28:08 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:28:08 --> Input Class Initialized
INFO - 2023-12-19 13:28:08 --> Language Class Initialized
INFO - 2023-12-19 13:28:09 --> Config Class Initialized
INFO - 2023-12-19 13:28:09 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:28:09 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:28:09 --> Utf8 Class Initialized
INFO - 2023-12-19 13:28:09 --> URI Class Initialized
INFO - 2023-12-19 13:28:09 --> Router Class Initialized
INFO - 2023-12-19 13:28:09 --> Output Class Initialized
INFO - 2023-12-19 13:28:09 --> Security Class Initialized
DEBUG - 2023-12-19 13:28:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:28:09 --> Input Class Initialized
INFO - 2023-12-19 13:28:09 --> Language Class Initialized
ERROR - 2023-12-19 13:28:09 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-19 13:28:09 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:40:33 --> Config Class Initialized
INFO - 2023-12-19 13:40:33 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:33 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:33 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:33 --> URI Class Initialized
INFO - 2023-12-19 13:40:33 --> Router Class Initialized
INFO - 2023-12-19 13:40:33 --> Output Class Initialized
INFO - 2023-12-19 13:40:33 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:33 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:33 --> Input Class Initialized
INFO - 2023-12-19 13:40:33 --> Language Class Initialized
INFO - 2023-12-19 13:40:34 --> Loader Class Initialized
INFO - 2023-12-19 13:40:34 --> Helper loaded: url_helper
INFO - 2023-12-19 13:40:34 --> Helper loaded: file_helper
INFO - 2023-12-19 13:40:34 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:40:34 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:40:34 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:40:34 --> Helper loaded: form_helper
INFO - 2023-12-19 13:40:34 --> Form Validation Class Initialized
INFO - 2023-12-19 13:40:34 --> Upload Class Initialized
INFO - 2023-12-19 13:40:34 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:40:34 --> Pagination Class Initialized
INFO - 2023-12-19 13:40:34 --> Model "Get_model" initialized
INFO - 2023-12-19 13:40:34 --> Controller Class Initialized
DEBUG - 2023-12-19 13:40:34 --> Form_validation class already loaded. Second attempt ignored.
DEBUG - 2023-12-19 13:40:34 --> Session class already loaded. Second attempt ignored.
INFO - 2023-12-19 13:40:34 --> Model "Auth_model" initialized
INFO - 2023-12-19 13:40:34 --> Config Class Initialized
INFO - 2023-12-19 13:40:34 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:34 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:34 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:34 --> URI Class Initialized
INFO - 2023-12-19 13:40:34 --> Router Class Initialized
INFO - 2023-12-19 13:40:34 --> Output Class Initialized
INFO - 2023-12-19 13:40:34 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:34 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:34 --> Input Class Initialized
INFO - 2023-12-19 13:40:34 --> Language Class Initialized
INFO - 2023-12-19 13:40:34 --> Loader Class Initialized
INFO - 2023-12-19 13:40:34 --> Helper loaded: url_helper
INFO - 2023-12-19 13:40:34 --> Helper loaded: file_helper
INFO - 2023-12-19 13:40:34 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:40:34 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:40:34 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:40:34 --> Helper loaded: form_helper
INFO - 2023-12-19 13:40:34 --> Form Validation Class Initialized
INFO - 2023-12-19 13:40:34 --> Upload Class Initialized
INFO - 2023-12-19 13:40:34 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:40:34 --> Pagination Class Initialized
INFO - 2023-12-19 13:40:34 --> Model "Get_model" initialized
INFO - 2023-12-19 13:40:34 --> Controller Class Initialized
INFO - 2023-12-19 13:40:34 --> Model "Common_model" initialized
INFO - 2023-12-19 13:40:34 --> Model "Insert_model" initialized
INFO - 2023-12-19 13:40:34 --> Model "Update_model" initialized
INFO - 2023-12-19 13:40:35 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/index.php
INFO - 2023-12-19 13:40:35 --> Final output sent to browser
DEBUG - 2023-12-19 13:40:35 --> Total execution time: 0.7723
INFO - 2023-12-19 13:40:36 --> Config Class Initialized
INFO - 2023-12-19 13:40:36 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:36 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:36 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:36 --> URI Class Initialized
INFO - 2023-12-19 13:40:36 --> Router Class Initialized
INFO - 2023-12-19 13:40:36 --> Output Class Initialized
INFO - 2023-12-19 13:40:36 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:36 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:36 --> Input Class Initialized
INFO - 2023-12-19 13:40:36 --> Language Class Initialized
INFO - 2023-12-19 13:40:36 --> Config Class Initialized
INFO - 2023-12-19 13:40:36 --> Hooks Class Initialized
ERROR - 2023-12-19 13:40:36 --> 404 Page Not Found: Assets/images
DEBUG - 2023-12-19 13:40:36 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:36 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:36 --> URI Class Initialized
INFO - 2023-12-19 13:40:36 --> Router Class Initialized
INFO - 2023-12-19 13:40:36 --> Config Class Initialized
INFO - 2023-12-19 13:40:36 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:36 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:36 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:36 --> URI Class Initialized
INFO - 2023-12-19 13:40:36 --> Output Class Initialized
INFO - 2023-12-19 13:40:36 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:36 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:36 --> Router Class Initialized
INFO - 2023-12-19 13:40:36 --> Input Class Initialized
INFO - 2023-12-19 13:40:36 --> Language Class Initialized
INFO - 2023-12-19 13:40:36 --> Output Class Initialized
ERROR - 2023-12-19 13:40:36 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:40:36 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:36 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:36 --> Input Class Initialized
INFO - 2023-12-19 13:40:36 --> Language Class Initialized
ERROR - 2023-12-19 13:40:36 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:40:36 --> Config Class Initialized
INFO - 2023-12-19 13:40:36 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:36 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:36 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:36 --> URI Class Initialized
INFO - 2023-12-19 13:40:36 --> Router Class Initialized
INFO - 2023-12-19 13:40:36 --> Output Class Initialized
INFO - 2023-12-19 13:40:36 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:36 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:36 --> Input Class Initialized
INFO - 2023-12-19 13:40:36 --> Language Class Initialized
ERROR - 2023-12-19 13:40:36 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-19 13:40:36 --> Config Class Initialized
INFO - 2023-12-19 13:40:36 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:36 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:36 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:36 --> URI Class Initialized
INFO - 2023-12-19 13:40:36 --> Router Class Initialized
INFO - 2023-12-19 13:40:36 --> Output Class Initialized
INFO - 2023-12-19 13:40:36 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:36 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:36 --> Input Class Initialized
INFO - 2023-12-19 13:40:36 --> Language Class Initialized
ERROR - 2023-12-19 13:40:36 --> 404 Page Not Found: Assets/lang
INFO - 2023-12-19 13:40:42 --> Config Class Initialized
INFO - 2023-12-19 13:40:42 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:42 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:42 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:42 --> URI Class Initialized
INFO - 2023-12-19 13:40:42 --> Router Class Initialized
INFO - 2023-12-19 13:40:42 --> Output Class Initialized
INFO - 2023-12-19 13:40:42 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:42 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:42 --> Input Class Initialized
INFO - 2023-12-19 13:40:42 --> Language Class Initialized
INFO - 2023-12-19 13:40:42 --> Loader Class Initialized
INFO - 2023-12-19 13:40:42 --> Helper loaded: url_helper
INFO - 2023-12-19 13:40:42 --> Helper loaded: file_helper
INFO - 2023-12-19 13:40:42 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:40:42 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:40:42 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:40:42 --> Helper loaded: form_helper
INFO - 2023-12-19 13:40:42 --> Form Validation Class Initialized
INFO - 2023-12-19 13:40:42 --> Upload Class Initialized
INFO - 2023-12-19 13:40:42 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:40:42 --> Pagination Class Initialized
INFO - 2023-12-19 13:40:42 --> Model "Get_model" initialized
INFO - 2023-12-19 13:40:42 --> Controller Class Initialized
INFO - 2023-12-19 13:40:42 --> Model "Common_model" initialized
INFO - 2023-12-19 13:40:42 --> Model "Insert_model" initialized
INFO - 2023-12-19 13:40:42 --> Model "Update_model" initialized
INFO - 2023-12-19 13:40:43 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-19 13:40:43 --> Final output sent to browser
DEBUG - 2023-12-19 13:40:43 --> Total execution time: 0.9602
INFO - 2023-12-19 13:40:43 --> Config Class Initialized
INFO - 2023-12-19 13:40:43 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:43 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:43 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:43 --> URI Class Initialized
INFO - 2023-12-19 13:40:43 --> Router Class Initialized
INFO - 2023-12-19 13:40:43 --> Output Class Initialized
INFO - 2023-12-19 13:40:43 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:43 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:43 --> Input Class Initialized
INFO - 2023-12-19 13:40:43 --> Language Class Initialized
ERROR - 2023-12-19 13:40:43 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-19 13:40:43 --> Config Class Initialized
INFO - 2023-12-19 13:40:43 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:43 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:43 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:43 --> URI Class Initialized
INFO - 2023-12-19 13:40:43 --> Router Class Initialized
INFO - 2023-12-19 13:40:43 --> Output Class Initialized
INFO - 2023-12-19 13:40:43 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:43 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:43 --> Input Class Initialized
INFO - 2023-12-19 13:40:43 --> Language Class Initialized
ERROR - 2023-12-19 13:40:43 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:40:43 --> Config Class Initialized
INFO - 2023-12-19 13:40:43 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:43 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:43 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:43 --> URI Class Initialized
INFO - 2023-12-19 13:40:43 --> Router Class Initialized
INFO - 2023-12-19 13:40:43 --> Output Class Initialized
INFO - 2023-12-19 13:40:44 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:44 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:44 --> Input Class Initialized
INFO - 2023-12-19 13:40:44 --> Language Class Initialized
ERROR - 2023-12-19 13:40:44 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:40:44 --> Config Class Initialized
INFO - 2023-12-19 13:40:44 --> Hooks Class Initialized
INFO - 2023-12-19 13:40:44 --> Config Class Initialized
INFO - 2023-12-19 13:40:44 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:44 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:44 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:44 --> URI Class Initialized
DEBUG - 2023-12-19 13:40:44 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:44 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:44 --> Router Class Initialized
INFO - 2023-12-19 13:40:44 --> URI Class Initialized
INFO - 2023-12-19 13:40:44 --> Output Class Initialized
INFO - 2023-12-19 13:40:44 --> Security Class Initialized
INFO - 2023-12-19 13:40:44 --> Router Class Initialized
DEBUG - 2023-12-19 13:40:44 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:44 --> Input Class Initialized
INFO - 2023-12-19 13:40:44 --> Output Class Initialized
INFO - 2023-12-19 13:40:44 --> Language Class Initialized
INFO - 2023-12-19 13:40:44 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:44 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:44 --> Input Class Initialized
INFO - 2023-12-19 13:40:44 --> Language Class Initialized
ERROR - 2023-12-19 13:40:44 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-19 13:40:44 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:40:59 --> Config Class Initialized
INFO - 2023-12-19 13:40:59 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:40:59 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:40:59 --> Utf8 Class Initialized
INFO - 2023-12-19 13:40:59 --> URI Class Initialized
INFO - 2023-12-19 13:40:59 --> Router Class Initialized
INFO - 2023-12-19 13:40:59 --> Output Class Initialized
INFO - 2023-12-19 13:40:59 --> Security Class Initialized
DEBUG - 2023-12-19 13:40:59 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:40:59 --> Input Class Initialized
INFO - 2023-12-19 13:40:59 --> Language Class Initialized
INFO - 2023-12-19 13:40:59 --> Loader Class Initialized
INFO - 2023-12-19 13:40:59 --> Helper loaded: url_helper
INFO - 2023-12-19 13:40:59 --> Helper loaded: file_helper
INFO - 2023-12-19 13:40:59 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:40:59 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:40:59 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:40:59 --> Helper loaded: form_helper
INFO - 2023-12-19 13:40:59 --> Form Validation Class Initialized
INFO - 2023-12-19 13:40:59 --> Upload Class Initialized
INFO - 2023-12-19 13:40:59 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:40:59 --> Pagination Class Initialized
INFO - 2023-12-19 13:40:59 --> Model "Get_model" initialized
INFO - 2023-12-19 13:40:59 --> Controller Class Initialized
INFO - 2023-12-19 13:41:00 --> Model "Api_model" initialized
DEBUG - 2023-12-19 13:41:00 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-19 13:41:00 --> Language file loaded: language/english/form_validation_lang.php
INFO - 2023-12-19 13:41:00 --> Final output sent to browser
DEBUG - 2023-12-19 13:41:00 --> Total execution time: 0.4823
INFO - 2023-12-19 13:41:12 --> Config Class Initialized
INFO - 2023-12-19 13:41:12 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:41:12 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:41:12 --> Utf8 Class Initialized
INFO - 2023-12-19 13:41:12 --> URI Class Initialized
INFO - 2023-12-19 13:41:12 --> Router Class Initialized
INFO - 2023-12-19 13:41:12 --> Output Class Initialized
INFO - 2023-12-19 13:41:12 --> Security Class Initialized
DEBUG - 2023-12-19 13:41:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:41:12 --> Input Class Initialized
INFO - 2023-12-19 13:41:12 --> Language Class Initialized
INFO - 2023-12-19 13:41:12 --> Loader Class Initialized
INFO - 2023-12-19 13:41:12 --> Helper loaded: url_helper
INFO - 2023-12-19 13:41:12 --> Helper loaded: file_helper
INFO - 2023-12-19 13:41:12 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:41:12 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:41:12 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:41:12 --> Helper loaded: form_helper
INFO - 2023-12-19 13:41:12 --> Form Validation Class Initialized
INFO - 2023-12-19 13:41:12 --> Upload Class Initialized
INFO - 2023-12-19 13:41:12 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:41:12 --> Pagination Class Initialized
INFO - 2023-12-19 13:41:12 --> Model "Get_model" initialized
INFO - 2023-12-19 13:41:12 --> Controller Class Initialized
INFO - 2023-12-19 13:41:12 --> Model "Common_model" initialized
INFO - 2023-12-19 13:41:12 --> Model "Insert_model" initialized
INFO - 2023-12-19 13:41:12 --> Model "Update_model" initialized
INFO - 2023-12-19 13:41:12 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-19 13:41:12 --> Final output sent to browser
DEBUG - 2023-12-19 13:41:12 --> Total execution time: 0.1412
INFO - 2023-12-19 13:41:12 --> Config Class Initialized
INFO - 2023-12-19 13:41:12 --> Hooks Class Initialized
INFO - 2023-12-19 13:41:12 --> Config Class Initialized
INFO - 2023-12-19 13:41:12 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:41:12 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:41:12 --> Utf8 Class Initialized
DEBUG - 2023-12-19 13:41:12 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:41:12 --> Utf8 Class Initialized
INFO - 2023-12-19 13:41:12 --> URI Class Initialized
INFO - 2023-12-19 13:41:12 --> URI Class Initialized
INFO - 2023-12-19 13:41:12 --> Router Class Initialized
INFO - 2023-12-19 13:41:12 --> Router Class Initialized
INFO - 2023-12-19 13:41:12 --> Output Class Initialized
INFO - 2023-12-19 13:41:12 --> Security Class Initialized
INFO - 2023-12-19 13:41:12 --> Output Class Initialized
DEBUG - 2023-12-19 13:41:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:41:12 --> Input Class Initialized
INFO - 2023-12-19 13:41:12 --> Language Class Initialized
INFO - 2023-12-19 13:41:12 --> Config Class Initialized
INFO - 2023-12-19 13:41:12 --> Hooks Class Initialized
ERROR - 2023-12-19 13:41:12 --> 404 Page Not Found: Assets/libs
DEBUG - 2023-12-19 13:41:12 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:41:12 --> Security Class Initialized
INFO - 2023-12-19 13:41:12 --> Utf8 Class Initialized
DEBUG - 2023-12-19 13:41:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:41:12 --> Input Class Initialized
INFO - 2023-12-19 13:41:12 --> Language Class Initialized
ERROR - 2023-12-19 13:41:12 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-19 13:41:12 --> URI Class Initialized
INFO - 2023-12-19 13:41:12 --> Router Class Initialized
INFO - 2023-12-19 13:41:12 --> Output Class Initialized
INFO - 2023-12-19 13:41:12 --> Security Class Initialized
DEBUG - 2023-12-19 13:41:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:41:12 --> Input Class Initialized
INFO - 2023-12-19 13:41:12 --> Language Class Initialized
ERROR - 2023-12-19 13:41:12 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:41:13 --> Config Class Initialized
INFO - 2023-12-19 13:41:13 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:41:13 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:41:13 --> Utf8 Class Initialized
INFO - 2023-12-19 13:41:13 --> URI Class Initialized
INFO - 2023-12-19 13:41:13 --> Router Class Initialized
INFO - 2023-12-19 13:41:13 --> Config Class Initialized
INFO - 2023-12-19 13:41:13 --> Hooks Class Initialized
INFO - 2023-12-19 13:41:13 --> Output Class Initialized
INFO - 2023-12-19 13:41:13 --> Security Class Initialized
DEBUG - 2023-12-19 13:41:13 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:41:13 --> Input Class Initialized
DEBUG - 2023-12-19 13:41:13 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:41:13 --> Language Class Initialized
INFO - 2023-12-19 13:41:13 --> Utf8 Class Initialized
ERROR - 2023-12-19 13:41:13 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:41:13 --> URI Class Initialized
INFO - 2023-12-19 13:41:13 --> Router Class Initialized
INFO - 2023-12-19 13:41:13 --> Output Class Initialized
INFO - 2023-12-19 13:41:13 --> Security Class Initialized
DEBUG - 2023-12-19 13:41:13 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:41:13 --> Input Class Initialized
INFO - 2023-12-19 13:41:13 --> Language Class Initialized
ERROR - 2023-12-19 13:41:13 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-19 13:53:28 --> Config Class Initialized
INFO - 2023-12-19 13:53:28 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:53:28 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:53:28 --> Utf8 Class Initialized
INFO - 2023-12-19 13:53:28 --> URI Class Initialized
INFO - 2023-12-19 13:53:28 --> Router Class Initialized
INFO - 2023-12-19 13:53:28 --> Output Class Initialized
INFO - 2023-12-19 13:53:28 --> Security Class Initialized
DEBUG - 2023-12-19 13:53:28 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:53:28 --> Input Class Initialized
INFO - 2023-12-19 13:53:28 --> Language Class Initialized
INFO - 2023-12-19 13:53:28 --> Loader Class Initialized
INFO - 2023-12-19 13:53:28 --> Helper loaded: url_helper
INFO - 2023-12-19 13:53:28 --> Helper loaded: file_helper
INFO - 2023-12-19 13:53:28 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:53:28 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:53:28 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:53:28 --> Helper loaded: form_helper
INFO - 2023-12-19 13:53:28 --> Form Validation Class Initialized
INFO - 2023-12-19 13:53:28 --> Upload Class Initialized
INFO - 2023-12-19 13:53:28 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:53:28 --> Pagination Class Initialized
INFO - 2023-12-19 13:53:28 --> Model "Get_model" initialized
INFO - 2023-12-19 13:53:28 --> Controller Class Initialized
INFO - 2023-12-19 13:53:28 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-19 13:53:28 --> Final output sent to browser
DEBUG - 2023-12-19 13:53:28 --> Total execution time: 0.7863
INFO - 2023-12-19 13:53:29 --> Config Class Initialized
INFO - 2023-12-19 13:53:29 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:53:29 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:53:29 --> Utf8 Class Initialized
INFO - 2023-12-19 13:53:29 --> URI Class Initialized
INFO - 2023-12-19 13:53:29 --> Router Class Initialized
INFO - 2023-12-19 13:53:29 --> Output Class Initialized
INFO - 2023-12-19 13:53:29 --> Security Class Initialized
DEBUG - 2023-12-19 13:53:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:53:29 --> Input Class Initialized
INFO - 2023-12-19 13:53:29 --> Language Class Initialized
INFO - 2023-12-19 13:53:29 --> Loader Class Initialized
INFO - 2023-12-19 13:53:29 --> Helper loaded: url_helper
INFO - 2023-12-19 13:53:29 --> Helper loaded: file_helper
INFO - 2023-12-19 13:53:29 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:53:29 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:53:29 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:53:29 --> Helper loaded: form_helper
INFO - 2023-12-19 13:53:29 --> Form Validation Class Initialized
INFO - 2023-12-19 13:53:29 --> Upload Class Initialized
INFO - 2023-12-19 13:53:29 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:53:29 --> Pagination Class Initialized
INFO - 2023-12-19 13:53:29 --> Model "Get_model" initialized
INFO - 2023-12-19 13:53:29 --> Controller Class Initialized
INFO - 2023-12-19 13:53:29 --> Config Class Initialized
INFO - 2023-12-19 13:53:29 --> Hooks Class Initialized
DEBUG - 2023-12-19 13:53:29 --> UTF-8 Support Enabled
INFO - 2023-12-19 13:53:29 --> Utf8 Class Initialized
INFO - 2023-12-19 13:53:29 --> URI Class Initialized
INFO - 2023-12-19 13:53:29 --> Router Class Initialized
INFO - 2023-12-19 13:53:29 --> Output Class Initialized
INFO - 2023-12-19 13:53:29 --> Security Class Initialized
DEBUG - 2023-12-19 13:53:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-19 13:53:29 --> Input Class Initialized
INFO - 2023-12-19 13:53:29 --> Language Class Initialized
INFO - 2023-12-19 13:53:29 --> Loader Class Initialized
INFO - 2023-12-19 13:53:29 --> Helper loaded: url_helper
INFO - 2023-12-19 13:53:29 --> Helper loaded: file_helper
INFO - 2023-12-19 13:53:29 --> Database Driver Class Initialized
DEBUG - 2023-12-19 13:53:29 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-19 13:53:29 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-19 13:53:29 --> Helper loaded: form_helper
INFO - 2023-12-19 13:53:29 --> Form Validation Class Initialized
INFO - 2023-12-19 13:53:29 --> Upload Class Initialized
INFO - 2023-12-19 13:53:29 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-19 13:53:29 --> Pagination Class Initialized
INFO - 2023-12-19 13:53:29 --> Model "Get_model" initialized
INFO - 2023-12-19 13:53:29 --> Controller Class Initialized
INFO - 2023-12-19 13:53:29 --> Model "Api_model" initialized
DEBUG - 2023-12-19 13:53:29 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-19 13:53:29 --> Final output sent to browser
DEBUG - 2023-12-19 13:53:29 --> Total execution time: 0.1314
INFO - 2023-12-19 13:53:29 --> Final output sent to browser
DEBUG - 2023-12-19 13:53:29 --> Total execution time: 0.4127

View File

@ -0,0 +1,975 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2023-12-20 10:24:10 --> Config Class Initialized
INFO - 2023-12-20 10:24:10 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:24:10 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:24:10 --> Utf8 Class Initialized
INFO - 2023-12-20 10:24:10 --> URI Class Initialized
INFO - 2023-12-20 10:24:10 --> Router Class Initialized
INFO - 2023-12-20 10:24:10 --> Output Class Initialized
INFO - 2023-12-20 10:24:10 --> Security Class Initialized
DEBUG - 2023-12-20 10:24:10 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:24:10 --> Input Class Initialized
INFO - 2023-12-20 10:24:10 --> Language Class Initialized
INFO - 2023-12-20 10:24:10 --> Loader Class Initialized
INFO - 2023-12-20 10:24:10 --> Helper loaded: url_helper
INFO - 2023-12-20 10:24:10 --> Helper loaded: file_helper
INFO - 2023-12-20 10:24:10 --> Database Driver Class Initialized
DEBUG - 2023-12-20 10:24:11 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 10:24:11 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 10:24:11 --> Helper loaded: form_helper
INFO - 2023-12-20 10:24:11 --> Form Validation Class Initialized
INFO - 2023-12-20 10:24:11 --> Upload Class Initialized
INFO - 2023-12-20 10:24:11 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 10:24:11 --> Pagination Class Initialized
INFO - 2023-12-20 10:24:11 --> Model "Get_model" initialized
INFO - 2023-12-20 10:24:11 --> Controller Class Initialized
INFO - 2023-12-20 10:24:11 --> Config Class Initialized
INFO - 2023-12-20 10:24:11 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:24:11 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:24:11 --> Utf8 Class Initialized
INFO - 2023-12-20 10:24:11 --> URI Class Initialized
INFO - 2023-12-20 10:24:11 --> Router Class Initialized
INFO - 2023-12-20 10:24:11 --> Output Class Initialized
INFO - 2023-12-20 10:24:11 --> Security Class Initialized
DEBUG - 2023-12-20 10:24:11 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:24:11 --> Input Class Initialized
INFO - 2023-12-20 10:24:11 --> Language Class Initialized
INFO - 2023-12-20 10:24:11 --> Loader Class Initialized
INFO - 2023-12-20 10:24:11 --> Helper loaded: url_helper
INFO - 2023-12-20 10:24:11 --> Helper loaded: file_helper
INFO - 2023-12-20 10:24:11 --> Database Driver Class Initialized
DEBUG - 2023-12-20 10:24:11 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 10:24:11 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 10:24:11 --> Helper loaded: form_helper
INFO - 2023-12-20 10:24:11 --> Form Validation Class Initialized
INFO - 2023-12-20 10:24:11 --> Upload Class Initialized
INFO - 2023-12-20 10:24:11 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 10:24:11 --> Pagination Class Initialized
INFO - 2023-12-20 10:24:11 --> Model "Get_model" initialized
INFO - 2023-12-20 10:24:11 --> Controller Class Initialized
INFO - 2023-12-20 10:24:11 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2023-12-20 10:24:11 --> Final output sent to browser
DEBUG - 2023-12-20 10:24:11 --> Total execution time: 0.2095
INFO - 2023-12-20 10:24:13 --> Config Class Initialized
INFO - 2023-12-20 10:24:13 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:24:13 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:24:13 --> Utf8 Class Initialized
INFO - 2023-12-20 10:24:13 --> URI Class Initialized
INFO - 2023-12-20 10:24:13 --> Router Class Initialized
INFO - 2023-12-20 10:24:13 --> Output Class Initialized
INFO - 2023-12-20 10:24:13 --> Security Class Initialized
DEBUG - 2023-12-20 10:24:13 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:24:13 --> Input Class Initialized
INFO - 2023-12-20 10:24:13 --> Language Class Initialized
ERROR - 2023-12-20 10:24:13 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 10:24:13 --> Config Class Initialized
INFO - 2023-12-20 10:24:13 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:24:13 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:24:13 --> Utf8 Class Initialized
INFO - 2023-12-20 10:24:13 --> URI Class Initialized
INFO - 2023-12-20 10:24:13 --> Router Class Initialized
INFO - 2023-12-20 10:24:13 --> Output Class Initialized
INFO - 2023-12-20 10:24:13 --> Security Class Initialized
DEBUG - 2023-12-20 10:24:13 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:24:13 --> Input Class Initialized
INFO - 2023-12-20 10:24:13 --> Language Class Initialized
ERROR - 2023-12-20 10:24:13 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 10:31:05 --> Config Class Initialized
INFO - 2023-12-20 10:31:05 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:31:05 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:31:05 --> Utf8 Class Initialized
INFO - 2023-12-20 10:31:05 --> URI Class Initialized
INFO - 2023-12-20 10:31:05 --> Router Class Initialized
INFO - 2023-12-20 10:31:05 --> Output Class Initialized
INFO - 2023-12-20 10:31:05 --> Security Class Initialized
DEBUG - 2023-12-20 10:31:05 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:31:05 --> Input Class Initialized
INFO - 2023-12-20 10:31:05 --> Language Class Initialized
INFO - 2023-12-20 10:31:05 --> Loader Class Initialized
INFO - 2023-12-20 10:31:05 --> Helper loaded: url_helper
INFO - 2023-12-20 10:31:05 --> Helper loaded: file_helper
INFO - 2023-12-20 10:31:05 --> Database Driver Class Initialized
DEBUG - 2023-12-20 10:31:05 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 10:31:05 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 10:31:05 --> Helper loaded: form_helper
INFO - 2023-12-20 10:31:05 --> Form Validation Class Initialized
INFO - 2023-12-20 10:31:05 --> Upload Class Initialized
INFO - 2023-12-20 10:31:05 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 10:31:05 --> Pagination Class Initialized
INFO - 2023-12-20 10:31:05 --> Model "Get_model" initialized
INFO - 2023-12-20 10:31:05 --> Controller Class Initialized
INFO - 2023-12-20 10:31:05 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-20 10:31:05 --> Final output sent to browser
DEBUG - 2023-12-20 10:31:05 --> Total execution time: 0.3165
INFO - 2023-12-20 10:31:05 --> Config Class Initialized
INFO - 2023-12-20 10:31:05 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:31:05 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:31:05 --> Utf8 Class Initialized
INFO - 2023-12-20 10:31:05 --> URI Class Initialized
INFO - 2023-12-20 10:31:05 --> Router Class Initialized
INFO - 2023-12-20 10:31:05 --> Output Class Initialized
INFO - 2023-12-20 10:31:05 --> Security Class Initialized
DEBUG - 2023-12-20 10:31:05 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:31:05 --> Input Class Initialized
INFO - 2023-12-20 10:31:05 --> Language Class Initialized
INFO - 2023-12-20 10:31:05 --> Loader Class Initialized
INFO - 2023-12-20 10:31:05 --> Helper loaded: url_helper
INFO - 2023-12-20 10:31:05 --> Helper loaded: file_helper
INFO - 2023-12-20 10:31:05 --> Database Driver Class Initialized
DEBUG - 2023-12-20 10:31:05 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 10:31:05 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 10:31:05 --> Helper loaded: form_helper
INFO - 2023-12-20 10:31:05 --> Form Validation Class Initialized
INFO - 2023-12-20 10:31:05 --> Upload Class Initialized
INFO - 2023-12-20 10:31:05 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 10:31:05 --> Pagination Class Initialized
INFO - 2023-12-20 10:31:05 --> Model "Get_model" initialized
INFO - 2023-12-20 10:31:05 --> Controller Class Initialized
INFO - 2023-12-20 10:31:05 --> Config Class Initialized
INFO - 2023-12-20 10:31:05 --> Hooks Class Initialized
DEBUG - 2023-12-20 10:31:05 --> UTF-8 Support Enabled
INFO - 2023-12-20 10:31:05 --> Utf8 Class Initialized
INFO - 2023-12-20 10:31:05 --> URI Class Initialized
INFO - 2023-12-20 10:31:05 --> Router Class Initialized
INFO - 2023-12-20 10:31:05 --> Output Class Initialized
INFO - 2023-12-20 10:31:05 --> Security Class Initialized
DEBUG - 2023-12-20 10:31:05 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 10:31:05 --> Input Class Initialized
INFO - 2023-12-20 10:31:05 --> Language Class Initialized
INFO - 2023-12-20 10:31:05 --> Loader Class Initialized
INFO - 2023-12-20 10:31:05 --> Helper loaded: url_helper
INFO - 2023-12-20 10:31:05 --> Helper loaded: file_helper
INFO - 2023-12-20 10:31:05 --> Database Driver Class Initialized
DEBUG - 2023-12-20 10:31:06 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 10:31:06 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 10:31:06 --> Helper loaded: form_helper
INFO - 2023-12-20 10:31:06 --> Form Validation Class Initialized
INFO - 2023-12-20 10:31:06 --> Upload Class Initialized
INFO - 2023-12-20 10:31:06 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 10:31:06 --> Pagination Class Initialized
INFO - 2023-12-20 10:31:06 --> Model "Get_model" initialized
INFO - 2023-12-20 10:31:06 --> Controller Class Initialized
INFO - 2023-12-20 10:31:06 --> Model "Api_model" initialized
DEBUG - 2023-12-20 10:31:06 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-20 10:31:06 --> Final output sent to browser
DEBUG - 2023-12-20 10:31:06 --> Total execution time: 0.2226
INFO - 2023-12-20 10:31:06 --> Final output sent to browser
DEBUG - 2023-12-20 10:31:06 --> Total execution time: 0.4734
INFO - 2023-12-20 11:42:36 --> Config Class Initialized
INFO - 2023-12-20 11:42:36 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:37 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:37 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:37 --> URI Class Initialized
INFO - 2023-12-20 11:42:37 --> Router Class Initialized
INFO - 2023-12-20 11:42:37 --> Output Class Initialized
INFO - 2023-12-20 11:42:37 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:37 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:37 --> Input Class Initialized
INFO - 2023-12-20 11:42:37 --> Language Class Initialized
INFO - 2023-12-20 11:42:37 --> Loader Class Initialized
INFO - 2023-12-20 11:42:38 --> Helper loaded: url_helper
INFO - 2023-12-20 11:42:38 --> Helper loaded: file_helper
INFO - 2023-12-20 11:42:38 --> Database Driver Class Initialized
DEBUG - 2023-12-20 11:42:38 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 11:42:38 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 11:42:38 --> Helper loaded: form_helper
INFO - 2023-12-20 11:42:38 --> Form Validation Class Initialized
INFO - 2023-12-20 11:42:38 --> Upload Class Initialized
INFO - 2023-12-20 11:42:38 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 11:42:38 --> Pagination Class Initialized
INFO - 2023-12-20 11:42:38 --> Model "Get_model" initialized
INFO - 2023-12-20 11:42:38 --> Controller Class Initialized
DEBUG - 2023-12-20 11:42:38 --> Form_validation class already loaded. Second attempt ignored.
DEBUG - 2023-12-20 11:42:38 --> Session class already loaded. Second attempt ignored.
INFO - 2023-12-20 11:42:39 --> Model "Auth_model" initialized
INFO - 2023-12-20 11:42:39 --> Config Class Initialized
INFO - 2023-12-20 11:42:39 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:39 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:39 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:39 --> URI Class Initialized
INFO - 2023-12-20 11:42:39 --> Router Class Initialized
INFO - 2023-12-20 11:42:39 --> Output Class Initialized
INFO - 2023-12-20 11:42:39 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:39 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:39 --> Input Class Initialized
INFO - 2023-12-20 11:42:39 --> Language Class Initialized
INFO - 2023-12-20 11:42:39 --> Loader Class Initialized
INFO - 2023-12-20 11:42:39 --> Helper loaded: url_helper
INFO - 2023-12-20 11:42:39 --> Helper loaded: file_helper
INFO - 2023-12-20 11:42:39 --> Database Driver Class Initialized
DEBUG - 2023-12-20 11:42:39 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 11:42:39 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 11:42:39 --> Helper loaded: form_helper
INFO - 2023-12-20 11:42:39 --> Form Validation Class Initialized
INFO - 2023-12-20 11:42:39 --> Upload Class Initialized
INFO - 2023-12-20 11:42:39 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 11:42:39 --> Pagination Class Initialized
INFO - 2023-12-20 11:42:39 --> Model "Get_model" initialized
INFO - 2023-12-20 11:42:39 --> Controller Class Initialized
INFO - 2023-12-20 11:42:39 --> Model "Common_model" initialized
INFO - 2023-12-20 11:42:39 --> Model "Insert_model" initialized
INFO - 2023-12-20 11:42:39 --> Model "Update_model" initialized
INFO - 2023-12-20 11:42:39 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/index.php
INFO - 2023-12-20 11:42:39 --> Final output sent to browser
DEBUG - 2023-12-20 11:42:39 --> Total execution time: 0.7983
INFO - 2023-12-20 11:42:40 --> Config Class Initialized
INFO - 2023-12-20 11:42:40 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:40 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:40 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:40 --> URI Class Initialized
INFO - 2023-12-20 11:42:40 --> Router Class Initialized
INFO - 2023-12-20 11:42:40 --> Output Class Initialized
INFO - 2023-12-20 11:42:40 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:40 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:40 --> Input Class Initialized
INFO - 2023-12-20 11:42:40 --> Language Class Initialized
INFO - 2023-12-20 11:42:40 --> Config Class Initialized
INFO - 2023-12-20 11:42:40 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:40 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:40 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:40 --> URI Class Initialized
INFO - 2023-12-20 11:42:40 --> Router Class Initialized
INFO - 2023-12-20 11:42:40 --> Output Class Initialized
INFO - 2023-12-20 11:42:40 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:40 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:40 --> Input Class Initialized
INFO - 2023-12-20 11:42:40 --> Language Class Initialized
ERROR - 2023-12-20 11:42:40 --> 404 Page Not Found: Assets/fonts
ERROR - 2023-12-20 11:42:40 --> 404 Page Not Found: Assets/images
INFO - 2023-12-20 11:42:40 --> Config Class Initialized
INFO - 2023-12-20 11:42:40 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:40 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:40 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:40 --> URI Class Initialized
INFO - 2023-12-20 11:42:40 --> Router Class Initialized
INFO - 2023-12-20 11:42:40 --> Output Class Initialized
INFO - 2023-12-20 11:42:40 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:40 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:40 --> Input Class Initialized
INFO - 2023-12-20 11:42:40 --> Language Class Initialized
ERROR - 2023-12-20 11:42:40 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:42:40 --> Config Class Initialized
INFO - 2023-12-20 11:42:40 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:40 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:40 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:40 --> URI Class Initialized
INFO - 2023-12-20 11:42:40 --> Router Class Initialized
INFO - 2023-12-20 11:42:40 --> Output Class Initialized
INFO - 2023-12-20 11:42:40 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:40 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:40 --> Input Class Initialized
INFO - 2023-12-20 11:42:40 --> Language Class Initialized
ERROR - 2023-12-20 11:42:40 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:42:41 --> Config Class Initialized
INFO - 2023-12-20 11:42:41 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:41 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:41 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:41 --> URI Class Initialized
INFO - 2023-12-20 11:42:41 --> Router Class Initialized
INFO - 2023-12-20 11:42:41 --> Output Class Initialized
INFO - 2023-12-20 11:42:41 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:41 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:41 --> Input Class Initialized
INFO - 2023-12-20 11:42:41 --> Language Class Initialized
ERROR - 2023-12-20 11:42:41 --> 404 Page Not Found: Assets/lang
INFO - 2023-12-20 11:42:46 --> Config Class Initialized
INFO - 2023-12-20 11:42:46 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:46 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:46 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:46 --> URI Class Initialized
INFO - 2023-12-20 11:42:46 --> Router Class Initialized
INFO - 2023-12-20 11:42:46 --> Output Class Initialized
INFO - 2023-12-20 11:42:46 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:46 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:46 --> Input Class Initialized
INFO - 2023-12-20 11:42:46 --> Language Class Initialized
INFO - 2023-12-20 11:42:46 --> Loader Class Initialized
INFO - 2023-12-20 11:42:46 --> Helper loaded: url_helper
INFO - 2023-12-20 11:42:46 --> Helper loaded: file_helper
INFO - 2023-12-20 11:42:46 --> Database Driver Class Initialized
DEBUG - 2023-12-20 11:42:46 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 11:42:46 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 11:42:46 --> Helper loaded: form_helper
INFO - 2023-12-20 11:42:46 --> Form Validation Class Initialized
INFO - 2023-12-20 11:42:46 --> Upload Class Initialized
INFO - 2023-12-20 11:42:46 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 11:42:46 --> Pagination Class Initialized
INFO - 2023-12-20 11:42:46 --> Model "Get_model" initialized
INFO - 2023-12-20 11:42:46 --> Controller Class Initialized
INFO - 2023-12-20 11:42:46 --> Model "Common_model" initialized
INFO - 2023-12-20 11:42:46 --> Model "Insert_model" initialized
INFO - 2023-12-20 11:42:46 --> Model "Update_model" initialized
INFO - 2023-12-20 11:42:46 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-20 11:42:46 --> Final output sent to browser
DEBUG - 2023-12-20 11:42:46 --> Total execution time: 0.1934
INFO - 2023-12-20 11:42:46 --> Config Class Initialized
INFO - 2023-12-20 11:42:46 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:46 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:46 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:46 --> URI Class Initialized
INFO - 2023-12-20 11:42:46 --> Router Class Initialized
INFO - 2023-12-20 11:42:46 --> Output Class Initialized
INFO - 2023-12-20 11:42:46 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:46 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:46 --> Input Class Initialized
INFO - 2023-12-20 11:42:46 --> Language Class Initialized
ERROR - 2023-12-20 11:42:46 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-20 11:42:46 --> Config Class Initialized
INFO - 2023-12-20 11:42:46 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:46 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:46 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:46 --> URI Class Initialized
INFO - 2023-12-20 11:42:46 --> Router Class Initialized
INFO - 2023-12-20 11:42:46 --> Output Class Initialized
INFO - 2023-12-20 11:42:46 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:46 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:46 --> Input Class Initialized
INFO - 2023-12-20 11:42:46 --> Language Class Initialized
ERROR - 2023-12-20 11:42:46 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:42:47 --> Config Class Initialized
INFO - 2023-12-20 11:42:47 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:42:47 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:47 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:47 --> URI Class Initialized
INFO - 2023-12-20 11:42:47 --> Router Class Initialized
INFO - 2023-12-20 11:42:47 --> Output Class Initialized
INFO - 2023-12-20 11:42:47 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:47 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:47 --> Input Class Initialized
INFO - 2023-12-20 11:42:47 --> Language Class Initialized
ERROR - 2023-12-20 11:42:47 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:42:47 --> Config Class Initialized
INFO - 2023-12-20 11:42:47 --> Hooks Class Initialized
INFO - 2023-12-20 11:42:47 --> Config Class Initialized
DEBUG - 2023-12-20 11:42:47 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:47 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:47 --> URI Class Initialized
INFO - 2023-12-20 11:42:47 --> Hooks Class Initialized
INFO - 2023-12-20 11:42:47 --> Router Class Initialized
INFO - 2023-12-20 11:42:47 --> Output Class Initialized
DEBUG - 2023-12-20 11:42:47 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:42:47 --> Utf8 Class Initialized
INFO - 2023-12-20 11:42:47 --> Security Class Initialized
INFO - 2023-12-20 11:42:47 --> URI Class Initialized
DEBUG - 2023-12-20 11:42:47 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:47 --> Router Class Initialized
INFO - 2023-12-20 11:42:47 --> Input Class Initialized
INFO - 2023-12-20 11:42:47 --> Language Class Initialized
ERROR - 2023-12-20 11:42:47 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:42:47 --> Output Class Initialized
INFO - 2023-12-20 11:42:47 --> Security Class Initialized
DEBUG - 2023-12-20 11:42:47 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:42:47 --> Input Class Initialized
INFO - 2023-12-20 11:42:47 --> Language Class Initialized
ERROR - 2023-12-20 11:42:47 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:49:11 --> Config Class Initialized
INFO - 2023-12-20 11:49:11 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:49:11 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:49:11 --> Utf8 Class Initialized
INFO - 2023-12-20 11:49:11 --> URI Class Initialized
INFO - 2023-12-20 11:49:11 --> Router Class Initialized
INFO - 2023-12-20 11:49:11 --> Output Class Initialized
INFO - 2023-12-20 11:49:11 --> Security Class Initialized
DEBUG - 2023-12-20 11:49:11 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:49:11 --> Input Class Initialized
INFO - 2023-12-20 11:49:11 --> Language Class Initialized
INFO - 2023-12-20 11:49:11 --> Loader Class Initialized
INFO - 2023-12-20 11:49:11 --> Helper loaded: url_helper
INFO - 2023-12-20 11:49:11 --> Helper loaded: file_helper
INFO - 2023-12-20 11:49:11 --> Database Driver Class Initialized
DEBUG - 2023-12-20 11:49:11 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 11:49:11 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 11:49:11 --> Helper loaded: form_helper
INFO - 2023-12-20 11:49:11 --> Form Validation Class Initialized
INFO - 2023-12-20 11:49:11 --> Upload Class Initialized
INFO - 2023-12-20 11:49:11 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 11:49:11 --> Pagination Class Initialized
INFO - 2023-12-20 11:49:11 --> Model "Get_model" initialized
INFO - 2023-12-20 11:49:11 --> Controller Class Initialized
INFO - 2023-12-20 11:49:11 --> Model "Common_model" initialized
INFO - 2023-12-20 11:49:11 --> Model "Insert_model" initialized
INFO - 2023-12-20 11:49:11 --> Model "Update_model" initialized
INFO - 2023-12-20 11:49:11 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-20 11:49:11 --> Final output sent to browser
DEBUG - 2023-12-20 11:49:11 --> Total execution time: 0.1102
INFO - 2023-12-20 11:49:12 --> Config Class Initialized
INFO - 2023-12-20 11:49:12 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:49:12 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:49:12 --> Utf8 Class Initialized
INFO - 2023-12-20 11:49:12 --> URI Class Initialized
INFO - 2023-12-20 11:49:12 --> Router Class Initialized
INFO - 2023-12-20 11:49:12 --> Output Class Initialized
INFO - 2023-12-20 11:49:12 --> Security Class Initialized
DEBUG - 2023-12-20 11:49:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:49:12 --> Input Class Initialized
INFO - 2023-12-20 11:49:12 --> Language Class Initialized
ERROR - 2023-12-20 11:49:12 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-20 11:49:12 --> Config Class Initialized
INFO - 2023-12-20 11:49:12 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:49:12 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:49:12 --> Utf8 Class Initialized
INFO - 2023-12-20 11:49:12 --> URI Class Initialized
INFO - 2023-12-20 11:49:12 --> Router Class Initialized
INFO - 2023-12-20 11:49:12 --> Output Class Initialized
INFO - 2023-12-20 11:49:12 --> Security Class Initialized
DEBUG - 2023-12-20 11:49:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:49:12 --> Input Class Initialized
INFO - 2023-12-20 11:49:12 --> Language Class Initialized
ERROR - 2023-12-20 11:49:12 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:49:12 --> Config Class Initialized
INFO - 2023-12-20 11:49:12 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:49:12 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:49:12 --> Utf8 Class Initialized
INFO - 2023-12-20 11:49:12 --> URI Class Initialized
INFO - 2023-12-20 11:49:12 --> Router Class Initialized
INFO - 2023-12-20 11:49:12 --> Output Class Initialized
INFO - 2023-12-20 11:49:12 --> Security Class Initialized
DEBUG - 2023-12-20 11:49:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:49:12 --> Input Class Initialized
INFO - 2023-12-20 11:49:12 --> Language Class Initialized
ERROR - 2023-12-20 11:49:12 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:49:12 --> Config Class Initialized
INFO - 2023-12-20 11:49:12 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:49:12 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:49:12 --> Utf8 Class Initialized
INFO - 2023-12-20 11:49:12 --> URI Class Initialized
INFO - 2023-12-20 11:49:12 --> Router Class Initialized
INFO - 2023-12-20 11:49:12 --> Output Class Initialized
INFO - 2023-12-20 11:49:12 --> Security Class Initialized
DEBUG - 2023-12-20 11:49:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:49:12 --> Input Class Initialized
INFO - 2023-12-20 11:49:12 --> Language Class Initialized
INFO - 2023-12-20 11:49:12 --> Config Class Initialized
ERROR - 2023-12-20 11:49:12 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 11:49:12 --> Hooks Class Initialized
DEBUG - 2023-12-20 11:49:12 --> UTF-8 Support Enabled
INFO - 2023-12-20 11:49:12 --> Utf8 Class Initialized
INFO - 2023-12-20 11:49:12 --> URI Class Initialized
INFO - 2023-12-20 11:49:12 --> Router Class Initialized
INFO - 2023-12-20 11:49:12 --> Output Class Initialized
INFO - 2023-12-20 11:49:12 --> Security Class Initialized
DEBUG - 2023-12-20 11:49:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 11:49:12 --> Input Class Initialized
INFO - 2023-12-20 11:49:12 --> Language Class Initialized
ERROR - 2023-12-20 11:49:12 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:51:51 --> Config Class Initialized
INFO - 2023-12-20 12:51:51 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:51:51 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:51:51 --> Utf8 Class Initialized
INFO - 2023-12-20 12:51:51 --> URI Class Initialized
INFO - 2023-12-20 12:51:51 --> Router Class Initialized
INFO - 2023-12-20 12:51:51 --> Output Class Initialized
INFO - 2023-12-20 12:51:51 --> Security Class Initialized
DEBUG - 2023-12-20 12:51:51 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:51:51 --> Input Class Initialized
INFO - 2023-12-20 12:51:51 --> Language Class Initialized
INFO - 2023-12-20 12:51:51 --> Loader Class Initialized
INFO - 2023-12-20 12:51:51 --> Helper loaded: url_helper
INFO - 2023-12-20 12:51:51 --> Helper loaded: file_helper
INFO - 2023-12-20 12:51:51 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:51:51 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:51:51 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:51:51 --> Helper loaded: form_helper
INFO - 2023-12-20 12:51:51 --> Form Validation Class Initialized
INFO - 2023-12-20 12:51:51 --> Upload Class Initialized
INFO - 2023-12-20 12:51:51 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:51:51 --> Pagination Class Initialized
INFO - 2023-12-20 12:51:51 --> Model "Get_model" initialized
INFO - 2023-12-20 12:51:51 --> Controller Class Initialized
INFO - 2023-12-20 12:51:51 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-20 12:51:51 --> Final output sent to browser
DEBUG - 2023-12-20 12:51:51 --> Total execution time: 0.3217
INFO - 2023-12-20 12:51:51 --> Config Class Initialized
INFO - 2023-12-20 12:51:51 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:51:51 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:51:51 --> Utf8 Class Initialized
INFO - 2023-12-20 12:51:51 --> URI Class Initialized
INFO - 2023-12-20 12:51:51 --> Router Class Initialized
INFO - 2023-12-20 12:51:51 --> Output Class Initialized
INFO - 2023-12-20 12:51:51 --> Security Class Initialized
DEBUG - 2023-12-20 12:51:51 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:51:51 --> Input Class Initialized
INFO - 2023-12-20 12:51:51 --> Language Class Initialized
INFO - 2023-12-20 12:51:51 --> Loader Class Initialized
INFO - 2023-12-20 12:51:51 --> Helper loaded: url_helper
INFO - 2023-12-20 12:51:51 --> Helper loaded: file_helper
INFO - 2023-12-20 12:51:52 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:51:52 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:51:52 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:51:52 --> Helper loaded: form_helper
INFO - 2023-12-20 12:51:52 --> Form Validation Class Initialized
INFO - 2023-12-20 12:51:52 --> Upload Class Initialized
INFO - 2023-12-20 12:51:52 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:51:52 --> Pagination Class Initialized
INFO - 2023-12-20 12:51:52 --> Model "Get_model" initialized
INFO - 2023-12-20 12:51:52 --> Controller Class Initialized
INFO - 2023-12-20 12:51:52 --> Config Class Initialized
INFO - 2023-12-20 12:51:52 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:51:52 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:51:52 --> Utf8 Class Initialized
INFO - 2023-12-20 12:51:52 --> URI Class Initialized
INFO - 2023-12-20 12:51:52 --> Router Class Initialized
INFO - 2023-12-20 12:51:52 --> Output Class Initialized
INFO - 2023-12-20 12:51:52 --> Security Class Initialized
DEBUG - 2023-12-20 12:51:52 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:51:52 --> Input Class Initialized
INFO - 2023-12-20 12:51:52 --> Language Class Initialized
INFO - 2023-12-20 12:51:52 --> Loader Class Initialized
INFO - 2023-12-20 12:51:52 --> Helper loaded: url_helper
INFO - 2023-12-20 12:51:52 --> Helper loaded: file_helper
INFO - 2023-12-20 12:51:52 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:51:52 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:51:52 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:51:52 --> Helper loaded: form_helper
INFO - 2023-12-20 12:51:52 --> Form Validation Class Initialized
INFO - 2023-12-20 12:51:52 --> Upload Class Initialized
INFO - 2023-12-20 12:51:52 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:51:52 --> Pagination Class Initialized
INFO - 2023-12-20 12:51:52 --> Model "Get_model" initialized
INFO - 2023-12-20 12:51:52 --> Controller Class Initialized
INFO - 2023-12-20 12:51:52 --> Model "Api_model" initialized
DEBUG - 2023-12-20 12:51:52 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-20 12:51:52 --> Final output sent to browser
DEBUG - 2023-12-20 12:51:52 --> Total execution time: 0.1122
INFO - 2023-12-20 12:51:52 --> Final output sent to browser
DEBUG - 2023-12-20 12:51:52 --> Total execution time: 0.3180
INFO - 2023-12-20 12:51:57 --> Config Class Initialized
INFO - 2023-12-20 12:51:57 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:51:57 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:51:57 --> Utf8 Class Initialized
INFO - 2023-12-20 12:51:57 --> URI Class Initialized
DEBUG - 2023-12-20 12:51:57 --> No URI present. Default controller set.
INFO - 2023-12-20 12:51:57 --> Router Class Initialized
INFO - 2023-12-20 12:51:57 --> Output Class Initialized
INFO - 2023-12-20 12:51:57 --> Security Class Initialized
DEBUG - 2023-12-20 12:51:57 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:51:57 --> Input Class Initialized
INFO - 2023-12-20 12:51:57 --> Language Class Initialized
INFO - 2023-12-20 12:51:57 --> Loader Class Initialized
INFO - 2023-12-20 12:51:57 --> Helper loaded: url_helper
INFO - 2023-12-20 12:51:57 --> Helper loaded: file_helper
INFO - 2023-12-20 12:51:57 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:51:57 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:51:57 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:51:57 --> Helper loaded: form_helper
INFO - 2023-12-20 12:51:57 --> Form Validation Class Initialized
INFO - 2023-12-20 12:51:57 --> Upload Class Initialized
INFO - 2023-12-20 12:51:57 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:51:57 --> Pagination Class Initialized
INFO - 2023-12-20 12:51:57 --> Model "Get_model" initialized
INFO - 2023-12-20 12:51:57 --> Controller Class Initialized
INFO - 2023-12-20 12:51:57 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2023-12-20 12:51:57 --> Final output sent to browser
DEBUG - 2023-12-20 12:51:57 --> Total execution time: 0.0837
INFO - 2023-12-20 12:51:57 --> Config Class Initialized
INFO - 2023-12-20 12:51:57 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:51:57 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:51:57 --> Utf8 Class Initialized
INFO - 2023-12-20 12:51:57 --> URI Class Initialized
INFO - 2023-12-20 12:51:57 --> Router Class Initialized
INFO - 2023-12-20 12:51:57 --> Output Class Initialized
INFO - 2023-12-20 12:51:57 --> Security Class Initialized
DEBUG - 2023-12-20 12:51:57 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:51:57 --> Input Class Initialized
INFO - 2023-12-20 12:51:57 --> Language Class Initialized
INFO - 2023-12-20 12:51:57 --> Config Class Initialized
INFO - 2023-12-20 12:51:57 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:51:57 --> UTF-8 Support Enabled
ERROR - 2023-12-20 12:51:57 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:51:57 --> Utf8 Class Initialized
INFO - 2023-12-20 12:51:57 --> URI Class Initialized
INFO - 2023-12-20 12:51:57 --> Router Class Initialized
INFO - 2023-12-20 12:51:57 --> Output Class Initialized
INFO - 2023-12-20 12:51:57 --> Security Class Initialized
DEBUG - 2023-12-20 12:51:57 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:51:57 --> Input Class Initialized
INFO - 2023-12-20 12:51:57 --> Language Class Initialized
ERROR - 2023-12-20 12:51:57 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:52:03 --> Config Class Initialized
INFO - 2023-12-20 12:52:03 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:03 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:03 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:03 --> URI Class Initialized
INFO - 2023-12-20 12:52:03 --> Router Class Initialized
INFO - 2023-12-20 12:52:03 --> Output Class Initialized
INFO - 2023-12-20 12:52:03 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:03 --> Input Class Initialized
INFO - 2023-12-20 12:52:03 --> Language Class Initialized
INFO - 2023-12-20 12:52:03 --> Loader Class Initialized
INFO - 2023-12-20 12:52:03 --> Helper loaded: url_helper
INFO - 2023-12-20 12:52:03 --> Helper loaded: file_helper
INFO - 2023-12-20 12:52:03 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:52:03 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:52:03 --> Helper loaded: form_helper
INFO - 2023-12-20 12:52:03 --> Form Validation Class Initialized
INFO - 2023-12-20 12:52:03 --> Upload Class Initialized
INFO - 2023-12-20 12:52:03 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:52:03 --> Pagination Class Initialized
INFO - 2023-12-20 12:52:03 --> Model "Get_model" initialized
INFO - 2023-12-20 12:52:03 --> Controller Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Form_validation class already loaded. Second attempt ignored.
DEBUG - 2023-12-20 12:52:03 --> Session class already loaded. Second attempt ignored.
INFO - 2023-12-20 12:52:03 --> Model "Auth_model" initialized
INFO - 2023-12-20 12:52:03 --> Config Class Initialized
INFO - 2023-12-20 12:52:03 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:03 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:03 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:03 --> URI Class Initialized
INFO - 2023-12-20 12:52:03 --> Router Class Initialized
INFO - 2023-12-20 12:52:03 --> Output Class Initialized
INFO - 2023-12-20 12:52:03 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:03 --> Input Class Initialized
INFO - 2023-12-20 12:52:03 --> Language Class Initialized
INFO - 2023-12-20 12:52:03 --> Loader Class Initialized
INFO - 2023-12-20 12:52:03 --> Helper loaded: url_helper
INFO - 2023-12-20 12:52:03 --> Helper loaded: file_helper
INFO - 2023-12-20 12:52:03 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:52:03 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:52:03 --> Helper loaded: form_helper
INFO - 2023-12-20 12:52:03 --> Form Validation Class Initialized
INFO - 2023-12-20 12:52:03 --> Upload Class Initialized
INFO - 2023-12-20 12:52:03 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:52:03 --> Pagination Class Initialized
INFO - 2023-12-20 12:52:03 --> Model "Get_model" initialized
INFO - 2023-12-20 12:52:03 --> Controller Class Initialized
INFO - 2023-12-20 12:52:03 --> Model "Common_model" initialized
INFO - 2023-12-20 12:52:03 --> Model "Insert_model" initialized
INFO - 2023-12-20 12:52:03 --> Model "Update_model" initialized
INFO - 2023-12-20 12:52:03 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/index.php
INFO - 2023-12-20 12:52:03 --> Final output sent to browser
DEBUG - 2023-12-20 12:52:03 --> Total execution time: 0.1228
INFO - 2023-12-20 12:52:03 --> Config Class Initialized
INFO - 2023-12-20 12:52:03 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:03 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:03 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:03 --> URI Class Initialized
INFO - 2023-12-20 12:52:03 --> Router Class Initialized
INFO - 2023-12-20 12:52:03 --> Output Class Initialized
INFO - 2023-12-20 12:52:03 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:03 --> Input Class Initialized
INFO - 2023-12-20 12:52:03 --> Language Class Initialized
ERROR - 2023-12-20 12:52:03 --> 404 Page Not Found: Assets/images
INFO - 2023-12-20 12:52:03 --> Config Class Initialized
INFO - 2023-12-20 12:52:03 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:03 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:03 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:03 --> URI Class Initialized
INFO - 2023-12-20 12:52:03 --> Router Class Initialized
INFO - 2023-12-20 12:52:03 --> Output Class Initialized
INFO - 2023-12-20 12:52:03 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:03 --> Input Class Initialized
INFO - 2023-12-20 12:52:03 --> Language Class Initialized
ERROR - 2023-12-20 12:52:03 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-20 12:52:04 --> Config Class Initialized
INFO - 2023-12-20 12:52:04 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:04 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:04 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:04 --> URI Class Initialized
INFO - 2023-12-20 12:52:04 --> Config Class Initialized
INFO - 2023-12-20 12:52:04 --> Hooks Class Initialized
INFO - 2023-12-20 12:52:04 --> Router Class Initialized
DEBUG - 2023-12-20 12:52:04 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:04 --> Output Class Initialized
INFO - 2023-12-20 12:52:04 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:04 --> URI Class Initialized
INFO - 2023-12-20 12:52:04 --> Router Class Initialized
INFO - 2023-12-20 12:52:04 --> Output Class Initialized
INFO - 2023-12-20 12:52:04 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:04 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:04 --> Input Class Initialized
INFO - 2023-12-20 12:52:04 --> Language Class Initialized
ERROR - 2023-12-20 12:52:04 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:52:04 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:04 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:04 --> Input Class Initialized
INFO - 2023-12-20 12:52:04 --> Language Class Initialized
ERROR - 2023-12-20 12:52:04 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:52:04 --> Config Class Initialized
INFO - 2023-12-20 12:52:04 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:04 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:04 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:04 --> URI Class Initialized
INFO - 2023-12-20 12:52:04 --> Router Class Initialized
INFO - 2023-12-20 12:52:04 --> Output Class Initialized
INFO - 2023-12-20 12:52:04 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:04 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:04 --> Input Class Initialized
INFO - 2023-12-20 12:52:04 --> Language Class Initialized
ERROR - 2023-12-20 12:52:04 --> 404 Page Not Found: Assets/lang
INFO - 2023-12-20 12:52:10 --> Config Class Initialized
INFO - 2023-12-20 12:52:10 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:10 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:10 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:10 --> URI Class Initialized
INFO - 2023-12-20 12:52:10 --> Router Class Initialized
INFO - 2023-12-20 12:52:10 --> Output Class Initialized
INFO - 2023-12-20 12:52:10 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:10 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:10 --> Input Class Initialized
INFO - 2023-12-20 12:52:10 --> Language Class Initialized
INFO - 2023-12-20 12:52:10 --> Loader Class Initialized
INFO - 2023-12-20 12:52:10 --> Helper loaded: url_helper
INFO - 2023-12-20 12:52:10 --> Helper loaded: file_helper
INFO - 2023-12-20 12:52:10 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:52:10 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:52:10 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:52:10 --> Helper loaded: form_helper
INFO - 2023-12-20 12:52:10 --> Form Validation Class Initialized
INFO - 2023-12-20 12:52:10 --> Upload Class Initialized
INFO - 2023-12-20 12:52:10 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:52:10 --> Pagination Class Initialized
INFO - 2023-12-20 12:52:10 --> Model "Get_model" initialized
INFO - 2023-12-20 12:52:10 --> Controller Class Initialized
INFO - 2023-12-20 12:52:10 --> Model "Common_model" initialized
INFO - 2023-12-20 12:52:10 --> Model "Insert_model" initialized
INFO - 2023-12-20 12:52:10 --> Model "Update_model" initialized
INFO - 2023-12-20 12:52:10 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-20 12:52:10 --> Final output sent to browser
DEBUG - 2023-12-20 12:52:10 --> Total execution time: 0.1440
INFO - 2023-12-20 12:52:10 --> Config Class Initialized
INFO - 2023-12-20 12:52:10 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:10 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:10 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:10 --> URI Class Initialized
INFO - 2023-12-20 12:52:10 --> Router Class Initialized
INFO - 2023-12-20 12:52:10 --> Output Class Initialized
INFO - 2023-12-20 12:52:10 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:10 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:10 --> Input Class Initialized
INFO - 2023-12-20 12:52:10 --> Language Class Initialized
ERROR - 2023-12-20 12:52:10 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-20 12:52:10 --> Config Class Initialized
INFO - 2023-12-20 12:52:10 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:10 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:10 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:10 --> URI Class Initialized
INFO - 2023-12-20 12:52:10 --> Router Class Initialized
INFO - 2023-12-20 12:52:10 --> Output Class Initialized
INFO - 2023-12-20 12:52:10 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:10 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:10 --> Input Class Initialized
INFO - 2023-12-20 12:52:10 --> Language Class Initialized
ERROR - 2023-12-20 12:52:10 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:52:10 --> Config Class Initialized
INFO - 2023-12-20 12:52:10 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:10 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:10 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:10 --> URI Class Initialized
INFO - 2023-12-20 12:52:10 --> Router Class Initialized
INFO - 2023-12-20 12:52:10 --> Output Class Initialized
INFO - 2023-12-20 12:52:10 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:10 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:10 --> Input Class Initialized
INFO - 2023-12-20 12:52:10 --> Language Class Initialized
ERROR - 2023-12-20 12:52:10 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:52:11 --> Config Class Initialized
INFO - 2023-12-20 12:52:11 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:52:11 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:11 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:11 --> URI Class Initialized
INFO - 2023-12-20 12:52:11 --> Router Class Initialized
INFO - 2023-12-20 12:52:11 --> Output Class Initialized
INFO - 2023-12-20 12:52:11 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:11 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:11 --> Input Class Initialized
INFO - 2023-12-20 12:52:11 --> Language Class Initialized
INFO - 2023-12-20 12:52:11 --> Config Class Initialized
INFO - 2023-12-20 12:52:11 --> Hooks Class Initialized
ERROR - 2023-12-20 12:52:11 --> 404 Page Not Found: Assets/libs
DEBUG - 2023-12-20 12:52:11 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:52:11 --> Utf8 Class Initialized
INFO - 2023-12-20 12:52:11 --> URI Class Initialized
INFO - 2023-12-20 12:52:11 --> Router Class Initialized
INFO - 2023-12-20 12:52:11 --> Output Class Initialized
INFO - 2023-12-20 12:52:11 --> Security Class Initialized
DEBUG - 2023-12-20 12:52:11 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:52:11 --> Input Class Initialized
INFO - 2023-12-20 12:52:11 --> Language Class Initialized
ERROR - 2023-12-20 12:52:11 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:57:30 --> Config Class Initialized
INFO - 2023-12-20 12:57:30 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:57:30 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:57:30 --> Utf8 Class Initialized
INFO - 2023-12-20 12:57:30 --> URI Class Initialized
INFO - 2023-12-20 12:57:30 --> Router Class Initialized
INFO - 2023-12-20 12:57:30 --> Output Class Initialized
INFO - 2023-12-20 12:57:30 --> Security Class Initialized
DEBUG - 2023-12-20 12:57:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:57:30 --> Input Class Initialized
INFO - 2023-12-20 12:57:30 --> Language Class Initialized
INFO - 2023-12-20 12:57:30 --> Loader Class Initialized
INFO - 2023-12-20 12:57:30 --> Helper loaded: url_helper
INFO - 2023-12-20 12:57:30 --> Helper loaded: file_helper
INFO - 2023-12-20 12:57:30 --> Database Driver Class Initialized
DEBUG - 2023-12-20 12:57:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 12:57:30 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 12:57:30 --> Helper loaded: form_helper
INFO - 2023-12-20 12:57:30 --> Form Validation Class Initialized
INFO - 2023-12-20 12:57:30 --> Upload Class Initialized
INFO - 2023-12-20 12:57:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 12:57:30 --> Pagination Class Initialized
INFO - 2023-12-20 12:57:30 --> Model "Get_model" initialized
INFO - 2023-12-20 12:57:30 --> Controller Class Initialized
INFO - 2023-12-20 12:57:30 --> Model "Common_model" initialized
INFO - 2023-12-20 12:57:30 --> Model "Insert_model" initialized
INFO - 2023-12-20 12:57:30 --> Model "Update_model" initialized
INFO - 2023-12-20 12:57:30 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-20 12:57:30 --> Final output sent to browser
DEBUG - 2023-12-20 12:57:30 --> Total execution time: 0.1526
INFO - 2023-12-20 12:57:30 --> Config Class Initialized
INFO - 2023-12-20 12:57:30 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:57:30 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:57:30 --> Utf8 Class Initialized
INFO - 2023-12-20 12:57:30 --> URI Class Initialized
INFO - 2023-12-20 12:57:30 --> Router Class Initialized
INFO - 2023-12-20 12:57:30 --> Output Class Initialized
INFO - 2023-12-20 12:57:30 --> Security Class Initialized
DEBUG - 2023-12-20 12:57:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:57:30 --> Input Class Initialized
INFO - 2023-12-20 12:57:30 --> Language Class Initialized
ERROR - 2023-12-20 12:57:30 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-20 12:57:30 --> Config Class Initialized
INFO - 2023-12-20 12:57:30 --> Hooks Class Initialized
INFO - 2023-12-20 12:57:30 --> Config Class Initialized
DEBUG - 2023-12-20 12:57:30 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:57:30 --> Utf8 Class Initialized
INFO - 2023-12-20 12:57:30 --> URI Class Initialized
INFO - 2023-12-20 12:57:30 --> Router Class Initialized
INFO - 2023-12-20 12:57:30 --> Output Class Initialized
INFO - 2023-12-20 12:57:30 --> Security Class Initialized
DEBUG - 2023-12-20 12:57:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:57:30 --> Input Class Initialized
INFO - 2023-12-20 12:57:30 --> Language Class Initialized
ERROR - 2023-12-20 12:57:30 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:57:30 --> Hooks Class Initialized
DEBUG - 2023-12-20 12:57:30 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:57:30 --> Utf8 Class Initialized
INFO - 2023-12-20 12:57:30 --> URI Class Initialized
INFO - 2023-12-20 12:57:31 --> Router Class Initialized
INFO - 2023-12-20 12:57:31 --> Output Class Initialized
INFO - 2023-12-20 12:57:31 --> Security Class Initialized
DEBUG - 2023-12-20 12:57:31 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:57:31 --> Input Class Initialized
INFO - 2023-12-20 12:57:31 --> Language Class Initialized
ERROR - 2023-12-20 12:57:31 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:57:31 --> Config Class Initialized
INFO - 2023-12-20 12:57:31 --> Hooks Class Initialized
INFO - 2023-12-20 12:57:31 --> Config Class Initialized
DEBUG - 2023-12-20 12:57:31 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:57:31 --> Hooks Class Initialized
INFO - 2023-12-20 12:57:31 --> Utf8 Class Initialized
INFO - 2023-12-20 12:57:31 --> URI Class Initialized
INFO - 2023-12-20 12:57:31 --> Router Class Initialized
INFO - 2023-12-20 12:57:31 --> Output Class Initialized
DEBUG - 2023-12-20 12:57:31 --> UTF-8 Support Enabled
INFO - 2023-12-20 12:57:31 --> Utf8 Class Initialized
INFO - 2023-12-20 12:57:31 --> Security Class Initialized
INFO - 2023-12-20 12:57:31 --> URI Class Initialized
DEBUG - 2023-12-20 12:57:31 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 12:57:31 --> Router Class Initialized
INFO - 2023-12-20 12:57:31 --> Input Class Initialized
INFO - 2023-12-20 12:57:31 --> Language Class Initialized
INFO - 2023-12-20 12:57:31 --> Output Class Initialized
INFO - 2023-12-20 12:57:31 --> Security Class Initialized
DEBUG - 2023-12-20 12:57:31 --> Global POST, GET and COOKIE data sanitized
ERROR - 2023-12-20 12:57:31 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 12:57:31 --> Input Class Initialized
INFO - 2023-12-20 12:57:31 --> Language Class Initialized
ERROR - 2023-12-20 12:57:31 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 13:52:13 --> Config Class Initialized
INFO - 2023-12-20 13:52:13 --> Hooks Class Initialized
DEBUG - 2023-12-20 13:52:13 --> UTF-8 Support Enabled
INFO - 2023-12-20 13:52:13 --> Utf8 Class Initialized
INFO - 2023-12-20 13:52:13 --> URI Class Initialized
INFO - 2023-12-20 13:52:13 --> Router Class Initialized
INFO - 2023-12-20 13:52:13 --> Output Class Initialized
INFO - 2023-12-20 13:52:13 --> Security Class Initialized
DEBUG - 2023-12-20 13:52:13 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 13:52:13 --> Input Class Initialized
INFO - 2023-12-20 13:52:13 --> Language Class Initialized
INFO - 2023-12-20 13:52:13 --> Loader Class Initialized
INFO - 2023-12-20 13:52:13 --> Helper loaded: url_helper
INFO - 2023-12-20 13:52:13 --> Helper loaded: file_helper
INFO - 2023-12-20 13:52:13 --> Database Driver Class Initialized
DEBUG - 2023-12-20 13:52:13 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-20 13:52:13 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-20 13:52:13 --> Helper loaded: form_helper
INFO - 2023-12-20 13:52:13 --> Form Validation Class Initialized
INFO - 2023-12-20 13:52:13 --> Upload Class Initialized
INFO - 2023-12-20 13:52:13 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-20 13:52:13 --> Pagination Class Initialized
INFO - 2023-12-20 13:52:13 --> Model "Get_model" initialized
INFO - 2023-12-20 13:52:13 --> Controller Class Initialized
INFO - 2023-12-20 13:52:13 --> Model "Common_model" initialized
INFO - 2023-12-20 13:52:13 --> Model "Insert_model" initialized
INFO - 2023-12-20 13:52:13 --> Model "Update_model" initialized
INFO - 2023-12-20 13:52:13 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-20 13:52:13 --> Final output sent to browser
DEBUG - 2023-12-20 13:52:13 --> Total execution time: 0.1582
INFO - 2023-12-20 13:52:14 --> Config Class Initialized
INFO - 2023-12-20 13:52:14 --> Hooks Class Initialized
DEBUG - 2023-12-20 13:52:14 --> UTF-8 Support Enabled
INFO - 2023-12-20 13:52:14 --> Utf8 Class Initialized
INFO - 2023-12-20 13:52:14 --> URI Class Initialized
INFO - 2023-12-20 13:52:14 --> Router Class Initialized
INFO - 2023-12-20 13:52:14 --> Output Class Initialized
INFO - 2023-12-20 13:52:14 --> Security Class Initialized
DEBUG - 2023-12-20 13:52:14 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 13:52:14 --> Input Class Initialized
INFO - 2023-12-20 13:52:14 --> Language Class Initialized
ERROR - 2023-12-20 13:52:14 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-20 13:52:14 --> Config Class Initialized
INFO - 2023-12-20 13:52:14 --> Hooks Class Initialized
DEBUG - 2023-12-20 13:52:14 --> UTF-8 Support Enabled
INFO - 2023-12-20 13:52:14 --> Utf8 Class Initialized
INFO - 2023-12-20 13:52:14 --> URI Class Initialized
INFO - 2023-12-20 13:52:14 --> Router Class Initialized
INFO - 2023-12-20 13:52:14 --> Output Class Initialized
INFO - 2023-12-20 13:52:14 --> Security Class Initialized
DEBUG - 2023-12-20 13:52:14 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 13:52:14 --> Input Class Initialized
INFO - 2023-12-20 13:52:14 --> Language Class Initialized
ERROR - 2023-12-20 13:52:14 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 13:52:14 --> Config Class Initialized
INFO - 2023-12-20 13:52:14 --> Hooks Class Initialized
DEBUG - 2023-12-20 13:52:14 --> UTF-8 Support Enabled
INFO - 2023-12-20 13:52:14 --> Utf8 Class Initialized
INFO - 2023-12-20 13:52:14 --> URI Class Initialized
INFO - 2023-12-20 13:52:14 --> Router Class Initialized
INFO - 2023-12-20 13:52:14 --> Output Class Initialized
INFO - 2023-12-20 13:52:14 --> Security Class Initialized
DEBUG - 2023-12-20 13:52:14 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 13:52:14 --> Input Class Initialized
INFO - 2023-12-20 13:52:14 --> Language Class Initialized
ERROR - 2023-12-20 13:52:14 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 13:52:14 --> Config Class Initialized
INFO - 2023-12-20 13:52:14 --> Hooks Class Initialized
DEBUG - 2023-12-20 13:52:14 --> UTF-8 Support Enabled
INFO - 2023-12-20 13:52:14 --> Utf8 Class Initialized
INFO - 2023-12-20 13:52:14 --> URI Class Initialized
INFO - 2023-12-20 13:52:14 --> Router Class Initialized
INFO - 2023-12-20 13:52:14 --> Config Class Initialized
INFO - 2023-12-20 13:52:14 --> Hooks Class Initialized
INFO - 2023-12-20 13:52:14 --> Output Class Initialized
INFO - 2023-12-20 13:52:14 --> Security Class Initialized
DEBUG - 2023-12-20 13:52:14 --> UTF-8 Support Enabled
INFO - 2023-12-20 13:52:14 --> Utf8 Class Initialized
DEBUG - 2023-12-20 13:52:14 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 13:52:14 --> Input Class Initialized
INFO - 2023-12-20 13:52:14 --> URI Class Initialized
INFO - 2023-12-20 13:52:14 --> Language Class Initialized
INFO - 2023-12-20 13:52:14 --> Router Class Initialized
ERROR - 2023-12-20 13:52:14 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-20 13:52:14 --> Output Class Initialized
INFO - 2023-12-20 13:52:14 --> Security Class Initialized
DEBUG - 2023-12-20 13:52:14 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-20 13:52:14 --> Input Class Initialized
INFO - 2023-12-20 13:52:14 --> Language Class Initialized
ERROR - 2023-12-20 13:52:14 --> 404 Page Not Found: Assets/libs

View File

@ -0,0 +1,603 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2023-12-21 05:31:12 --> Config Class Initialized
INFO - 2023-12-21 05:31:12 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:12 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:12 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:12 --> URI Class Initialized
DEBUG - 2023-12-21 05:31:12 --> No URI present. Default controller set.
INFO - 2023-12-21 05:31:12 --> Router Class Initialized
INFO - 2023-12-21 05:31:12 --> Output Class Initialized
INFO - 2023-12-21 05:31:12 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:12 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:12 --> Input Class Initialized
INFO - 2023-12-21 05:31:12 --> Language Class Initialized
INFO - 2023-12-21 05:31:12 --> Loader Class Initialized
INFO - 2023-12-21 05:31:12 --> Helper loaded: url_helper
INFO - 2023-12-21 05:31:12 --> Helper loaded: file_helper
INFO - 2023-12-21 05:31:12 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:31:12 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:31:12 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:31:12 --> Helper loaded: form_helper
INFO - 2023-12-21 05:31:12 --> Form Validation Class Initialized
INFO - 2023-12-21 05:31:12 --> Upload Class Initialized
INFO - 2023-12-21 05:31:12 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:31:12 --> Pagination Class Initialized
INFO - 2023-12-21 05:31:13 --> Model "Get_model" initialized
INFO - 2023-12-21 05:31:13 --> Controller Class Initialized
INFO - 2023-12-21 05:31:13 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2023-12-21 05:31:13 --> Final output sent to browser
DEBUG - 2023-12-21 05:31:13 --> Total execution time: 1.6371
INFO - 2023-12-21 05:31:15 --> Config Class Initialized
INFO - 2023-12-21 05:31:15 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:15 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:15 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:15 --> URI Class Initialized
INFO - 2023-12-21 05:31:16 --> Router Class Initialized
INFO - 2023-12-21 05:31:16 --> Output Class Initialized
INFO - 2023-12-21 05:31:16 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:16 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:16 --> Input Class Initialized
INFO - 2023-12-21 05:31:16 --> Language Class Initialized
INFO - 2023-12-21 05:31:16 --> Config Class Initialized
INFO - 2023-12-21 05:31:16 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:16 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:16 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:16 --> URI Class Initialized
INFO - 2023-12-21 05:31:16 --> Router Class Initialized
INFO - 2023-12-21 05:31:16 --> Output Class Initialized
INFO - 2023-12-21 05:31:16 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:16 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:16 --> Input Class Initialized
INFO - 2023-12-21 05:31:16 --> Language Class Initialized
ERROR - 2023-12-21 05:31:16 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-21 05:31:16 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:31:31 --> Config Class Initialized
INFO - 2023-12-21 05:31:31 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:31 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:31 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:31 --> URI Class Initialized
INFO - 2023-12-21 05:31:31 --> Router Class Initialized
INFO - 2023-12-21 05:31:31 --> Output Class Initialized
INFO - 2023-12-21 05:31:31 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:31 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:31 --> Input Class Initialized
INFO - 2023-12-21 05:31:31 --> Language Class Initialized
INFO - 2023-12-21 05:31:31 --> Loader Class Initialized
INFO - 2023-12-21 05:31:31 --> Helper loaded: url_helper
INFO - 2023-12-21 05:31:31 --> Helper loaded: file_helper
INFO - 2023-12-21 05:31:31 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:31:31 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:31:31 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:31:31 --> Helper loaded: form_helper
INFO - 2023-12-21 05:31:31 --> Form Validation Class Initialized
INFO - 2023-12-21 05:31:31 --> Upload Class Initialized
INFO - 2023-12-21 05:31:31 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:31:31 --> Pagination Class Initialized
INFO - 2023-12-21 05:31:31 --> Model "Get_model" initialized
INFO - 2023-12-21 05:31:31 --> Controller Class Initialized
DEBUG - 2023-12-21 05:31:31 --> Form_validation class already loaded. Second attempt ignored.
DEBUG - 2023-12-21 05:31:31 --> Session class already loaded. Second attempt ignored.
INFO - 2023-12-21 05:31:31 --> Model "Auth_model" initialized
INFO - 2023-12-21 05:31:31 --> Config Class Initialized
INFO - 2023-12-21 05:31:31 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:31 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:31 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:31 --> URI Class Initialized
INFO - 2023-12-21 05:31:31 --> Router Class Initialized
INFO - 2023-12-21 05:31:31 --> Output Class Initialized
INFO - 2023-12-21 05:31:31 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:31 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:31 --> Input Class Initialized
INFO - 2023-12-21 05:31:31 --> Language Class Initialized
INFO - 2023-12-21 05:31:31 --> Loader Class Initialized
INFO - 2023-12-21 05:31:31 --> Helper loaded: url_helper
INFO - 2023-12-21 05:31:31 --> Helper loaded: file_helper
INFO - 2023-12-21 05:31:31 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:31:31 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:31:31 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:31:31 --> Helper loaded: form_helper
INFO - 2023-12-21 05:31:31 --> Form Validation Class Initialized
INFO - 2023-12-21 05:31:31 --> Upload Class Initialized
INFO - 2023-12-21 05:31:31 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:31:31 --> Pagination Class Initialized
INFO - 2023-12-21 05:31:31 --> Model "Get_model" initialized
INFO - 2023-12-21 05:31:31 --> Controller Class Initialized
INFO - 2023-12-21 05:31:32 --> Model "Common_model" initialized
INFO - 2023-12-21 05:31:32 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:31:32 --> Model "Update_model" initialized
INFO - 2023-12-21 05:31:32 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/index.php
INFO - 2023-12-21 05:31:32 --> Final output sent to browser
DEBUG - 2023-12-21 05:31:32 --> Total execution time: 0.3907
INFO - 2023-12-21 05:31:32 --> Config Class Initialized
INFO - 2023-12-21 05:31:32 --> Hooks Class Initialized
INFO - 2023-12-21 05:31:32 --> Config Class Initialized
INFO - 2023-12-21 05:31:32 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:32 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:32 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:32 --> URI Class Initialized
DEBUG - 2023-12-21 05:31:32 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:32 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:32 --> Router Class Initialized
INFO - 2023-12-21 05:31:32 --> URI Class Initialized
INFO - 2023-12-21 05:31:32 --> Config Class Initialized
INFO - 2023-12-21 05:31:32 --> Hooks Class Initialized
INFO - 2023-12-21 05:31:32 --> Output Class Initialized
INFO - 2023-12-21 05:31:32 --> Router Class Initialized
INFO - 2023-12-21 05:31:32 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:32 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:32 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:32 --> Output Class Initialized
DEBUG - 2023-12-21 05:31:32 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:32 --> Input Class Initialized
INFO - 2023-12-21 05:31:32 --> Language Class Initialized
INFO - 2023-12-21 05:31:32 --> URI Class Initialized
INFO - 2023-12-21 05:31:32 --> Security Class Initialized
ERROR - 2023-12-21 05:31:32 --> 404 Page Not Found: Assets/libs
DEBUG - 2023-12-21 05:31:32 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:32 --> Router Class Initialized
INFO - 2023-12-21 05:31:32 --> Input Class Initialized
INFO - 2023-12-21 05:31:32 --> Language Class Initialized
INFO - 2023-12-21 05:31:32 --> Output Class Initialized
ERROR - 2023-12-21 05:31:32 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:31:32 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:32 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:32 --> Input Class Initialized
INFO - 2023-12-21 05:31:32 --> Language Class Initialized
ERROR - 2023-12-21 05:31:32 --> 404 Page Not Found: Assets/images
INFO - 2023-12-21 05:31:32 --> Config Class Initialized
INFO - 2023-12-21 05:31:32 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:32 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:32 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:32 --> URI Class Initialized
INFO - 2023-12-21 05:31:32 --> Router Class Initialized
INFO - 2023-12-21 05:31:33 --> Output Class Initialized
INFO - 2023-12-21 05:31:33 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:33 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:33 --> Input Class Initialized
INFO - 2023-12-21 05:31:33 --> Language Class Initialized
ERROR - 2023-12-21 05:31:33 --> 404 Page Not Found: Assets/lang
INFO - 2023-12-21 05:31:33 --> Config Class Initialized
INFO - 2023-12-21 05:31:33 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:33 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:33 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:33 --> URI Class Initialized
INFO - 2023-12-21 05:31:33 --> Router Class Initialized
INFO - 2023-12-21 05:31:33 --> Output Class Initialized
INFO - 2023-12-21 05:31:33 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:33 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:33 --> Input Class Initialized
INFO - 2023-12-21 05:31:33 --> Language Class Initialized
ERROR - 2023-12-21 05:31:33 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-21 05:31:34 --> Config Class Initialized
INFO - 2023-12-21 05:31:34 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:34 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:34 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:34 --> URI Class Initialized
INFO - 2023-12-21 05:31:34 --> Router Class Initialized
INFO - 2023-12-21 05:31:34 --> Output Class Initialized
INFO - 2023-12-21 05:31:34 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:34 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:34 --> Input Class Initialized
INFO - 2023-12-21 05:31:35 --> Language Class Initialized
INFO - 2023-12-21 05:31:35 --> Loader Class Initialized
INFO - 2023-12-21 05:31:35 --> Helper loaded: url_helper
INFO - 2023-12-21 05:31:35 --> Helper loaded: file_helper
INFO - 2023-12-21 05:31:35 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:31:35 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:31:35 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:31:35 --> Helper loaded: form_helper
INFO - 2023-12-21 05:31:35 --> Form Validation Class Initialized
INFO - 2023-12-21 05:31:35 --> Upload Class Initialized
INFO - 2023-12-21 05:31:35 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:31:35 --> Pagination Class Initialized
INFO - 2023-12-21 05:31:35 --> Model "Get_model" initialized
INFO - 2023-12-21 05:31:35 --> Controller Class Initialized
INFO - 2023-12-21 05:31:35 --> Model "Common_model" initialized
INFO - 2023-12-21 05:31:35 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:31:35 --> Model "Update_model" initialized
INFO - 2023-12-21 05:31:35 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-21 05:31:35 --> Final output sent to browser
DEBUG - 2023-12-21 05:31:35 --> Total execution time: 0.1725
INFO - 2023-12-21 05:31:35 --> Config Class Initialized
INFO - 2023-12-21 05:31:35 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:35 --> Config Class Initialized
INFO - 2023-12-21 05:31:35 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:35 --> Hooks Class Initialized
INFO - 2023-12-21 05:31:35 --> Config Class Initialized
INFO - 2023-12-21 05:31:35 --> URI Class Initialized
INFO - 2023-12-21 05:31:35 --> Router Class Initialized
INFO - 2023-12-21 05:31:35 --> Hooks Class Initialized
INFO - 2023-12-21 05:31:35 --> Output Class Initialized
DEBUG - 2023-12-21 05:31:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:35 --> Utf8 Class Initialized
DEBUG - 2023-12-21 05:31:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:35 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:35 --> Security Class Initialized
INFO - 2023-12-21 05:31:35 --> URI Class Initialized
INFO - 2023-12-21 05:31:35 --> URI Class Initialized
DEBUG - 2023-12-21 05:31:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:35 --> Input Class Initialized
INFO - 2023-12-21 05:31:35 --> Router Class Initialized
INFO - 2023-12-21 05:31:35 --> Language Class Initialized
INFO - 2023-12-21 05:31:35 --> Router Class Initialized
INFO - 2023-12-21 05:31:35 --> Output Class Initialized
ERROR - 2023-12-21 05:31:35 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-21 05:31:35 --> Output Class Initialized
INFO - 2023-12-21 05:31:35 --> Security Class Initialized
INFO - 2023-12-21 05:31:35 --> Security Class Initialized
DEBUG - 2023-12-21 05:31:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:35 --> Input Class Initialized
DEBUG - 2023-12-21 05:31:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:35 --> Language Class Initialized
INFO - 2023-12-21 05:31:35 --> Input Class Initialized
ERROR - 2023-12-21 05:31:35 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:31:35 --> Language Class Initialized
ERROR - 2023-12-21 05:31:35 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:31:35 --> Config Class Initialized
INFO - 2023-12-21 05:31:35 --> Hooks Class Initialized
INFO - 2023-12-21 05:31:35 --> Config Class Initialized
INFO - 2023-12-21 05:31:35 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:31:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:35 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:35 --> URI Class Initialized
DEBUG - 2023-12-21 05:31:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:31:35 --> Utf8 Class Initialized
INFO - 2023-12-21 05:31:35 --> Router Class Initialized
INFO - 2023-12-21 05:31:35 --> URI Class Initialized
INFO - 2023-12-21 05:31:35 --> Output Class Initialized
INFO - 2023-12-21 05:31:35 --> Security Class Initialized
INFO - 2023-12-21 05:31:35 --> Router Class Initialized
DEBUG - 2023-12-21 05:31:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:35 --> Input Class Initialized
INFO - 2023-12-21 05:31:35 --> Output Class Initialized
INFO - 2023-12-21 05:31:35 --> Language Class Initialized
INFO - 2023-12-21 05:31:35 --> Security Class Initialized
ERROR - 2023-12-21 05:31:35 --> 404 Page Not Found: Assets/libs
DEBUG - 2023-12-21 05:31:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:31:35 --> Input Class Initialized
INFO - 2023-12-21 05:31:35 --> Language Class Initialized
ERROR - 2023-12-21 05:31:35 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:32:01 --> Config Class Initialized
INFO - 2023-12-21 05:32:01 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:01 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:01 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:01 --> URI Class Initialized
INFO - 2023-12-21 05:32:01 --> Router Class Initialized
INFO - 2023-12-21 05:32:01 --> Output Class Initialized
INFO - 2023-12-21 05:32:01 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:01 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:01 --> Input Class Initialized
INFO - 2023-12-21 05:32:01 --> Language Class Initialized
INFO - 2023-12-21 05:32:01 --> Loader Class Initialized
INFO - 2023-12-21 05:32:01 --> Helper loaded: url_helper
INFO - 2023-12-21 05:32:01 --> Helper loaded: file_helper
INFO - 2023-12-21 05:32:01 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:32:01 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:32:01 --> Config Class Initialized
INFO - 2023-12-21 05:32:01 --> Hooks Class Initialized
INFO - 2023-12-21 05:32:01 --> Session: Class initialized using 'files' driver.
DEBUG - 2023-12-21 05:32:01 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:01 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:01 --> Helper loaded: form_helper
INFO - 2023-12-21 05:32:01 --> Form Validation Class Initialized
INFO - 2023-12-21 05:32:01 --> URI Class Initialized
INFO - 2023-12-21 05:32:01 --> Upload Class Initialized
INFO - 2023-12-21 05:32:01 --> Router Class Initialized
INFO - 2023-12-21 05:32:01 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:32:01 --> Pagination Class Initialized
INFO - 2023-12-21 05:32:01 --> Output Class Initialized
INFO - 2023-12-21 05:32:01 --> Model "Get_model" initialized
INFO - 2023-12-21 05:32:01 --> Controller Class Initialized
INFO - 2023-12-21 05:32:01 --> Security Class Initialized
INFO - 2023-12-21 05:32:01 --> Model "Common_model" initialized
INFO - 2023-12-21 05:32:01 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:32:01 --> Model "Update_model" initialized
DEBUG - 2023-12-21 05:32:01 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:01 --> Input Class Initialized
INFO - 2023-12-21 05:32:01 --> Language Class Initialized
INFO - 2023-12-21 05:32:01 --> Loader Class Initialized
INFO - 2023-12-21 05:32:01 --> Helper loaded: url_helper
INFO - 2023-12-21 05:32:01 --> Helper loaded: file_helper
INFO - 2023-12-21 05:32:01 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:32:01 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:32:02 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:32:02 --> Helper loaded: form_helper
INFO - 2023-12-21 05:32:02 --> Form Validation Class Initialized
INFO - 2023-12-21 05:32:02 --> Upload Class Initialized
INFO - 2023-12-21 05:32:02 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:32:02 --> Pagination Class Initialized
INFO - 2023-12-21 05:32:02 --> Model "Get_model" initialized
INFO - 2023-12-21 05:32:02 --> Controller Class Initialized
INFO - 2023-12-21 05:32:02 --> Model "Common_model" initialized
INFO - 2023-12-21 05:32:02 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:32:02 --> Model "Update_model" initialized
INFO - 2023-12-21 05:32:02 --> Config Class Initialized
INFO - 2023-12-21 05:32:02 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:02 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:02 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:02 --> URI Class Initialized
INFO - 2023-12-21 05:32:02 --> Router Class Initialized
INFO - 2023-12-21 05:32:02 --> Output Class Initialized
INFO - 2023-12-21 05:32:02 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:02 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:02 --> Input Class Initialized
INFO - 2023-12-21 05:32:02 --> Language Class Initialized
INFO - 2023-12-21 05:32:02 --> Loader Class Initialized
INFO - 2023-12-21 05:32:02 --> Helper loaded: url_helper
INFO - 2023-12-21 05:32:02 --> Helper loaded: file_helper
INFO - 2023-12-21 05:32:02 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:32:02 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:32:02 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:32:02 --> Helper loaded: form_helper
INFO - 2023-12-21 05:32:02 --> Form Validation Class Initialized
INFO - 2023-12-21 05:32:02 --> Upload Class Initialized
INFO - 2023-12-21 05:32:02 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:32:02 --> Pagination Class Initialized
INFO - 2023-12-21 05:32:02 --> Model "Get_model" initialized
INFO - 2023-12-21 05:32:02 --> Controller Class Initialized
INFO - 2023-12-21 05:32:02 --> Model "Common_model" initialized
INFO - 2023-12-21 05:32:02 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:32:02 --> Model "Update_model" initialized
INFO - 2023-12-21 05:32:02 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-21 05:32:02 --> Final output sent to browser
DEBUG - 2023-12-21 05:32:02 --> Total execution time: 0.0973
INFO - 2023-12-21 05:32:03 --> Config Class Initialized
INFO - 2023-12-21 05:32:03 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:03 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:03 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:03 --> URI Class Initialized
INFO - 2023-12-21 05:32:03 --> Router Class Initialized
INFO - 2023-12-21 05:32:03 --> Output Class Initialized
INFO - 2023-12-21 05:32:03 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:03 --> Input Class Initialized
INFO - 2023-12-21 05:32:03 --> Language Class Initialized
ERROR - 2023-12-21 05:32:03 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-21 05:32:03 --> Config Class Initialized
INFO - 2023-12-21 05:32:03 --> Hooks Class Initialized
INFO - 2023-12-21 05:32:03 --> Config Class Initialized
INFO - 2023-12-21 05:32:03 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:03 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:03 --> Utf8 Class Initialized
DEBUG - 2023-12-21 05:32:03 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:03 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:03 --> URI Class Initialized
INFO - 2023-12-21 05:32:03 --> URI Class Initialized
INFO - 2023-12-21 05:32:03 --> Router Class Initialized
INFO - 2023-12-21 05:32:03 --> Router Class Initialized
INFO - 2023-12-21 05:32:03 --> Output Class Initialized
INFO - 2023-12-21 05:32:03 --> Output Class Initialized
INFO - 2023-12-21 05:32:03 --> Security Class Initialized
INFO - 2023-12-21 05:32:03 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:03 --> Input Class Initialized
DEBUG - 2023-12-21 05:32:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:03 --> Input Class Initialized
INFO - 2023-12-21 05:32:03 --> Language Class Initialized
INFO - 2023-12-21 05:32:03 --> Language Class Initialized
ERROR - 2023-12-21 05:32:03 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-21 05:32:03 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:32:03 --> Config Class Initialized
INFO - 2023-12-21 05:32:03 --> Hooks Class Initialized
INFO - 2023-12-21 05:32:03 --> Config Class Initialized
INFO - 2023-12-21 05:32:03 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:03 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:03 --> Utf8 Class Initialized
DEBUG - 2023-12-21 05:32:03 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:03 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:03 --> URI Class Initialized
INFO - 2023-12-21 05:32:03 --> URI Class Initialized
INFO - 2023-12-21 05:32:03 --> Router Class Initialized
INFO - 2023-12-21 05:32:03 --> Router Class Initialized
INFO - 2023-12-21 05:32:03 --> Output Class Initialized
INFO - 2023-12-21 05:32:03 --> Output Class Initialized
INFO - 2023-12-21 05:32:03 --> Security Class Initialized
INFO - 2023-12-21 05:32:03 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:03 --> Input Class Initialized
DEBUG - 2023-12-21 05:32:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:03 --> Input Class Initialized
INFO - 2023-12-21 05:32:03 --> Language Class Initialized
INFO - 2023-12-21 05:32:03 --> Language Class Initialized
ERROR - 2023-12-21 05:32:03 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-21 05:32:03 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:32:28 --> Config Class Initialized
INFO - 2023-12-21 05:32:28 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:28 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:28 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:28 --> URI Class Initialized
INFO - 2023-12-21 05:32:28 --> Router Class Initialized
INFO - 2023-12-21 05:32:28 --> Output Class Initialized
INFO - 2023-12-21 05:32:28 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:28 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:28 --> Input Class Initialized
INFO - 2023-12-21 05:32:28 --> Language Class Initialized
INFO - 2023-12-21 05:32:28 --> Loader Class Initialized
INFO - 2023-12-21 05:32:28 --> Helper loaded: url_helper
INFO - 2023-12-21 05:32:28 --> Helper loaded: file_helper
INFO - 2023-12-21 05:32:28 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:32:28 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:32:28 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:32:28 --> Helper loaded: form_helper
INFO - 2023-12-21 05:32:28 --> Form Validation Class Initialized
INFO - 2023-12-21 05:32:28 --> Upload Class Initialized
INFO - 2023-12-21 05:32:28 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:32:28 --> Pagination Class Initialized
INFO - 2023-12-21 05:32:28 --> Model "Get_model" initialized
INFO - 2023-12-21 05:32:28 --> Controller Class Initialized
INFO - 2023-12-21 05:32:28 --> Model "Common_model" initialized
INFO - 2023-12-21 05:32:28 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:32:28 --> Model "Update_model" initialized
INFO - 2023-12-21 05:32:29 --> Config Class Initialized
INFO - 2023-12-21 05:32:29 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:29 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:29 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:29 --> URI Class Initialized
INFO - 2023-12-21 05:32:29 --> Router Class Initialized
INFO - 2023-12-21 05:32:29 --> Output Class Initialized
INFO - 2023-12-21 05:32:29 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:29 --> Input Class Initialized
INFO - 2023-12-21 05:32:29 --> Language Class Initialized
INFO - 2023-12-21 05:32:29 --> Loader Class Initialized
INFO - 2023-12-21 05:32:29 --> Helper loaded: url_helper
INFO - 2023-12-21 05:32:29 --> Helper loaded: file_helper
INFO - 2023-12-21 05:32:29 --> Database Driver Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 05:32:29 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 05:32:29 --> Helper loaded: form_helper
INFO - 2023-12-21 05:32:29 --> Form Validation Class Initialized
INFO - 2023-12-21 05:32:29 --> Upload Class Initialized
INFO - 2023-12-21 05:32:29 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 05:32:29 --> Pagination Class Initialized
INFO - 2023-12-21 05:32:29 --> Model "Get_model" initialized
INFO - 2023-12-21 05:32:29 --> Controller Class Initialized
INFO - 2023-12-21 05:32:29 --> Model "Common_model" initialized
INFO - 2023-12-21 05:32:29 --> Model "Insert_model" initialized
INFO - 2023-12-21 05:32:29 --> Model "Update_model" initialized
INFO - 2023-12-21 05:32:29 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-21 05:32:29 --> Final output sent to browser
DEBUG - 2023-12-21 05:32:29 --> Total execution time: 0.1331
INFO - 2023-12-21 05:32:29 --> Config Class Initialized
INFO - 2023-12-21 05:32:29 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:29 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:29 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:29 --> URI Class Initialized
INFO - 2023-12-21 05:32:29 --> Router Class Initialized
INFO - 2023-12-21 05:32:29 --> Output Class Initialized
INFO - 2023-12-21 05:32:29 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:29 --> Input Class Initialized
INFO - 2023-12-21 05:32:29 --> Language Class Initialized
ERROR - 2023-12-21 05:32:29 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-21 05:32:29 --> Config Class Initialized
INFO - 2023-12-21 05:32:29 --> Hooks Class Initialized
INFO - 2023-12-21 05:32:29 --> Config Class Initialized
INFO - 2023-12-21 05:32:29 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:29 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:29 --> Utf8 Class Initialized
DEBUG - 2023-12-21 05:32:29 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:29 --> URI Class Initialized
INFO - 2023-12-21 05:32:29 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:29 --> URI Class Initialized
INFO - 2023-12-21 05:32:29 --> Router Class Initialized
INFO - 2023-12-21 05:32:29 --> Router Class Initialized
INFO - 2023-12-21 05:32:29 --> Output Class Initialized
INFO - 2023-12-21 05:32:29 --> Output Class Initialized
INFO - 2023-12-21 05:32:29 --> Security Class Initialized
INFO - 2023-12-21 05:32:29 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:29 --> Input Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:29 --> Input Class Initialized
INFO - 2023-12-21 05:32:29 --> Language Class Initialized
INFO - 2023-12-21 05:32:29 --> Language Class Initialized
ERROR - 2023-12-21 05:32:29 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-21 05:32:29 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 05:32:29 --> Config Class Initialized
INFO - 2023-12-21 05:32:29 --> Hooks Class Initialized
INFO - 2023-12-21 05:32:29 --> Config Class Initialized
INFO - 2023-12-21 05:32:29 --> Hooks Class Initialized
DEBUG - 2023-12-21 05:32:29 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:29 --> Utf8 Class Initialized
DEBUG - 2023-12-21 05:32:29 --> UTF-8 Support Enabled
INFO - 2023-12-21 05:32:29 --> Utf8 Class Initialized
INFO - 2023-12-21 05:32:29 --> URI Class Initialized
INFO - 2023-12-21 05:32:29 --> URI Class Initialized
INFO - 2023-12-21 05:32:29 --> Router Class Initialized
INFO - 2023-12-21 05:32:29 --> Router Class Initialized
INFO - 2023-12-21 05:32:29 --> Output Class Initialized
INFO - 2023-12-21 05:32:29 --> Output Class Initialized
INFO - 2023-12-21 05:32:29 --> Security Class Initialized
INFO - 2023-12-21 05:32:29 --> Security Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:29 --> Input Class Initialized
DEBUG - 2023-12-21 05:32:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 05:32:29 --> Language Class Initialized
INFO - 2023-12-21 05:32:29 --> Input Class Initialized
INFO - 2023-12-21 05:32:29 --> Language Class Initialized
ERROR - 2023-12-21 05:32:29 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-21 05:32:29 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-21 06:17:35 --> Config Class Initialized
INFO - 2023-12-21 06:17:35 --> Hooks Class Initialized
DEBUG - 2023-12-21 06:17:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 06:17:35 --> Utf8 Class Initialized
INFO - 2023-12-21 06:17:35 --> URI Class Initialized
INFO - 2023-12-21 06:17:35 --> Router Class Initialized
INFO - 2023-12-21 06:17:35 --> Output Class Initialized
INFO - 2023-12-21 06:17:35 --> Security Class Initialized
DEBUG - 2023-12-21 06:17:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 06:17:35 --> Input Class Initialized
INFO - 2023-12-21 06:17:35 --> Language Class Initialized
INFO - 2023-12-21 06:17:35 --> Loader Class Initialized
INFO - 2023-12-21 06:17:35 --> Helper loaded: url_helper
INFO - 2023-12-21 06:17:35 --> Helper loaded: file_helper
INFO - 2023-12-21 06:17:35 --> Database Driver Class Initialized
DEBUG - 2023-12-21 06:17:35 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 06:17:35 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 06:17:35 --> Helper loaded: form_helper
INFO - 2023-12-21 06:17:35 --> Form Validation Class Initialized
INFO - 2023-12-21 06:17:35 --> Upload Class Initialized
INFO - 2023-12-21 06:17:35 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 06:17:35 --> Pagination Class Initialized
INFO - 2023-12-21 06:17:35 --> Model "Get_model" initialized
INFO - 2023-12-21 06:17:35 --> Controller Class Initialized
INFO - 2023-12-21 06:17:35 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-21 06:17:35 --> Final output sent to browser
DEBUG - 2023-12-21 06:17:35 --> Total execution time: 0.0947
INFO - 2023-12-21 06:17:35 --> Config Class Initialized
INFO - 2023-12-21 06:17:35 --> Hooks Class Initialized
DEBUG - 2023-12-21 06:17:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 06:17:35 --> Utf8 Class Initialized
INFO - 2023-12-21 06:17:35 --> URI Class Initialized
INFO - 2023-12-21 06:17:35 --> Router Class Initialized
INFO - 2023-12-21 06:17:35 --> Output Class Initialized
INFO - 2023-12-21 06:17:35 --> Security Class Initialized
DEBUG - 2023-12-21 06:17:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 06:17:35 --> Input Class Initialized
INFO - 2023-12-21 06:17:35 --> Language Class Initialized
INFO - 2023-12-21 06:17:35 --> Loader Class Initialized
INFO - 2023-12-21 06:17:35 --> Helper loaded: url_helper
INFO - 2023-12-21 06:17:35 --> Helper loaded: file_helper
INFO - 2023-12-21 06:17:35 --> Database Driver Class Initialized
DEBUG - 2023-12-21 06:17:35 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 06:17:35 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 06:17:35 --> Helper loaded: form_helper
INFO - 2023-12-21 06:17:35 --> Form Validation Class Initialized
INFO - 2023-12-21 06:17:35 --> Upload Class Initialized
INFO - 2023-12-21 06:17:35 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 06:17:35 --> Pagination Class Initialized
INFO - 2023-12-21 06:17:35 --> Model "Get_model" initialized
INFO - 2023-12-21 06:17:35 --> Controller Class Initialized
INFO - 2023-12-21 06:17:35 --> Config Class Initialized
INFO - 2023-12-21 06:17:35 --> Hooks Class Initialized
DEBUG - 2023-12-21 06:17:35 --> UTF-8 Support Enabled
INFO - 2023-12-21 06:17:35 --> Utf8 Class Initialized
INFO - 2023-12-21 06:17:35 --> URI Class Initialized
INFO - 2023-12-21 06:17:35 --> Router Class Initialized
INFO - 2023-12-21 06:17:35 --> Output Class Initialized
INFO - 2023-12-21 06:17:35 --> Security Class Initialized
DEBUG - 2023-12-21 06:17:35 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-21 06:17:35 --> Input Class Initialized
INFO - 2023-12-21 06:17:35 --> Language Class Initialized
INFO - 2023-12-21 06:17:35 --> Loader Class Initialized
INFO - 2023-12-21 06:17:35 --> Helper loaded: url_helper
INFO - 2023-12-21 06:17:35 --> Helper loaded: file_helper
INFO - 2023-12-21 06:17:35 --> Database Driver Class Initialized
DEBUG - 2023-12-21 06:17:35 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-21 06:17:35 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-21 06:17:35 --> Helper loaded: form_helper
INFO - 2023-12-21 06:17:35 --> Form Validation Class Initialized
INFO - 2023-12-21 06:17:35 --> Upload Class Initialized
INFO - 2023-12-21 06:17:35 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-21 06:17:35 --> Pagination Class Initialized
INFO - 2023-12-21 06:17:35 --> Model "Get_model" initialized
INFO - 2023-12-21 06:17:35 --> Controller Class Initialized
INFO - 2023-12-21 06:17:35 --> Model "Api_model" initialized
DEBUG - 2023-12-21 06:17:35 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-21 06:17:35 --> Final output sent to browser
DEBUG - 2023-12-21 06:17:35 --> Total execution time: 0.0645
INFO - 2023-12-21 06:17:35 --> Final output sent to browser
DEBUG - 2023-12-21 06:17:35 --> Total execution time: 0.1708

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,462 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2023-12-28 06:01:23 --> Config Class Initialized
INFO - 2023-12-28 06:01:23 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:01:23 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:01:23 --> Utf8 Class Initialized
INFO - 2023-12-28 06:01:23 --> URI Class Initialized
INFO - 2023-12-28 06:01:23 --> Router Class Initialized
INFO - 2023-12-28 06:01:23 --> Output Class Initialized
INFO - 2023-12-28 06:01:23 --> Security Class Initialized
DEBUG - 2023-12-28 06:01:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:01:23 --> Input Class Initialized
INFO - 2023-12-28 06:01:23 --> Language Class Initialized
INFO - 2023-12-28 06:01:24 --> Loader Class Initialized
INFO - 2023-12-28 06:01:24 --> Helper loaded: url_helper
INFO - 2023-12-28 06:01:24 --> Helper loaded: file_helper
INFO - 2023-12-28 06:01:24 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:01:24 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:01:24 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:01:24 --> Helper loaded: form_helper
INFO - 2023-12-28 06:01:24 --> Form Validation Class Initialized
INFO - 2023-12-28 06:01:24 --> Upload Class Initialized
INFO - 2023-12-28 06:01:24 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:01:24 --> Pagination Class Initialized
INFO - 2023-12-28 06:01:24 --> Model "Get_model" initialized
INFO - 2023-12-28 06:01:24 --> Controller Class Initialized
INFO - 2023-12-28 06:01:25 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\api_view.php
INFO - 2023-12-28 06:01:25 --> Final output sent to browser
DEBUG - 2023-12-28 06:01:25 --> Total execution time: 1.5935
INFO - 2023-12-28 06:01:25 --> Config Class Initialized
INFO - 2023-12-28 06:01:25 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:01:25 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:01:25 --> Utf8 Class Initialized
INFO - 2023-12-28 06:01:25 --> URI Class Initialized
INFO - 2023-12-28 06:01:25 --> Router Class Initialized
INFO - 2023-12-28 06:01:25 --> Output Class Initialized
INFO - 2023-12-28 06:01:25 --> Security Class Initialized
DEBUG - 2023-12-28 06:01:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:01:25 --> Input Class Initialized
INFO - 2023-12-28 06:01:25 --> Language Class Initialized
INFO - 2023-12-28 06:01:25 --> Loader Class Initialized
INFO - 2023-12-28 06:01:25 --> Helper loaded: url_helper
INFO - 2023-12-28 06:01:25 --> Helper loaded: file_helper
INFO - 2023-12-28 06:01:25 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:01:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:01:25 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:01:25 --> Helper loaded: form_helper
INFO - 2023-12-28 06:01:25 --> Form Validation Class Initialized
INFO - 2023-12-28 06:01:25 --> Upload Class Initialized
INFO - 2023-12-28 06:01:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:01:25 --> Pagination Class Initialized
INFO - 2023-12-28 06:01:25 --> Model "Get_model" initialized
INFO - 2023-12-28 06:01:25 --> Controller Class Initialized
INFO - 2023-12-28 06:01:25 --> Config Class Initialized
INFO - 2023-12-28 06:01:25 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:01:25 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:01:25 --> Utf8 Class Initialized
INFO - 2023-12-28 06:01:25 --> URI Class Initialized
INFO - 2023-12-28 06:01:25 --> Router Class Initialized
INFO - 2023-12-28 06:01:25 --> Output Class Initialized
INFO - 2023-12-28 06:01:25 --> Security Class Initialized
DEBUG - 2023-12-28 06:01:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:01:25 --> Input Class Initialized
INFO - 2023-12-28 06:01:25 --> Language Class Initialized
INFO - 2023-12-28 06:01:25 --> Loader Class Initialized
INFO - 2023-12-28 06:01:25 --> Helper loaded: url_helper
INFO - 2023-12-28 06:01:25 --> Helper loaded: file_helper
INFO - 2023-12-28 06:01:25 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:01:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:01:25 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:01:25 --> Helper loaded: form_helper
INFO - 2023-12-28 06:01:25 --> Form Validation Class Initialized
INFO - 2023-12-28 06:01:25 --> Upload Class Initialized
INFO - 2023-12-28 06:01:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:01:25 --> Pagination Class Initialized
INFO - 2023-12-28 06:01:25 --> Model "Get_model" initialized
INFO - 2023-12-28 06:01:25 --> Controller Class Initialized
INFO - 2023-12-28 06:01:25 --> Model "Api_model" initialized
DEBUG - 2023-12-28 06:01:25 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-28 06:01:25 --> Final output sent to browser
DEBUG - 2023-12-28 06:01:25 --> Total execution time: 0.3191
INFO - 2023-12-28 06:01:25 --> Final output sent to browser
DEBUG - 2023-12-28 06:01:25 --> Total execution time: 0.5248
INFO - 2023-12-28 06:01:28 --> Config Class Initialized
INFO - 2023-12-28 06:01:28 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:01:28 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:01:28 --> Utf8 Class Initialized
INFO - 2023-12-28 06:01:28 --> URI Class Initialized
INFO - 2023-12-28 06:01:28 --> Router Class Initialized
INFO - 2023-12-28 06:01:28 --> Output Class Initialized
INFO - 2023-12-28 06:01:28 --> Security Class Initialized
DEBUG - 2023-12-28 06:01:28 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:01:28 --> Input Class Initialized
INFO - 2023-12-28 06:01:28 --> Language Class Initialized
INFO - 2023-12-28 06:01:28 --> Loader Class Initialized
INFO - 2023-12-28 06:01:28 --> Helper loaded: url_helper
INFO - 2023-12-28 06:01:28 --> Helper loaded: file_helper
INFO - 2023-12-28 06:01:28 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:01:28 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:01:28 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:01:28 --> Helper loaded: form_helper
INFO - 2023-12-28 06:01:28 --> Form Validation Class Initialized
INFO - 2023-12-28 06:01:28 --> Upload Class Initialized
INFO - 2023-12-28 06:01:28 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:01:28 --> Pagination Class Initialized
INFO - 2023-12-28 06:01:28 --> Model "Get_model" initialized
INFO - 2023-12-28 06:01:28 --> Controller Class Initialized
INFO - 2023-12-28 06:01:28 --> Config Class Initialized
INFO - 2023-12-28 06:01:28 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:01:28 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:01:28 --> Utf8 Class Initialized
INFO - 2023-12-28 06:01:28 --> URI Class Initialized
INFO - 2023-12-28 06:01:28 --> Router Class Initialized
INFO - 2023-12-28 06:01:28 --> Output Class Initialized
INFO - 2023-12-28 06:01:28 --> Security Class Initialized
DEBUG - 2023-12-28 06:01:28 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:01:28 --> Input Class Initialized
INFO - 2023-12-28 06:01:28 --> Language Class Initialized
INFO - 2023-12-28 06:01:28 --> Loader Class Initialized
INFO - 2023-12-28 06:01:28 --> Helper loaded: url_helper
INFO - 2023-12-28 06:01:28 --> Helper loaded: file_helper
INFO - 2023-12-28 06:01:28 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:01:28 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:01:28 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:01:28 --> Helper loaded: form_helper
INFO - 2023-12-28 06:01:28 --> Form Validation Class Initialized
INFO - 2023-12-28 06:01:28 --> Upload Class Initialized
INFO - 2023-12-28 06:01:28 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:01:28 --> Pagination Class Initialized
INFO - 2023-12-28 06:01:28 --> Model "Get_model" initialized
INFO - 2023-12-28 06:01:28 --> Controller Class Initialized
INFO - 2023-12-28 06:01:28 --> Model "Api_model" initialized
DEBUG - 2023-12-28 06:01:28 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2023-12-28 06:01:28 --> Final output sent to browser
DEBUG - 2023-12-28 06:01:28 --> Total execution time: 0.0737
INFO - 2023-12-28 06:01:28 --> Final output sent to browser
DEBUG - 2023-12-28 06:01:28 --> Total execution time: 0.1584
INFO - 2023-12-28 06:03:14 --> Config Class Initialized
INFO - 2023-12-28 06:03:14 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:14 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:14 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:14 --> URI Class Initialized
DEBUG - 2023-12-28 06:03:14 --> No URI present. Default controller set.
INFO - 2023-12-28 06:03:14 --> Router Class Initialized
INFO - 2023-12-28 06:03:14 --> Output Class Initialized
INFO - 2023-12-28 06:03:14 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:14 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:14 --> Input Class Initialized
INFO - 2023-12-28 06:03:14 --> Language Class Initialized
INFO - 2023-12-28 06:03:14 --> Loader Class Initialized
INFO - 2023-12-28 06:03:14 --> Helper loaded: url_helper
INFO - 2023-12-28 06:03:14 --> Helper loaded: file_helper
INFO - 2023-12-28 06:03:14 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:03:14 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:03:14 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:03:14 --> Helper loaded: form_helper
INFO - 2023-12-28 06:03:14 --> Form Validation Class Initialized
INFO - 2023-12-28 06:03:14 --> Upload Class Initialized
INFO - 2023-12-28 06:03:14 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:03:14 --> Pagination Class Initialized
INFO - 2023-12-28 06:03:14 --> Model "Get_model" initialized
INFO - 2023-12-28 06:03:14 --> Controller Class Initialized
INFO - 2023-12-28 06:03:15 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2023-12-28 06:03:15 --> Final output sent to browser
DEBUG - 2023-12-28 06:03:15 --> Total execution time: 0.7213
INFO - 2023-12-28 06:03:16 --> Config Class Initialized
INFO - 2023-12-28 06:03:16 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:16 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:16 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:16 --> Config Class Initialized
INFO - 2023-12-28 06:03:16 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:16 --> URI Class Initialized
INFO - 2023-12-28 06:03:16 --> Router Class Initialized
DEBUG - 2023-12-28 06:03:16 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:16 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:16 --> Output Class Initialized
INFO - 2023-12-28 06:03:16 --> URI Class Initialized
INFO - 2023-12-28 06:03:16 --> Security Class Initialized
INFO - 2023-12-28 06:03:16 --> Router Class Initialized
DEBUG - 2023-12-28 06:03:16 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:16 --> Input Class Initialized
INFO - 2023-12-28 06:03:16 --> Output Class Initialized
INFO - 2023-12-28 06:03:16 --> Language Class Initialized
INFO - 2023-12-28 06:03:16 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:16 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:16 --> Input Class Initialized
INFO - 2023-12-28 06:03:16 --> Language Class Initialized
ERROR - 2023-12-28 06:03:16 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-28 06:03:16 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-28 06:03:21 --> Config Class Initialized
INFO - 2023-12-28 06:03:21 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:21 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:21 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:21 --> URI Class Initialized
INFO - 2023-12-28 06:03:21 --> Router Class Initialized
INFO - 2023-12-28 06:03:21 --> Output Class Initialized
INFO - 2023-12-28 06:03:21 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:21 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:21 --> Input Class Initialized
INFO - 2023-12-28 06:03:21 --> Language Class Initialized
INFO - 2023-12-28 06:03:21 --> Loader Class Initialized
INFO - 2023-12-28 06:03:21 --> Helper loaded: url_helper
INFO - 2023-12-28 06:03:21 --> Helper loaded: file_helper
INFO - 2023-12-28 06:03:21 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:03:21 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:03:21 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:03:21 --> Helper loaded: form_helper
INFO - 2023-12-28 06:03:21 --> Form Validation Class Initialized
INFO - 2023-12-28 06:03:21 --> Upload Class Initialized
INFO - 2023-12-28 06:03:21 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:03:21 --> Pagination Class Initialized
INFO - 2023-12-28 06:03:21 --> Model "Get_model" initialized
INFO - 2023-12-28 06:03:21 --> Controller Class Initialized
DEBUG - 2023-12-28 06:03:21 --> Form_validation class already loaded. Second attempt ignored.
DEBUG - 2023-12-28 06:03:21 --> Session class already loaded. Second attempt ignored.
INFO - 2023-12-28 06:03:22 --> Model "Auth_model" initialized
INFO - 2023-12-28 06:03:22 --> Config Class Initialized
INFO - 2023-12-28 06:03:22 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:22 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:22 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:22 --> URI Class Initialized
INFO - 2023-12-28 06:03:22 --> Router Class Initialized
INFO - 2023-12-28 06:03:22 --> Output Class Initialized
INFO - 2023-12-28 06:03:22 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:22 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:22 --> Input Class Initialized
INFO - 2023-12-28 06:03:22 --> Language Class Initialized
INFO - 2023-12-28 06:03:22 --> Loader Class Initialized
INFO - 2023-12-28 06:03:22 --> Helper loaded: url_helper
INFO - 2023-12-28 06:03:22 --> Helper loaded: file_helper
INFO - 2023-12-28 06:03:22 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:03:22 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:03:22 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:03:22 --> Helper loaded: form_helper
INFO - 2023-12-28 06:03:22 --> Form Validation Class Initialized
INFO - 2023-12-28 06:03:22 --> Upload Class Initialized
INFO - 2023-12-28 06:03:22 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:03:22 --> Pagination Class Initialized
INFO - 2023-12-28 06:03:22 --> Model "Get_model" initialized
INFO - 2023-12-28 06:03:22 --> Controller Class Initialized
INFO - 2023-12-28 06:03:22 --> Model "Common_model" initialized
INFO - 2023-12-28 06:03:22 --> Model "Insert_model" initialized
INFO - 2023-12-28 06:03:22 --> Model "Update_model" initialized
INFO - 2023-12-28 06:03:22 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/index.php
INFO - 2023-12-28 06:03:22 --> Final output sent to browser
DEBUG - 2023-12-28 06:03:22 --> Total execution time: 0.6216
INFO - 2023-12-28 06:03:22 --> Config Class Initialized
INFO - 2023-12-28 06:03:22 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:23 --> Config Class Initialized
DEBUG - 2023-12-28 06:03:23 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:23 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:23 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:23 --> URI Class Initialized
INFO - 2023-12-28 06:03:23 --> Router Class Initialized
INFO - 2023-12-28 06:03:23 --> Config Class Initialized
INFO - 2023-12-28 06:03:23 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:23 --> Output Class Initialized
DEBUG - 2023-12-28 06:03:23 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:23 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:23 --> Security Class Initialized
INFO - 2023-12-28 06:03:23 --> URI Class Initialized
INFO - 2023-12-28 06:03:23 --> Router Class Initialized
DEBUG - 2023-12-28 06:03:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:23 --> Input Class Initialized
INFO - 2023-12-28 06:03:23 --> Output Class Initialized
INFO - 2023-12-28 06:03:23 --> Config Class Initialized
INFO - 2023-12-28 06:03:23 --> Security Class Initialized
INFO - 2023-12-28 06:03:23 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:23 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:23 --> Utf8 Class Initialized
DEBUG - 2023-12-28 06:03:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:23 --> Input Class Initialized
DEBUG - 2023-12-28 06:03:23 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:23 --> Language Class Initialized
INFO - 2023-12-28 06:03:23 --> URI Class Initialized
INFO - 2023-12-28 06:03:23 --> Language Class Initialized
ERROR - 2023-12-28 06:03:23 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-28 06:03:23 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-28 06:03:23 --> Router Class Initialized
INFO - 2023-12-28 06:03:23 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:23 --> URI Class Initialized
INFO - 2023-12-28 06:03:23 --> Output Class Initialized
INFO - 2023-12-28 06:03:23 --> Security Class Initialized
INFO - 2023-12-28 06:03:23 --> Router Class Initialized
DEBUG - 2023-12-28 06:03:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:23 --> Input Class Initialized
INFO - 2023-12-28 06:03:23 --> Output Class Initialized
INFO - 2023-12-28 06:03:23 --> Language Class Initialized
INFO - 2023-12-28 06:03:23 --> Security Class Initialized
ERROR - 2023-12-28 06:03:23 --> 404 Page Not Found: Assets/fonts
DEBUG - 2023-12-28 06:03:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:23 --> Input Class Initialized
INFO - 2023-12-28 06:03:23 --> Language Class Initialized
ERROR - 2023-12-28 06:03:23 --> 404 Page Not Found: Assets/images
INFO - 2023-12-28 06:03:23 --> Config Class Initialized
INFO - 2023-12-28 06:03:23 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:23 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:23 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:23 --> URI Class Initialized
INFO - 2023-12-28 06:03:23 --> Router Class Initialized
INFO - 2023-12-28 06:03:23 --> Output Class Initialized
INFO - 2023-12-28 06:03:23 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:23 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:23 --> Input Class Initialized
INFO - 2023-12-28 06:03:23 --> Language Class Initialized
ERROR - 2023-12-28 06:03:23 --> 404 Page Not Found: Assets/lang
INFO - 2023-12-28 06:03:28 --> Config Class Initialized
INFO - 2023-12-28 06:03:28 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:28 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:28 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:28 --> URI Class Initialized
INFO - 2023-12-28 06:03:28 --> Router Class Initialized
INFO - 2023-12-28 06:03:28 --> Output Class Initialized
INFO - 2023-12-28 06:03:28 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:28 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:28 --> Input Class Initialized
INFO - 2023-12-28 06:03:28 --> Language Class Initialized
INFO - 2023-12-28 06:03:28 --> Loader Class Initialized
INFO - 2023-12-28 06:03:28 --> Helper loaded: url_helper
INFO - 2023-12-28 06:03:28 --> Helper loaded: file_helper
INFO - 2023-12-28 06:03:28 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:03:28 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:03:28 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:03:28 --> Helper loaded: form_helper
INFO - 2023-12-28 06:03:28 --> Form Validation Class Initialized
INFO - 2023-12-28 06:03:28 --> Upload Class Initialized
INFO - 2023-12-28 06:03:28 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:03:28 --> Pagination Class Initialized
INFO - 2023-12-28 06:03:28 --> Model "Get_model" initialized
INFO - 2023-12-28 06:03:28 --> Controller Class Initialized
INFO - 2023-12-28 06:03:28 --> Model "Common_model" initialized
INFO - 2023-12-28 06:03:28 --> Model "Insert_model" initialized
INFO - 2023-12-28 06:03:28 --> Model "Update_model" initialized
INFO - 2023-12-28 06:03:28 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/wallet_manage.php
INFO - 2023-12-28 06:03:28 --> Final output sent to browser
DEBUG - 2023-12-28 06:03:28 --> Total execution time: 0.4900
INFO - 2023-12-28 06:03:29 --> Config Class Initialized
INFO - 2023-12-28 06:03:29 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:29 --> Config Class Initialized
INFO - 2023-12-28 06:03:29 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:29 --> UTF-8 Support Enabled
DEBUG - 2023-12-28 06:03:29 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:29 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:29 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:29 --> URI Class Initialized
INFO - 2023-12-28 06:03:29 --> URI Class Initialized
INFO - 2023-12-28 06:03:29 --> Router Class Initialized
INFO - 2023-12-28 06:03:29 --> Router Class Initialized
INFO - 2023-12-28 06:03:29 --> Output Class Initialized
INFO - 2023-12-28 06:03:29 --> Output Class Initialized
INFO - 2023-12-28 06:03:29 --> Security Class Initialized
INFO - 2023-12-28 06:03:29 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:29 --> Input Class Initialized
DEBUG - 2023-12-28 06:03:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:29 --> Input Class Initialized
INFO - 2023-12-28 06:03:29 --> Language Class Initialized
INFO - 2023-12-28 06:03:29 --> Language Class Initialized
ERROR - 2023-12-28 06:03:29 --> 404 Page Not Found: Assets/libs
ERROR - 2023-12-28 06:03:29 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-28 06:03:29 --> Config Class Initialized
INFO - 2023-12-28 06:03:29 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:29 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:29 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:29 --> URI Class Initialized
INFO - 2023-12-28 06:03:29 --> Router Class Initialized
INFO - 2023-12-28 06:03:29 --> Output Class Initialized
INFO - 2023-12-28 06:03:29 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:29 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:29 --> Input Class Initialized
INFO - 2023-12-28 06:03:29 --> Language Class Initialized
ERROR - 2023-12-28 06:03:29 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-28 06:03:30 --> Config Class Initialized
INFO - 2023-12-28 06:03:30 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:30 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:30 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:30 --> URI Class Initialized
INFO - 2023-12-28 06:03:30 --> Router Class Initialized
INFO - 2023-12-28 06:03:30 --> Output Class Initialized
INFO - 2023-12-28 06:03:30 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:30 --> Input Class Initialized
INFO - 2023-12-28 06:03:30 --> Language Class Initialized
INFO - 2023-12-28 06:03:30 --> Loader Class Initialized
INFO - 2023-12-28 06:03:30 --> Helper loaded: url_helper
INFO - 2023-12-28 06:03:30 --> Helper loaded: file_helper
INFO - 2023-12-28 06:03:30 --> Database Driver Class Initialized
DEBUG - 2023-12-28 06:03:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2023-12-28 06:03:30 --> Session: Class initialized using 'files' driver.
INFO - 2023-12-28 06:03:30 --> Helper loaded: form_helper
INFO - 2023-12-28 06:03:30 --> Form Validation Class Initialized
INFO - 2023-12-28 06:03:30 --> Upload Class Initialized
INFO - 2023-12-28 06:03:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2023-12-28 06:03:30 --> Pagination Class Initialized
INFO - 2023-12-28 06:03:30 --> Model "Get_model" initialized
INFO - 2023-12-28 06:03:30 --> Controller Class Initialized
INFO - 2023-12-28 06:03:30 --> Model "Common_model" initialized
INFO - 2023-12-28 06:03:30 --> Model "Insert_model" initialized
INFO - 2023-12-28 06:03:30 --> Model "Update_model" initialized
INFO - 2023-12-28 06:03:30 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/manage_tournament.php
INFO - 2023-12-28 06:03:30 --> Final output sent to browser
DEBUG - 2023-12-28 06:03:30 --> Total execution time: 0.0937
INFO - 2023-12-28 06:03:30 --> Config Class Initialized
INFO - 2023-12-28 06:03:30 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:30 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:30 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:30 --> URI Class Initialized
INFO - 2023-12-28 06:03:30 --> Router Class Initialized
INFO - 2023-12-28 06:03:30 --> Output Class Initialized
INFO - 2023-12-28 06:03:30 --> Security Class Initialized
DEBUG - 2023-12-28 06:03:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:30 --> Input Class Initialized
INFO - 2023-12-28 06:03:30 --> Language Class Initialized
ERROR - 2023-12-28 06:03:30 --> 404 Page Not Found: Assets/fonts
INFO - 2023-12-28 06:03:30 --> Config Class Initialized
INFO - 2023-12-28 06:03:30 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:30 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:30 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:30 --> Config Class Initialized
INFO - 2023-12-28 06:03:30 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:30 --> URI Class Initialized
INFO - 2023-12-28 06:03:30 --> Router Class Initialized
DEBUG - 2023-12-28 06:03:30 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:30 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:30 --> URI Class Initialized
INFO - 2023-12-28 06:03:30 --> Output Class Initialized
INFO - 2023-12-28 06:03:30 --> Security Class Initialized
INFO - 2023-12-28 06:03:30 --> Router Class Initialized
DEBUG - 2023-12-28 06:03:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:30 --> Output Class Initialized
INFO - 2023-12-28 06:03:30 --> Input Class Initialized
INFO - 2023-12-28 06:03:30 --> Security Class Initialized
INFO - 2023-12-28 06:03:30 --> Language Class Initialized
ERROR - 2023-12-28 06:03:30 --> 404 Page Not Found: Assets/libs
DEBUG - 2023-12-28 06:03:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:30 --> Input Class Initialized
INFO - 2023-12-28 06:03:30 --> Language Class Initialized
ERROR - 2023-12-28 06:03:30 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-28 06:03:30 --> Config Class Initialized
INFO - 2023-12-28 06:03:30 --> Hooks Class Initialized
INFO - 2023-12-28 06:03:30 --> Config Class Initialized
INFO - 2023-12-28 06:03:30 --> Hooks Class Initialized
DEBUG - 2023-12-28 06:03:30 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:30 --> Utf8 Class Initialized
DEBUG - 2023-12-28 06:03:30 --> UTF-8 Support Enabled
INFO - 2023-12-28 06:03:30 --> URI Class Initialized
INFO - 2023-12-28 06:03:30 --> Utf8 Class Initialized
INFO - 2023-12-28 06:03:30 --> Router Class Initialized
INFO - 2023-12-28 06:03:30 --> URI Class Initialized
INFO - 2023-12-28 06:03:30 --> Output Class Initialized
INFO - 2023-12-28 06:03:30 --> Router Class Initialized
INFO - 2023-12-28 06:03:30 --> Security Class Initialized
INFO - 2023-12-28 06:03:30 --> Output Class Initialized
DEBUG - 2023-12-28 06:03:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2023-12-28 06:03:30 --> Input Class Initialized
INFO - 2023-12-28 06:03:30 --> Security Class Initialized
INFO - 2023-12-28 06:03:30 --> Language Class Initialized
DEBUG - 2023-12-28 06:03:30 --> Global POST, GET and COOKIE data sanitized
ERROR - 2023-12-28 06:03:30 --> 404 Page Not Found: Assets/libs
INFO - 2023-12-28 06:03:30 --> Input Class Initialized
INFO - 2023-12-28 06:03:30 --> Language Class Initialized
ERROR - 2023-12-28 06:03:30 --> 404 Page Not Found: Assets/libs

View File

@ -0,0 +1,445 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2024-01-23 10:39:33 --> Config Class Initialized
INFO - 2024-01-23 10:39:33 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:39:33 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:39:33 --> Utf8 Class Initialized
INFO - 2024-01-23 10:39:33 --> URI Class Initialized
DEBUG - 2024-01-23 10:39:33 --> No URI present. Default controller set.
INFO - 2024-01-23 10:39:33 --> Router Class Initialized
INFO - 2024-01-23 10:39:33 --> Output Class Initialized
INFO - 2024-01-23 10:39:33 --> Security Class Initialized
DEBUG - 2024-01-23 10:39:33 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:39:33 --> Input Class Initialized
INFO - 2024-01-23 10:39:33 --> Language Class Initialized
INFO - 2024-01-23 10:39:33 --> Loader Class Initialized
INFO - 2024-01-23 10:39:33 --> Helper loaded: url_helper
INFO - 2024-01-23 10:39:33 --> Helper loaded: file_helper
INFO - 2024-01-23 10:39:33 --> Database Driver Class Initialized
DEBUG - 2024-01-23 10:39:33 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 10:39:33 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 10:39:33 --> Helper loaded: form_helper
INFO - 2024-01-23 10:39:33 --> Form Validation Class Initialized
INFO - 2024-01-23 10:39:33 --> Upload Class Initialized
INFO - 2024-01-23 10:39:33 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 10:39:33 --> Pagination Class Initialized
INFO - 2024-01-23 10:39:33 --> Model "Get_model" initialized
INFO - 2024-01-23 10:39:33 --> Controller Class Initialized
INFO - 2024-01-23 10:39:33 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2024-01-23 10:39:33 --> Final output sent to browser
DEBUG - 2024-01-23 10:39:33 --> Total execution time: 0.1169
INFO - 2024-01-23 10:39:34 --> Config Class Initialized
INFO - 2024-01-23 10:39:34 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:39:34 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:39:34 --> Utf8 Class Initialized
INFO - 2024-01-23 10:39:34 --> URI Class Initialized
INFO - 2024-01-23 10:39:34 --> Router Class Initialized
INFO - 2024-01-23 10:39:34 --> Output Class Initialized
INFO - 2024-01-23 10:39:34 --> Security Class Initialized
DEBUG - 2024-01-23 10:39:34 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:39:34 --> Input Class Initialized
INFO - 2024-01-23 10:39:34 --> Language Class Initialized
ERROR - 2024-01-23 10:39:34 --> 404 Page Not Found: Assets/libs
INFO - 2024-01-23 10:39:34 --> Config Class Initialized
INFO - 2024-01-23 10:39:34 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:39:34 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:39:34 --> Utf8 Class Initialized
INFO - 2024-01-23 10:39:34 --> URI Class Initialized
INFO - 2024-01-23 10:39:34 --> Router Class Initialized
INFO - 2024-01-23 10:39:34 --> Output Class Initialized
INFO - 2024-01-23 10:39:34 --> Security Class Initialized
DEBUG - 2024-01-23 10:39:34 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:39:34 --> Input Class Initialized
INFO - 2024-01-23 10:39:34 --> Language Class Initialized
ERROR - 2024-01-23 10:39:34 --> 404 Page Not Found: Assets/libs
INFO - 2024-01-23 10:47:20 --> Config Class Initialized
INFO - 2024-01-23 10:47:20 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:47:20 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:47:20 --> Utf8 Class Initialized
INFO - 2024-01-23 10:47:20 --> URI Class Initialized
INFO - 2024-01-23 10:47:20 --> Router Class Initialized
INFO - 2024-01-23 10:47:20 --> Output Class Initialized
INFO - 2024-01-23 10:47:20 --> Security Class Initialized
DEBUG - 2024-01-23 10:47:20 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:47:20 --> Input Class Initialized
INFO - 2024-01-23 10:47:20 --> Language Class Initialized
ERROR - 2024-01-23 10:47:20 --> Severity: error --> Exception: Unclosed '{' on line 4 C:\xampp\htdocs\chess\admin\application\controllers\Api.php 198
INFO - 2024-01-23 10:48:30 --> Config Class Initialized
INFO - 2024-01-23 10:48:30 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:48:30 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:48:30 --> Utf8 Class Initialized
INFO - 2024-01-23 10:48:30 --> URI Class Initialized
INFO - 2024-01-23 10:48:30 --> Router Class Initialized
INFO - 2024-01-23 10:48:30 --> Output Class Initialized
INFO - 2024-01-23 10:48:30 --> Security Class Initialized
DEBUG - 2024-01-23 10:48:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:48:30 --> Input Class Initialized
INFO - 2024-01-23 10:48:30 --> Language Class Initialized
INFO - 2024-01-23 10:48:30 --> Loader Class Initialized
INFO - 2024-01-23 10:48:30 --> Helper loaded: url_helper
INFO - 2024-01-23 10:48:30 --> Helper loaded: file_helper
INFO - 2024-01-23 10:48:30 --> Database Driver Class Initialized
DEBUG - 2024-01-23 10:48:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 10:48:30 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 10:48:30 --> Helper loaded: form_helper
INFO - 2024-01-23 10:48:30 --> Form Validation Class Initialized
INFO - 2024-01-23 10:48:30 --> Upload Class Initialized
INFO - 2024-01-23 10:48:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 10:48:30 --> Pagination Class Initialized
INFO - 2024-01-23 10:48:30 --> Model "Get_model" initialized
INFO - 2024-01-23 10:48:30 --> Controller Class Initialized
INFO - 2024-01-23 10:48:30 --> Model "Api_model" initialized
DEBUG - 2024-01-23 10:48:30 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 10:48:30 --> Severity: Warning --> Undefined property: Api::$ApiModel C:\xampp\htdocs\chess\admin\application\controllers\Api.php 176
ERROR - 2024-01-23 10:48:30 --> Severity: error --> Exception: Call to a member function insertData() on null C:\xampp\htdocs\chess\admin\application\controllers\Api.php 176
INFO - 2024-01-23 10:48:47 --> Config Class Initialized
INFO - 2024-01-23 10:48:47 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:48:47 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:48:47 --> Utf8 Class Initialized
INFO - 2024-01-23 10:48:47 --> URI Class Initialized
INFO - 2024-01-23 10:48:47 --> Router Class Initialized
INFO - 2024-01-23 10:48:47 --> Output Class Initialized
INFO - 2024-01-23 10:48:47 --> Security Class Initialized
DEBUG - 2024-01-23 10:48:47 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:48:47 --> Input Class Initialized
INFO - 2024-01-23 10:48:47 --> Language Class Initialized
INFO - 2024-01-23 10:48:47 --> Loader Class Initialized
INFO - 2024-01-23 10:48:47 --> Helper loaded: url_helper
INFO - 2024-01-23 10:48:47 --> Helper loaded: file_helper
INFO - 2024-01-23 10:48:47 --> Database Driver Class Initialized
DEBUG - 2024-01-23 10:48:47 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 10:48:47 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 10:48:47 --> Helper loaded: form_helper
INFO - 2024-01-23 10:48:47 --> Form Validation Class Initialized
INFO - 2024-01-23 10:48:47 --> Upload Class Initialized
INFO - 2024-01-23 10:48:47 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 10:48:47 --> Pagination Class Initialized
INFO - 2024-01-23 10:48:47 --> Model "Get_model" initialized
INFO - 2024-01-23 10:48:47 --> Controller Class Initialized
INFO - 2024-01-23 10:48:47 --> Model "Api_model" initialized
DEBUG - 2024-01-23 10:48:47 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 10:48:47 --> Severity: Warning --> Undefined property: Api::$Api_model C:\xampp\htdocs\chess\admin\application\controllers\Api.php 176
ERROR - 2024-01-23 10:48:47 --> Severity: error --> Exception: Call to a member function insertData() on null C:\xampp\htdocs\chess\admin\application\controllers\Api.php 176
INFO - 2024-01-23 10:50:25 --> Config Class Initialized
INFO - 2024-01-23 10:50:25 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:50:25 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:50:25 --> Utf8 Class Initialized
INFO - 2024-01-23 10:50:25 --> URI Class Initialized
INFO - 2024-01-23 10:50:25 --> Router Class Initialized
INFO - 2024-01-23 10:50:25 --> Output Class Initialized
INFO - 2024-01-23 10:50:25 --> Security Class Initialized
DEBUG - 2024-01-23 10:50:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:50:25 --> Input Class Initialized
INFO - 2024-01-23 10:50:25 --> Language Class Initialized
INFO - 2024-01-23 10:50:25 --> Loader Class Initialized
INFO - 2024-01-23 10:50:25 --> Helper loaded: url_helper
INFO - 2024-01-23 10:50:25 --> Helper loaded: file_helper
INFO - 2024-01-23 10:50:25 --> Database Driver Class Initialized
DEBUG - 2024-01-23 10:50:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 10:50:25 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 10:50:25 --> Helper loaded: form_helper
INFO - 2024-01-23 10:50:25 --> Form Validation Class Initialized
INFO - 2024-01-23 10:50:25 --> Upload Class Initialized
INFO - 2024-01-23 10:50:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 10:50:25 --> Pagination Class Initialized
INFO - 2024-01-23 10:50:25 --> Model "Get_model" initialized
INFO - 2024-01-23 10:50:25 --> Controller Class Initialized
INFO - 2024-01-23 10:50:25 --> Model "Api_model" initialized
DEBUG - 2024-01-23 10:50:25 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 10:50:25 --> Query error: Cannot add or update a child row: a foreign key constraint fails (`chess`.`tournament_registrations`, CONSTRAINT `tournament_registrations_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `tbl_user` (`user_id`)) - Invalid query: INSERT INTO `tournament_registrations` (`user_id`, `tid`) VALUES ('163', '163')
INFO - 2024-01-23 10:50:25 --> Language file loaded: language/english/db_lang.php
INFO - 2024-01-23 10:57:37 --> Config Class Initialized
INFO - 2024-01-23 10:57:37 --> Hooks Class Initialized
DEBUG - 2024-01-23 10:57:37 --> UTF-8 Support Enabled
INFO - 2024-01-23 10:57:37 --> Utf8 Class Initialized
INFO - 2024-01-23 10:57:37 --> URI Class Initialized
INFO - 2024-01-23 10:57:37 --> Router Class Initialized
INFO - 2024-01-23 10:57:37 --> Output Class Initialized
INFO - 2024-01-23 10:57:37 --> Security Class Initialized
DEBUG - 2024-01-23 10:57:37 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 10:57:37 --> Input Class Initialized
INFO - 2024-01-23 10:57:37 --> Language Class Initialized
INFO - 2024-01-23 10:57:37 --> Loader Class Initialized
INFO - 2024-01-23 10:57:38 --> Helper loaded: url_helper
INFO - 2024-01-23 10:57:38 --> Helper loaded: file_helper
INFO - 2024-01-23 10:57:38 --> Database Driver Class Initialized
DEBUG - 2024-01-23 10:57:38 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 10:57:38 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 10:57:38 --> Helper loaded: form_helper
INFO - 2024-01-23 10:57:38 --> Form Validation Class Initialized
INFO - 2024-01-23 10:57:38 --> Upload Class Initialized
INFO - 2024-01-23 10:57:38 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 10:57:38 --> Pagination Class Initialized
INFO - 2024-01-23 10:57:38 --> Model "Get_model" initialized
INFO - 2024-01-23 10:57:38 --> Controller Class Initialized
INFO - 2024-01-23 10:57:38 --> Model "Api_model" initialized
DEBUG - 2024-01-23 10:57:38 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2024-01-23 11:47:46 --> Config Class Initialized
INFO - 2024-01-23 11:47:46 --> Hooks Class Initialized
DEBUG - 2024-01-23 11:47:46 --> UTF-8 Support Enabled
INFO - 2024-01-23 11:47:46 --> Utf8 Class Initialized
INFO - 2024-01-23 11:47:46 --> URI Class Initialized
INFO - 2024-01-23 11:47:46 --> Router Class Initialized
INFO - 2024-01-23 11:47:46 --> Output Class Initialized
INFO - 2024-01-23 11:47:46 --> Security Class Initialized
DEBUG - 2024-01-23 11:47:46 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 11:47:46 --> Input Class Initialized
INFO - 2024-01-23 11:47:46 --> Language Class Initialized
INFO - 2024-01-23 11:47:46 --> Loader Class Initialized
INFO - 2024-01-23 11:47:46 --> Helper loaded: url_helper
INFO - 2024-01-23 11:47:46 --> Helper loaded: file_helper
INFO - 2024-01-23 11:47:46 --> Database Driver Class Initialized
DEBUG - 2024-01-23 11:47:46 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 11:47:46 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 11:47:46 --> Helper loaded: form_helper
INFO - 2024-01-23 11:47:46 --> Form Validation Class Initialized
INFO - 2024-01-23 11:47:46 --> Upload Class Initialized
INFO - 2024-01-23 11:47:46 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 11:47:46 --> Pagination Class Initialized
INFO - 2024-01-23 11:47:46 --> Model "Get_model" initialized
INFO - 2024-01-23 11:47:46 --> Controller Class Initialized
INFO - 2024-01-23 11:47:46 --> Model "Api_model" initialized
DEBUG - 2024-01-23 11:47:46 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 11:47:46 --> Severity: error --> Exception: Object of class Api could not be converted to string C:\xampp\htdocs\chess\admin\application\controllers\Api.php 199
INFO - 2024-01-23 13:38:44 --> Config Class Initialized
INFO - 2024-01-23 13:38:44 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:38:44 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:38:44 --> Utf8 Class Initialized
INFO - 2024-01-23 13:38:44 --> URI Class Initialized
INFO - 2024-01-23 13:38:44 --> Router Class Initialized
INFO - 2024-01-23 13:38:44 --> Output Class Initialized
INFO - 2024-01-23 13:38:44 --> Security Class Initialized
DEBUG - 2024-01-23 13:38:44 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:38:44 --> Input Class Initialized
INFO - 2024-01-23 13:38:44 --> Language Class Initialized
INFO - 2024-01-23 13:38:44 --> Loader Class Initialized
INFO - 2024-01-23 13:38:44 --> Helper loaded: url_helper
INFO - 2024-01-23 13:38:44 --> Helper loaded: file_helper
INFO - 2024-01-23 13:38:44 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:38:44 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:38:44 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:38:44 --> Helper loaded: form_helper
INFO - 2024-01-23 13:38:44 --> Form Validation Class Initialized
INFO - 2024-01-23 13:38:44 --> Upload Class Initialized
INFO - 2024-01-23 13:38:44 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:38:44 --> Pagination Class Initialized
INFO - 2024-01-23 13:38:44 --> Model "Get_model" initialized
INFO - 2024-01-23 13:38:44 --> Controller Class Initialized
INFO - 2024-01-23 13:38:44 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:38:44 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 13:38:44 --> Severity: error --> Exception: Object of class Api could not be converted to string C:\xampp\htdocs\chess\admin\application\controllers\Api.php 199
INFO - 2024-01-23 13:39:48 --> Config Class Initialized
INFO - 2024-01-23 13:39:48 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:39:48 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:39:48 --> Utf8 Class Initialized
INFO - 2024-01-23 13:39:48 --> URI Class Initialized
INFO - 2024-01-23 13:39:48 --> Router Class Initialized
INFO - 2024-01-23 13:39:48 --> Output Class Initialized
INFO - 2024-01-23 13:39:48 --> Security Class Initialized
DEBUG - 2024-01-23 13:39:48 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:39:48 --> Input Class Initialized
INFO - 2024-01-23 13:39:48 --> Language Class Initialized
INFO - 2024-01-23 13:39:48 --> Loader Class Initialized
INFO - 2024-01-23 13:39:48 --> Helper loaded: url_helper
INFO - 2024-01-23 13:39:48 --> Helper loaded: file_helper
INFO - 2024-01-23 13:39:48 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:39:48 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:39:48 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:39:48 --> Helper loaded: form_helper
INFO - 2024-01-23 13:39:48 --> Form Validation Class Initialized
INFO - 2024-01-23 13:39:48 --> Upload Class Initialized
INFO - 2024-01-23 13:39:48 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:39:48 --> Pagination Class Initialized
INFO - 2024-01-23 13:39:48 --> Model "Get_model" initialized
INFO - 2024-01-23 13:39:48 --> Controller Class Initialized
INFO - 2024-01-23 13:39:48 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:39:48 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 13:39:48 --> Severity: error --> Exception: Object of class Api could not be converted to string C:\xampp\htdocs\chess\admin\application\controllers\Api.php 199
INFO - 2024-01-23 13:40:49 --> Config Class Initialized
INFO - 2024-01-23 13:40:49 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:40:49 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:40:49 --> Utf8 Class Initialized
INFO - 2024-01-23 13:40:49 --> URI Class Initialized
INFO - 2024-01-23 13:40:49 --> Router Class Initialized
INFO - 2024-01-23 13:40:49 --> Output Class Initialized
INFO - 2024-01-23 13:40:49 --> Security Class Initialized
DEBUG - 2024-01-23 13:40:49 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:40:49 --> Input Class Initialized
INFO - 2024-01-23 13:40:49 --> Language Class Initialized
INFO - 2024-01-23 13:40:49 --> Loader Class Initialized
INFO - 2024-01-23 13:40:49 --> Helper loaded: url_helper
INFO - 2024-01-23 13:40:49 --> Helper loaded: file_helper
INFO - 2024-01-23 13:40:49 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:40:49 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:40:49 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:40:49 --> Helper loaded: form_helper
INFO - 2024-01-23 13:40:49 --> Form Validation Class Initialized
INFO - 2024-01-23 13:40:49 --> Upload Class Initialized
INFO - 2024-01-23 13:40:49 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:40:49 --> Pagination Class Initialized
INFO - 2024-01-23 13:40:49 --> Model "Get_model" initialized
INFO - 2024-01-23 13:40:49 --> Controller Class Initialized
INFO - 2024-01-23 13:40:49 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:40:49 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 13:40:49 --> Severity: error --> Exception: Object of class Api could not be converted to string C:\xampp\htdocs\chess\admin\application\controllers\Api.php 199
INFO - 2024-01-23 13:41:06 --> Config Class Initialized
INFO - 2024-01-23 13:41:06 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:41:06 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:41:06 --> Utf8 Class Initialized
INFO - 2024-01-23 13:41:06 --> URI Class Initialized
INFO - 2024-01-23 13:41:06 --> Router Class Initialized
INFO - 2024-01-23 13:41:06 --> Output Class Initialized
INFO - 2024-01-23 13:41:06 --> Security Class Initialized
DEBUG - 2024-01-23 13:41:06 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:41:06 --> Input Class Initialized
INFO - 2024-01-23 13:41:06 --> Language Class Initialized
INFO - 2024-01-23 13:41:06 --> Loader Class Initialized
INFO - 2024-01-23 13:41:06 --> Helper loaded: url_helper
INFO - 2024-01-23 13:41:06 --> Helper loaded: file_helper
INFO - 2024-01-23 13:41:06 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:41:06 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:41:06 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:41:06 --> Helper loaded: form_helper
INFO - 2024-01-23 13:41:06 --> Form Validation Class Initialized
INFO - 2024-01-23 13:41:06 --> Upload Class Initialized
INFO - 2024-01-23 13:41:06 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:41:06 --> Pagination Class Initialized
INFO - 2024-01-23 13:41:06 --> Model "Get_model" initialized
INFO - 2024-01-23 13:41:06 --> Controller Class Initialized
INFO - 2024-01-23 13:41:06 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:41:06 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 13:41:06 --> Severity: Warning --> Trying to access array offset on value of type null C:\xampp\htdocs\chess\admin\application\controllers\Api.php 199
INFO - 2024-01-23 13:41:39 --> Config Class Initialized
INFO - 2024-01-23 13:41:39 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:41:39 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:41:39 --> Utf8 Class Initialized
INFO - 2024-01-23 13:41:39 --> URI Class Initialized
INFO - 2024-01-23 13:41:39 --> Router Class Initialized
INFO - 2024-01-23 13:41:39 --> Output Class Initialized
INFO - 2024-01-23 13:41:39 --> Security Class Initialized
DEBUG - 2024-01-23 13:41:39 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:41:39 --> Input Class Initialized
INFO - 2024-01-23 13:41:39 --> Language Class Initialized
INFO - 2024-01-23 13:41:39 --> Loader Class Initialized
INFO - 2024-01-23 13:41:39 --> Helper loaded: url_helper
INFO - 2024-01-23 13:41:39 --> Helper loaded: file_helper
INFO - 2024-01-23 13:41:39 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:41:39 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:41:39 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:41:39 --> Helper loaded: form_helper
INFO - 2024-01-23 13:41:39 --> Form Validation Class Initialized
INFO - 2024-01-23 13:41:39 --> Upload Class Initialized
INFO - 2024-01-23 13:41:39 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:41:39 --> Pagination Class Initialized
INFO - 2024-01-23 13:41:39 --> Model "Get_model" initialized
INFO - 2024-01-23 13:41:39 --> Controller Class Initialized
INFO - 2024-01-23 13:41:39 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:41:39 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2024-01-23 13:41:52 --> Config Class Initialized
INFO - 2024-01-23 13:41:52 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:41:52 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:41:52 --> Utf8 Class Initialized
INFO - 2024-01-23 13:41:52 --> URI Class Initialized
INFO - 2024-01-23 13:41:52 --> Router Class Initialized
INFO - 2024-01-23 13:41:52 --> Output Class Initialized
INFO - 2024-01-23 13:41:52 --> Security Class Initialized
DEBUG - 2024-01-23 13:41:52 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:41:52 --> Input Class Initialized
INFO - 2024-01-23 13:41:52 --> Language Class Initialized
INFO - 2024-01-23 13:41:52 --> Loader Class Initialized
INFO - 2024-01-23 13:41:52 --> Helper loaded: url_helper
INFO - 2024-01-23 13:41:52 --> Helper loaded: file_helper
INFO - 2024-01-23 13:41:52 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:41:52 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:41:52 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:41:52 --> Helper loaded: form_helper
INFO - 2024-01-23 13:41:52 --> Form Validation Class Initialized
INFO - 2024-01-23 13:41:52 --> Upload Class Initialized
INFO - 2024-01-23 13:41:52 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:41:52 --> Pagination Class Initialized
INFO - 2024-01-23 13:41:52 --> Model "Get_model" initialized
INFO - 2024-01-23 13:41:52 --> Controller Class Initialized
INFO - 2024-01-23 13:41:52 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:41:52 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 13:41:52 --> Severity: Warning --> Undefined property: Api::$ApiModel C:\xampp\htdocs\chess\admin\application\controllers\Api.php 204
ERROR - 2024-01-23 13:41:52 --> Severity: error --> Exception: Call to a member function getAllData() on null C:\xampp\htdocs\chess\admin\application\controllers\Api.php 204
INFO - 2024-01-23 13:44:03 --> Config Class Initialized
INFO - 2024-01-23 13:44:03 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:44:03 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:44:03 --> Utf8 Class Initialized
INFO - 2024-01-23 13:44:03 --> URI Class Initialized
INFO - 2024-01-23 13:44:03 --> Router Class Initialized
INFO - 2024-01-23 13:44:03 --> Output Class Initialized
INFO - 2024-01-23 13:44:03 --> Security Class Initialized
DEBUG - 2024-01-23 13:44:03 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:44:03 --> Input Class Initialized
INFO - 2024-01-23 13:44:03 --> Language Class Initialized
INFO - 2024-01-23 13:44:03 --> Loader Class Initialized
INFO - 2024-01-23 13:44:03 --> Helper loaded: url_helper
INFO - 2024-01-23 13:44:03 --> Helper loaded: file_helper
INFO - 2024-01-23 13:44:03 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:44:03 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:44:03 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:44:03 --> Helper loaded: form_helper
INFO - 2024-01-23 13:44:03 --> Form Validation Class Initialized
INFO - 2024-01-23 13:44:03 --> Upload Class Initialized
INFO - 2024-01-23 13:44:03 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:44:03 --> Pagination Class Initialized
INFO - 2024-01-23 13:44:03 --> Model "Get_model" initialized
INFO - 2024-01-23 13:44:03 --> Controller Class Initialized
INFO - 2024-01-23 13:44:03 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:44:03 --> Form_validation class already loaded. Second attempt ignored.
ERROR - 2024-01-23 13:44:03 --> Severity: Warning --> Undefined property: Api::$Api_model C:\xampp\htdocs\chess\admin\application\controllers\Api.php 204
ERROR - 2024-01-23 13:44:03 --> Severity: error --> Exception: Call to a member function getAllData() on null C:\xampp\htdocs\chess\admin\application\controllers\Api.php 204
INFO - 2024-01-23 13:44:30 --> Config Class Initialized
INFO - 2024-01-23 13:44:30 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:44:30 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:44:30 --> Utf8 Class Initialized
INFO - 2024-01-23 13:44:30 --> URI Class Initialized
INFO - 2024-01-23 13:44:30 --> Router Class Initialized
INFO - 2024-01-23 13:44:30 --> Output Class Initialized
INFO - 2024-01-23 13:44:30 --> Security Class Initialized
DEBUG - 2024-01-23 13:44:30 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:44:30 --> Input Class Initialized
INFO - 2024-01-23 13:44:30 --> Language Class Initialized
INFO - 2024-01-23 13:44:30 --> Loader Class Initialized
INFO - 2024-01-23 13:44:30 --> Helper loaded: url_helper
INFO - 2024-01-23 13:44:30 --> Helper loaded: file_helper
INFO - 2024-01-23 13:44:30 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:44:30 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:44:30 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:44:30 --> Helper loaded: form_helper
INFO - 2024-01-23 13:44:30 --> Form Validation Class Initialized
INFO - 2024-01-23 13:44:30 --> Upload Class Initialized
INFO - 2024-01-23 13:44:30 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:44:30 --> Pagination Class Initialized
INFO - 2024-01-23 13:44:30 --> Model "Get_model" initialized
INFO - 2024-01-23 13:44:30 --> Controller Class Initialized
INFO - 2024-01-23 13:44:30 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:44:30 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2024-01-23 13:47:25 --> Config Class Initialized
INFO - 2024-01-23 13:47:25 --> Hooks Class Initialized
DEBUG - 2024-01-23 13:47:25 --> UTF-8 Support Enabled
INFO - 2024-01-23 13:47:25 --> Utf8 Class Initialized
INFO - 2024-01-23 13:47:25 --> URI Class Initialized
INFO - 2024-01-23 13:47:25 --> Router Class Initialized
INFO - 2024-01-23 13:47:25 --> Output Class Initialized
INFO - 2024-01-23 13:47:25 --> Security Class Initialized
DEBUG - 2024-01-23 13:47:25 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-23 13:47:25 --> Input Class Initialized
INFO - 2024-01-23 13:47:25 --> Language Class Initialized
INFO - 2024-01-23 13:47:25 --> Loader Class Initialized
INFO - 2024-01-23 13:47:25 --> Helper loaded: url_helper
INFO - 2024-01-23 13:47:25 --> Helper loaded: file_helper
INFO - 2024-01-23 13:47:25 --> Database Driver Class Initialized
DEBUG - 2024-01-23 13:47:25 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-23 13:47:25 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-23 13:47:25 --> Helper loaded: form_helper
INFO - 2024-01-23 13:47:25 --> Form Validation Class Initialized
INFO - 2024-01-23 13:47:25 --> Upload Class Initialized
INFO - 2024-01-23 13:47:25 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-23 13:47:25 --> Pagination Class Initialized
INFO - 2024-01-23 13:47:25 --> Model "Get_model" initialized
INFO - 2024-01-23 13:47:25 --> Controller Class Initialized
INFO - 2024-01-23 13:47:25 --> Model "Api_model" initialized
DEBUG - 2024-01-23 13:47:25 --> Form_validation class already loaded. Second attempt ignored.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2024-01-28 12:44:21 --> Config Class Initialized
INFO - 2024-01-28 12:44:21 --> Hooks Class Initialized
DEBUG - 2024-01-28 12:44:21 --> UTF-8 Support Enabled
INFO - 2024-01-28 12:44:21 --> Utf8 Class Initialized
INFO - 2024-01-28 12:44:21 --> URI Class Initialized
INFO - 2024-01-28 12:44:21 --> Router Class Initialized
INFO - 2024-01-28 12:44:22 --> Output Class Initialized
INFO - 2024-01-28 12:44:22 --> Security Class Initialized
DEBUG - 2024-01-28 12:44:22 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-01-28 12:44:22 --> Input Class Initialized
INFO - 2024-01-28 12:44:22 --> Language Class Initialized
INFO - 2024-01-28 12:44:22 --> Loader Class Initialized
INFO - 2024-01-28 12:44:22 --> Helper loaded: url_helper
INFO - 2024-01-28 12:44:22 --> Helper loaded: file_helper
INFO - 2024-01-28 12:44:23 --> Database Driver Class Initialized
DEBUG - 2024-01-28 12:44:23 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-01-28 12:44:23 --> Session: Class initialized using 'files' driver.
INFO - 2024-01-28 12:44:23 --> Helper loaded: form_helper
INFO - 2024-01-28 12:44:23 --> Form Validation Class Initialized
INFO - 2024-01-28 12:44:24 --> Upload Class Initialized
INFO - 2024-01-28 12:44:24 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-01-28 12:44:24 --> Pagination Class Initialized
INFO - 2024-01-28 12:44:24 --> Model "Get_model" initialized
INFO - 2024-01-28 12:44:24 --> Controller Class Initialized
INFO - 2024-01-28 12:44:24 --> Model "Api_model" initialized
DEBUG - 2024-01-28 12:44:24 --> Form_validation class already loaded. Second attempt ignored.
INFO - 2024-01-28 12:44:24 --> Final output sent to browser
DEBUG - 2024-01-28 12:44:24 --> Total execution time: 3.3810

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,106 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
INFO - 2024-02-24 06:03:06 --> Config Class Initialized
INFO - 2024-02-24 06:03:06 --> Hooks Class Initialized
DEBUG - 2024-02-24 06:03:06 --> UTF-8 Support Enabled
INFO - 2024-02-24 06:03:06 --> Utf8 Class Initialized
INFO - 2024-02-24 06:03:06 --> URI Class Initialized
DEBUG - 2024-02-24 06:03:06 --> No URI present. Default controller set.
INFO - 2024-02-24 06:03:06 --> Router Class Initialized
INFO - 2024-02-24 06:03:06 --> Output Class Initialized
INFO - 2024-02-24 06:03:06 --> Security Class Initialized
DEBUG - 2024-02-24 06:03:06 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-02-24 06:03:06 --> Input Class Initialized
INFO - 2024-02-24 06:03:06 --> Language Class Initialized
INFO - 2024-02-24 06:03:07 --> Loader Class Initialized
INFO - 2024-02-24 06:03:07 --> Helper loaded: url_helper
INFO - 2024-02-24 06:03:07 --> Helper loaded: file_helper
INFO - 2024-02-24 06:03:07 --> Database Driver Class Initialized
DEBUG - 2024-02-24 06:03:07 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-02-24 06:03:07 --> Session: Class initialized using 'files' driver.
INFO - 2024-02-24 06:03:07 --> Helper loaded: form_helper
INFO - 2024-02-24 06:03:07 --> Form Validation Class Initialized
INFO - 2024-02-24 06:03:07 --> Upload Class Initialized
INFO - 2024-02-24 06:03:07 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-02-24 06:03:07 --> Pagination Class Initialized
INFO - 2024-02-24 06:03:07 --> Model "Get_model" initialized
INFO - 2024-02-24 06:03:07 --> Controller Class Initialized
INFO - 2024-02-24 06:03:07 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2024-02-24 06:03:07 --> Final output sent to browser
DEBUG - 2024-02-24 06:03:07 --> Total execution time: 1.4772
INFO - 2024-02-24 06:03:09 --> Config Class Initialized
INFO - 2024-02-24 06:03:09 --> Hooks Class Initialized
DEBUG - 2024-02-24 06:03:09 --> UTF-8 Support Enabled
INFO - 2024-02-24 06:03:09 --> Utf8 Class Initialized
INFO - 2024-02-24 06:03:09 --> URI Class Initialized
INFO - 2024-02-24 06:03:09 --> Router Class Initialized
INFO - 2024-02-24 06:03:09 --> Output Class Initialized
INFO - 2024-02-24 06:03:09 --> Security Class Initialized
DEBUG - 2024-02-24 06:03:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-02-24 06:03:09 --> Input Class Initialized
INFO - 2024-02-24 06:03:09 --> Language Class Initialized
ERROR - 2024-02-24 06:03:09 --> 404 Page Not Found: Assets/libs
INFO - 2024-02-24 06:03:09 --> Config Class Initialized
INFO - 2024-02-24 06:03:09 --> Hooks Class Initialized
DEBUG - 2024-02-24 06:03:09 --> UTF-8 Support Enabled
INFO - 2024-02-24 06:03:09 --> Utf8 Class Initialized
INFO - 2024-02-24 06:03:09 --> URI Class Initialized
INFO - 2024-02-24 06:03:09 --> Router Class Initialized
INFO - 2024-02-24 06:03:09 --> Output Class Initialized
INFO - 2024-02-24 06:03:09 --> Security Class Initialized
DEBUG - 2024-02-24 06:03:09 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-02-24 06:03:09 --> Input Class Initialized
INFO - 2024-02-24 06:03:09 --> Language Class Initialized
ERROR - 2024-02-24 06:03:09 --> 404 Page Not Found: Assets/libs
INFO - 2024-02-24 06:03:32 --> Config Class Initialized
INFO - 2024-02-24 06:03:32 --> Hooks Class Initialized
DEBUG - 2024-02-24 06:03:32 --> UTF-8 Support Enabled
INFO - 2024-02-24 06:03:32 --> Utf8 Class Initialized
INFO - 2024-02-24 06:03:32 --> URI Class Initialized
DEBUG - 2024-02-24 06:03:32 --> No URI present. Default controller set.
INFO - 2024-02-24 06:03:32 --> Router Class Initialized
INFO - 2024-02-24 06:03:32 --> Output Class Initialized
INFO - 2024-02-24 06:03:32 --> Security Class Initialized
DEBUG - 2024-02-24 06:03:32 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-02-24 06:03:32 --> Input Class Initialized
INFO - 2024-02-24 06:03:32 --> Language Class Initialized
INFO - 2024-02-24 06:03:32 --> Loader Class Initialized
INFO - 2024-02-24 06:03:32 --> Helper loaded: url_helper
INFO - 2024-02-24 06:03:32 --> Helper loaded: file_helper
INFO - 2024-02-24 06:03:32 --> Database Driver Class Initialized
DEBUG - 2024-02-24 06:03:32 --> Session: "sess_save_path" is empty; using "session.save_path" value from php.ini.
INFO - 2024-02-24 06:03:32 --> Session: Class initialized using 'files' driver.
INFO - 2024-02-24 06:03:32 --> Helper loaded: form_helper
INFO - 2024-02-24 06:03:32 --> Form Validation Class Initialized
INFO - 2024-02-24 06:03:32 --> Upload Class Initialized
INFO - 2024-02-24 06:03:32 --> Language file loaded: language/english/pagination_lang.php
INFO - 2024-02-24 06:03:32 --> Pagination Class Initialized
INFO - 2024-02-24 06:03:32 --> Model "Get_model" initialized
INFO - 2024-02-24 06:03:32 --> Controller Class Initialized
INFO - 2024-02-24 06:03:32 --> File loaded: C:\xampp\htdocs\chess\admin\application\views\pages/login.php
INFO - 2024-02-24 06:03:32 --> Final output sent to browser
DEBUG - 2024-02-24 06:03:32 --> Total execution time: 0.2509
INFO - 2024-02-24 06:03:33 --> Config Class Initialized
INFO - 2024-02-24 06:03:33 --> Hooks Class Initialized
DEBUG - 2024-02-24 06:03:33 --> UTF-8 Support Enabled
INFO - 2024-02-24 06:03:33 --> Utf8 Class Initialized
INFO - 2024-02-24 06:03:33 --> URI Class Initialized
INFO - 2024-02-24 06:03:33 --> Router Class Initialized
INFO - 2024-02-24 06:03:33 --> Output Class Initialized
INFO - 2024-02-24 06:03:33 --> Security Class Initialized
DEBUG - 2024-02-24 06:03:33 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-02-24 06:03:33 --> Input Class Initialized
INFO - 2024-02-24 06:03:33 --> Language Class Initialized
ERROR - 2024-02-24 06:03:33 --> 404 Page Not Found: Assets/libs
INFO - 2024-02-24 06:03:33 --> Config Class Initialized
INFO - 2024-02-24 06:03:33 --> Hooks Class Initialized
DEBUG - 2024-02-24 06:03:33 --> UTF-8 Support Enabled
INFO - 2024-02-24 06:03:33 --> Utf8 Class Initialized
INFO - 2024-02-24 06:03:33 --> URI Class Initialized
INFO - 2024-02-24 06:03:33 --> Router Class Initialized
INFO - 2024-02-24 06:03:33 --> Output Class Initialized
INFO - 2024-02-24 06:03:33 --> Security Class Initialized
DEBUG - 2024-02-24 06:03:34 --> Global POST, GET and COOKIE data sanitized
INFO - 2024-02-24 06:03:34 --> Input Class Initialized
INFO - 2024-02-24 06:03:34 --> Language Class Initialized
ERROR - 2024-02-24 06:03:34 --> 404 Page Not Found: Assets/libs

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,380 @@
<?php
class Api_model extends CI_Model
{
// function fetch_all()
// {
// $this->db->order_by('tid', 'ASC');
// return $this->db->get('tournament');
// }
function fetch_all()
{
$this->db->select('tournament.*, COUNT(tournament_registrations.id) as user_count');
$this->db->from('tournament');
$this->db->join('tournament_registrations', 'tournament_registrations.tid = tournament.tid', 'left');
$this->db->group_by('tournament.tid');
$this->db->order_by('tournament.tid', 'ASC');
return $this->db->get();
}
public function insertData($tbl,$arr)
{
$this->db->insert($tbl,$arr);
return $this->db->insert_id();
}
public function getData($tbl,$where)
{
$this->db->select('*');
$this->db->from($tbl);
$this->db->where($where);
$query = $this->db->get();
return $query->row_array();
}
public function getAllData($tbl,$where)
{
$this->db->select('*');
$this->db->from($tbl);
$this->db->where($where);
$query = $this->db->get();
return $query->result_array();
}
// public function get_tournament_participants($tid) {
// $this->db->select('tr.user_id, tr.score','tr.round');
// $this->db->from('tournament_registrations tr');
// $this->db->join('tbl_user u', 'tr.user_id = u.user_id', 'left');
// $this->db->where('tr.tid', $tid);
// $query = $this->db->get();
// return $query->result_array();
// }
public function get_tournament_participants($tid) {
$this->db->select('tr.user_id, tr.score, tr.round');
$this->db->from('tournament_registrations tr');
$this->db->join('tbl_user u', 'tr.user_id = u.user_id', 'left');
$this->db->where('tr.tid', $tid);
$query = $this->db->get();
return $query->result_array();
}
public function get_tournament_leaderboard($tid) {
$this->db->select('tr.user_id, tr.score, tr.round, u.username, tr.winnings');
$this->db->from('tournament_registrations tr');
$this->db->join('tbl_user u', 'tr.user_id = u.user_id', 'left');
$this->db->where('tr.tid', $tid);
$query = $this->db->get();
return $query->result_array();
}
public function get_tournament_win_amount($tid) {
$this->db->select('win_amount');
$this->db->from('tournament');
$this->db->where('tid', $tid);
$query = $this->db->get();
if ($query->num_rows() > 0) {
$row = $query->row();
return $row->win_amount;
}
return 0;
}
public function update_winnings_in_database($winningsDistribution, $tid)
{
foreach ($winningsDistribution as $user_id => $winnings) {
if ($winnings > 0) {
$data = array('winnings' => $winnings);
$this->db->where('tid', $tid);
$this->db->where('user_id', $user_id);
$this->db->update('tournament_registrations', $data);
$existingRecord = $this->db
->where('tournament_id', $tid)
->where('user_id', $user_id)
->get('wallet_transaction_details')
->row();
if ($existingRecord) {
exit();
} else {
$wallet_data = array(
'tournament_id' => $tid,
'user_id' => $user_id,
'amount' => $winnings,
'wallet_amount' => $this->get_current_wallet_amount($user_id) + $winnings,
'message' => 'Winnings from tournament',
'added_by' => 1,
't_status' => 1,
'added_date' => date('Y-m-d H:i:s'),
);
$this->db->insert('wallet_transaction_details', $wallet_data);
}
}
}
}
// Function to get the current wallet amount for a user
private function get_current_wallet_amount($user_id)
{
$this->db->select('wallet_amount');
$this->db->from('wallet_transaction_details');
$this->db->where('user_id', $user_id);
$this->db->order_by('added_date', 'desc');
$this->db->limit(1);
$query = $this->db->get();
if ($query->num_rows() > 0) {
$row = $query->row();
return $row->wallet_amount;
}
return 0;
}
public function get_tournament_winners($tid)
{
$winners = $this->db
->select('tr.user_id, tr.winnings, u.username')
->from('tournament_registrations tr')
->join('tbl_user u', 'tr.user_id = u.user_id', 'left')
->where('tr.tid', $tid)
->where('tr.winnings >', 0)
->order_by('tr.winnings', 'desc')
->limit(2)
->get()
->result_array();
return $winners;
}
// public function get_tournament_leaderboard($tid)
// {
// $leaderboard = $this->db
// ->select('tr.user_id, u.username, tr.winnings, tr.score')
// ->from('tournament_registrations tr')
// ->join('tbl_user u', 'tr.user_id = u.user_id', 'left')
// ->where('tr.tid', $tid)
// ->order_by('tr.winnings', 'desc')
// ->get()
// ->result_array();
// return $leaderboard;
// }
public function check_tournament_completion_status($tid) {
$this->db->select('is_tournament_completed');
$this->db->from('tournament');
$this->db->where('tid', $tid);
$query = $this->db->get();
$row = $query->row();
return ($row && $row->is_tournament_completed == 1);
}
public function update_user_score($user_id, $score, $tid,$round) {
$data = array('score' => $score,
'round' => $round);
$this->db->where('user_id', $user_id);
$this->db->where('tid', $tid);
$this->db->update('tournament_registrations', $data);
}
public function update_tournament_registration($user_id, $data, $tid) {
$this->db->where('user_id', $user_id);
$this->db->where('tid', $tid);
$this->db->update('tournament_registrations', $data);
}
public function check_tournament_completion($tid)
{
$this->db->select('is_match_completed');
$this->db->from('tournament_registrations');
$this->db->where('tid', $tid);
$query = $this->db->get();
$result = $query->result_array();
$is_tournament_completed = 1;
foreach ($result as $row) {
if ($row['is_match_completed'] != 1) {
$is_tournament_completed = 0;
break;
}
}
$this->update_tournament_completion_status($tid, $is_tournament_completed);
$response = array(
'is_tournament_completed' => $is_tournament_completed,
'message' => $is_tournament_completed ? 'Tournament completed' : 'Tournament is ongoing'
);
return $response;
}
private function update_tournament_completion_status($tid, $is_tournament_completed) {
$data = array('is_tournament_completed' => $is_tournament_completed);
$this->db->where('tid', $tid);
$this->db->update('tournament', $data);
}
function insert_api($data)
{
// Assuming $data['round'] contains a JSON string
$insert_data = array(
'tname' => $data['tname'],
'entry_fee' => $data['entry_fee'],
'start_date_time' => $data['start_date_time'],
// 'end_date' => $data['end_date'],
'win_amount' => $data['win_amount'],
't_type'=> $data['t_type'],
'time_slot' => $data['time_slot'],
'round' => $data['round']
);
$this->db->insert('tournament', $insert_data);
$db_error = $this->db->error();
if (!empty($db_error['code'])) {
// Log or print the database error for debugging
log_message('error', 'Database Error: ' . $db_error['code'] . ' ' . $db_error['message']);
}
return $this->db->insert_id(); // Assuming you want to return the inserted ID
/* $this->db->insert('tournament', $data);
if($this->db->affected_rows() > 0)
{
return true;
}
else
{
return false;
}*/
}
public function insert_and_get_last_id($table, $data)
{
$this->db->insert($table, $data);
if ($this->db->affected_rows() > 0) {
$insert_id = $this->db->insert_id();
return $insert_id;
} else {
// Display or log the database error
echo $this->db->error()['message'];
return false;
}
}
function fetch_single_user($user_id)
{
$this->db->where("tid", $user_id);
$query = $this->db->get('tournament');
return $query->result_array();
}
function update_api($user_id, $data)
{
$this->db->where("tid", $user_id);
$this->db->update("tournament", $data);
if($this->db->affected_rows() > 0)
{
return true;
}
else
{
return false;
}
}
function delete_single_user($user_id)
{
$this->db->where("tid", $user_id);
$this->db->delete("tournament");
if($this->db->affected_rows() > 0)
{
return true;
}
else
{
return false;
}
}
public function insertRoundData($tournamentId, $roundData)
{
foreach ($roundData as $round) {
$data = array(
'tid' => $tournamentId,
'round' => $round
// Add any other columns if needed
);
$this->db->insert('tournament_round', $data);
if ($this->db->error()) {
// Handle the error, e.g., log or print the error message
log_message('error', 'Database Error: ' . $this->db->error()['message']);
}
}
}
public function editData2($table, $data, $where)
{
$this->db->where($where);
$this->db->update($table, $data);
return $this->db->affected_rows() > 0;
}
}

View File

@ -0,0 +1,47 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Auth_model extends CI_Model {
public function __construct(){
parent::__construct();
}
public function check_admin_login($email, $password)
{
//$this->load->view('pages/login');
return $this->db->select('*')
->from('tbl_admin')
->where('admin_email',$email)
->where('admin_password',$password)
->get()->result_array();
}
public function update_profile($table, $data)
{
$this->db->where('admin_id', $this->session->userdata('admin_id'));
$this->db->update($table, $data);
}
public function check_password($admin_id,$old_password){
$this->db->select('*');
$this->db->where('admin_id', $admin_id);
$this->db->where('admin_password', $old_password);
$query = $this->db->get('tbl_admin');
$num = $query->num_rows();
return $num;
}
}

View File

@ -0,0 +1,106 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Common_model extends CI_Model {
public function __construct(){
parent::__construct();
}
public function getAllData($tbl,$where)
{
$this->db->select('*');
$this->db->from($tbl);
$this->db->where($where);
$query = $this->db->get();
return $query->result_array();
}
public function update($table, $data, $where)
{
$this->db->where($where);
$this->db->update($table, $data);
}
public function update_data($table, $data, $where)
{
$this->db->where($where);
$this->db->update($table, $data);
$afftectedRows = $this->db->affected_rows();
echo $afftectedRows;
}
public function delete($table, $where)
{
$this->db->where($where);
$this->db->delete($table);
$query=$this->db->get($table);
return $query->result();
}
public function deleteDynamicRow($table,$where){
$this->db->where($where);
$delete = $this->db->delete($table);
return $delete?true:false;
}
public function insert_or_update($table,$where, $data){
$this->db->where($where);
$q = $this->db->get($table);
if( $q->num_rows() > 0 )
{
$this->db->where($where);
$this->db->update($table,$data);
} else {
$this->db->set($where);
$this->db->insert($table, $data);
}
}
public function set_data($table, $where, $data)
{
$this->db->update($table, $data, $where);
return $this->db->affected_rows();
}
public function set_token($email, $randon)
{
$where = array('admin_email' => $email);
$this->db->update('tbl_admin', $randon, $where);
return $this->db->affected_rows();
}
public function insert_or_delete($table,$where, $data){
$this->db->where($where);
$q = $this->db->get($table);
if( $q->num_rows() > 0 )
{
$this->db->where($where);
$this->db->delete($table,$data);
} else {
$this->db->set($where);
$this->db->insert($table, $data);
}
}
}

View File

@ -0,0 +1,181 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Get_model extends CI_Model {
public function __construct(){
parent::__construct();
}
public function get_table($table)
{
return $this->db->select('*')
->from($table)
->get()->result_array();
}
public function getDataById_wallet($tbl,$where)
{
$this->db->select('*');
$this->db->from($tbl);
$this->db->where($where);
$this->db->order_by('t_id', 'desc');
$this->db->limit(1);
$query = $this->db->get();
return $query->row_array();
}
public function get_wallet_history($id){
$this->db->select('*');
$this->db->from('wallet_transaction_details w');
//$this->db->join('tbl_user u', 'w.user_id = u.user_id', 'left');
$this->db->where('w.user_id', $id);
$this->db->order_by('w.t_id','DESC');
$query = $this->db->get();
return $query->result_array();
}
public function rows_count($table, $where){
$this->db->where($where);
$result = $this->db->get($table)->num_rows();
return $result;
}
public function get_by_id($table, $where)
{
$this->db->from($table);
$this->db->where($where);
$query = $this->db->get();
return $query->row_array();
}
public function get_count($table, $where)
{
$this->db->from($table);
$this->db->where($where);
$query = $this->db->get();
return $query->num_rows();
}
public function count_rows($tbl, $where) {
$this->db->select('COUNT(*) as count');
$this->db->from($tbl);
$this->db->where($where);
$this->db->order_by($where,'DESC');
$query = $this->db->get();
$result = $query->row();
return $result->count;
}
public function get_by_id_all($table, $where)
{
$this->db->from($table);
$this->db->where($where);
$query = $this->db->get();
return $query->result();
}
public function num_row($table){
$this->db->select('count(*) as allcount');
$this->db->from($table);
$query = $this->db->get();
$result = $query->result_array();
return $result[0]['allcount'];
}
public function num_row_wh($table, $where){
$this->db->select('count(*) as allcount');
$this->db->from($table);
$this->db->where($where);
$query = $this->db->get();
$result = $query->result_array();
return $result[0]['allcount'];
}
public function list($limit,$offset, $table){
$this->db->limit($limit,$offset);
$this->db->select('*');
$this->db->from($table);
//$this->db->order_by('insale_master.created_at','DESC');
return $this->db->get()->result_array();
}
public function list_by_desc($limit,$offset, $table, $column){
$this->db->limit($limit,$offset);
$this->db->order_by($column,'DESC');
$this->db->select('*');
$this->db->from($table);
//$this->db->order_by('insale_master.created_at','DESC');
$query = $this->db->get();
return $query->result_array();
}
public function list_by_desc_wh($limit,$offset, $table, $column, $where){
$this->db->limit($limit,$offset);
$this->db->order_by($column,'DESC');
$this->db->select('*');
$this->db->from($table);
$this->db->where($where);
//$this->db->order_by('insale_master.created_at','DESC');
return $this->db->get()->result_array();
}
public function get_all($table, $where)
{
$this->db->from($table);
$this->db->where($where);
$query = $this->db->get();
return $query->result_array();
}
public function get_all1($table, $where)
{
$this->db->select('tbl_game_data.player1_id','tbl_user.name' );
$this->db->distinct();
$this->db->from('tbl_game_data');
$this->db->where($where);
$this->db->order_by('tbl_game_data.player1_id','tbl_user.name','DESC');
$query = $this->db->get();
return $query->result_array();
}
public function get_all_desc($table, $column)
{
$this->db->from($table);
// $this->db->where($where);
$this->db->order_by($column,'DESC');
$query = $this->db->get();
return $query->result_array();
}
public function row_getById($table, $where)
{
$this->db->from($table);
$this->db->where($where);
$query = $this->db->get();
return $query->row();
}
}

View File

@ -0,0 +1,28 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Insert_model extends CI_Model {
public function __construct(){
parent::__construct();
}
public function insert($table, $data)
{
return $this->db->insert($table,$data);
}
public function insert_and_get_last_id($table, $data)
{
$this->db->insert($table,$data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
}

View File

@ -0,0 +1,30 @@
<?php
// application/models/Tournament_model.php
class Tournament_model extends CI_Model {
public function get_tournament($tournament_id) {
// Fetch tournament details from the database based on $tournament_id
$query = $this->db->get_where('tournament', array('tid' => $tournament_id));
return $query->row_array();
}
public function update_tournament($tournament_id, $data) {
// Update tournament details in the database
$this->db->where('tid', $tournament_id);
$this->db->update('tournament', $data);
}
// ... other methods ...
public function delete_tournament($tournamentId) {
// Perform deletion query here using $tournamentId
$this->db->delete('tournament', array('tid' => $tournamentId));
}
}
?>

View File

@ -0,0 +1,11 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Update_model extends CI_Model {
public function update_tournament($tournament_id, $data) {
$this->db->where('tid', $tournament_id);
$this->db->update('tournament', $data);
return $this->db->affected_rows();
}
}

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

11
application/third_party/index.html vendored Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,340 @@
<html>
<head>
<title>CURD REST API in Codeigniter</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<br />
<h3 align="center">Create CRUD REST API in Codeigniter - 4</h3>
<br />
<div class="panel panel-default">
<div class="panel-heading">
<div class="row">
<div class="col-md-6">
<h3 class="panel-title">CRUD REST API in Codeigniter</h3>
</div>
<div class="col-md-6" align="right">
<button type="button" id="add_button" class="btn btn-info btn-xs">Add</button>
</div>
</div>
</div>
<div class="panel-body">
<span id="success_message"></span>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Sr no</th>
<th>tournament Name</th>
<th>Entry Fee</th>
<th>Srart Date</th>
<th>End Date</th>
<th>Win Amount</th>
<th>Time Slot</th>
<th>Round</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>
<div id="userModal" class="modal fade">
<div class="modal-dialog">
<form method="post" id="user_form">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Add User</h4>
</div>
<div class="modal-body">
<label>Enter Tournament Name</label>
<input type="text" name="tname" id="tname" class="form-control" />
<span id="tname_error" class="text-danger"></span>
<br />
<label>Enter Tournament Entry Fee</label>
<input type="text" name="entry_fee" id="entry_fee" class="form-control" />
<span id="entry_fee_error" class="text-danger"></span>
<br />
<label>Enter Tournament Start Date</label>
<input type="date" name="start_date" id="start_date" class="form-control" />
<span id="start_date_error" class="text-danger"></span>
<br />
<label>Enter Tournament End Date</label>
<input type="date" name="end_date" id="end_date" class="form-control" />
<span id="end_date_error" class="text-danger"></span>
<br />
<label>Enter Tournament Win Amount</label>
<input type="text" name="win_amount" id="win_amount" class="form-control" />
<span id="win_amount_error" class="text-danger"></span>
<br />
<label>Enter Tournament Time Slot</label>
<?php
// Assuming you have fetched data from 'tbl_time_slot' and stored it in $time_slots
$time_slots = $this->db->get('tbl_time_slot')->result_array();
?>
<select class="form-select mb-3" name="time_slot" aria-label="Default select example">
<option selected>Select Time Slot</option>
<?php foreach ($time_slots as $time_slot) { ?>
<option value="<?php echo $time_slot['id']; ?>"><?php echo $time_slot['time_slot']; ?></option>
<?php } ?>
</select>
<div class="mb-3 col-md-6 form-group">
<label class="form-label">Round</label>
<div class="input-group">
<input type="text" class="form-control" name="round[]" placeholder=""
required="" value="">
<button type="button" id="btnAdd1" class="btn btn-sm btn-primary"><i
class="ri-add-line"></i>Add Round</button>
</div>
</div>
<!-- <label for="rounds">Number of Rounds:</label>
<input type="number" id="round" name="round[]" min="1" required>-->
<div id="TextBoxContainer1"></div>
<span id="entry_fee_error" class="text-danger"></span>
<br />
</div>
<div class="modal-footer">
<input type="hidden" name="tid" id="user_id" />
<input type="hidden" name="data_action" id="data_action" value="Insert" />
<input type="submit" name="action" id="action" class="btn btn-success" value="Add" />
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</form>
</div>
</div>
<script type="text/javascript" language="javascript" >
$(document).ready(function(){
function fetch_data()
{
$.ajax({
url:"<?php echo base_url(); ?>test_api/action",
method:"POST",
data:{data_action:'fetch_all'},
success:function(data)
{
$('tbody').html(data);
}
});
}
fetch_data();
$('#add_button').click(function(){
$('#user_form')[0].reset();
$('.modal-title').text("Add User");
$('#action').val('Add');
$('#data_action').val("Insert");
$('#userModal').modal('show');
});
$(document).on('submit', '#user_form', function(event){
event.preventDefault();
var formData = new FormData(this);
// Log form data to console for debugging
for (var pair of formData.entries()) {
console.log(pair[0] + ', ' + pair[1]);
}
$.ajax({
url:"<?php echo base_url() . 'test_api/action' ?>",
method:"POST",
data:$(this).serialize(),
dataType:"json",
success:function(data)
{
if(data.success)
{
$('#user_form')[0].reset();
$('#userModal').modal('hide');
fetch_data();
if($('#data_action').val() == "Insert")
{
$('#success_message').html('<div class="alert alert-success">Data Inserted</div>');
}
}
if(data.error)
{
$('#first_name_error').html(data.first_name_error);
$('#last_name_error').html(data.last_name_error);
}
}
})
});
$(document).on('click', '.edit', function(){
var user_id = $(this).attr('id');
$.ajax({
url: "<?php echo base_url(); ?>test_api/action",
method: "POST",
data: { tid: user_id, data_action: 'fetch_single' },
dataType: "json",
success: function(data) {
if (data.success) {
$('#tname').val(data.data.tname);
$('#entry_fee').val(data.data.entry_fee);
$('#start_date').val(data.data.start_date);
$('#end_date').val(data.data.end_date);
$('#win_amount').val(data.data.win_amount);
$('#time_slot').val(data.data.time_slot);
$('.modal-title').text('Edit User');
$('#user_id').val(user_id);
$('#action').val('Edit');
$('#data_action').val('Edit');
$('#userModal').modal('show');
} else {
console.log("Error: " + data.message);
}
}
});
});
$(document).on('click', '.round', function(){
var user_id = $(this).attr('tid');
$.ajax({
url: "<?php echo base_url(); ?>test_api/action",
method: "POST",
data: { tid: user_id, data_action: 'fetch_single' },
dataType: "json",
success: function(data) {
if (data.success) {
$('#tname').val(data.data.tname);
$('#entry_fee').val(data.data.entry_fee);
$('#start_date').val(data.data.start_date);
$('#end_date').val(data.data.end_date);
$('#win_amount').val(data.data.win_amount);
$('#time_slot').val(data.data.time_slot);
$('.modal-title').text('Edit User');
$('#user_id').val(user_id);
$('#action').val('Edit');
$('#data_action').val('Edit');
$('#userModal').modal('show');
} else {
console.log("Error: " + data.message);
}
}
});
});
$(document).on('click', '.delete', function(){
var user_id = $(this).attr('id');
if(confirm("Are you sure you want to delete this?"))
{
$.ajax({
url:"<?php echo base_url(); ?>test_api/action",
method:"POST",
data:{user_id:user_id, data_action:'Delete'},
dataType:"JSON",
success:function(data)
{
if(data.success)
{
$('#success_message').html('<div class="alert alert-success">Data Deleted</div>');
fetch_data();
}
}
})
}
});
});
</script>
<script>
$(document).ready(function () {
// Add Round Button
$("#btnAdd1").on("click", function () {
var div = $("<div class='row'/>");
div.html(GetDynamicTextBox(""));
$("#TextBoxContainer1").append(div);
});
// Remove Round Button
$("#TextBoxContainer1").on("click", ".remove", function () {
$(this).closest(".row").remove();
});
// Other existing code...
});
function GetDynamicTextBox(value) {
var uniqueId = Date.now(); // Generate a unique ID
return '<div class="mb-3 col-md-6 form-group">' +
'<label class="form-label">round</label>' +
'<div class="input-group">' +
'<input type="text" class="form-control" name="round[]" placeholder="" required="">' +
'<button type="button" class="remove btn btn-danger btn-sm" data-id="' + uniqueId + '"><i class="ri-close-fill"></i></button>' +
'</div>' +
'</div>';
}
</script>
<script>
$(function() {
$("#btnAdd2").bind("click", function() {
var div = $("<div class=''/>");
div.html(GetDynamicTextBox2(""));
$("#TextBoxContainer2").append(div);
});
$("body").on("click", "#DeleteRow1", function() {
$(this).parents("#row").remove();
})
});
function GetDynamicTextBox2(value) {
// console.log(i);
return ' <div id="row" class="row">' +
'<div class="mb-3 col-md-6 form-group">' +
'<label class="form-label">round</label>' +
'<div class="input-group">' +
'<input type="text" class="form-control" placeholder="" required="">' +
'<button type="button" value="Remove" id="DeleteRow1" class="remove btn btn-danger btn-sm">' +
'<i class="ri-close-fill"></i></button></div></div>'
}
</script>

View File

@ -0,0 +1,8 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
echo "\nERROR: ",
$heading,
"\n\n",
$message,
"\n\n";

View File

@ -0,0 +1,8 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
echo "\nDatabase error: ",
$heading,
"\n\n",
$message,
"\n\n";

View File

@ -0,0 +1,21 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
An uncaught Exception was encountered
Type: <?php echo get_class($exception), "\n"; ?>
Message: <?php echo $message, "\n"; ?>
Filename: <?php echo $exception->getFile(), "\n"; ?>
Line Number: <?php echo $exception->getLine(); ?>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
Backtrace:
<?php foreach ($exception->getTrace() as $error): ?>
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
File: <?php echo $error['file'], "\n"; ?>
Line: <?php echo $error['line'], "\n"; ?>
Function: <?php echo $error['function'], "\n\n"; ?>
<?php endif ?>
<?php endforeach ?>
<?php endif ?>

View File

@ -0,0 +1,8 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
echo "\nERROR: ",
$heading,
"\n\n",
$message,
"\n\n";

View File

@ -0,0 +1,21 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
A PHP Error was encountered
Severity: <?php echo $severity, "\n"; ?>
Message: <?php echo $message, "\n"; ?>
Filename: <?php echo $filepath, "\n"; ?>
Line Number: <?php echo $line; ?>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
Backtrace:
<?php foreach (debug_backtrace() as $error): ?>
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
File: <?php echo $error['file'], "\n"; ?>
Line: <?php echo $error['line'], "\n"; ?>
Function: <?php echo $error['function'], "\n\n"; ?>
<?php endif ?>
<?php endforeach ?>
<?php endif ?>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,64 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>404 Page Not Found</title>
<style type="text/css">
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@ -0,0 +1,64 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Database Error</title>
<style type="text/css">
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@ -0,0 +1,32 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>An uncaught Exception was encountered</h4>
<p>Type: <?php echo get_class($exception); ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $exception->getFile(); ?></p>
<p>Line Number: <?php echo $exception->getLine(); ?></p>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
<p>Backtrace:</p>
<?php foreach ($exception->getTrace() as $error): ?>
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
<p style="margin-left:10px">
File: <?php echo $error['file']; ?><br />
Line: <?php echo $error['line']; ?><br />
Function: <?php echo $error['function']; ?>
</p>
<?php endif ?>
<?php endforeach ?>
<?php endif ?>
</div>

View File

@ -0,0 +1,64 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
<style type="text/css">
::selection { background-color: #E13300; color: white; }
::-moz-selection { background-color: #E13300; color: white; }
body {
background-color: #fff;
margin: 40px;
font: 13px/20px normal Helvetica, Arial, sans-serif;
color: #4F5155;
}
a {
color: #003399;
background-color: transparent;
font-weight: normal;
}
h1 {
color: #444;
background-color: transparent;
border-bottom: 1px solid #D0D0D0;
font-size: 19px;
font-weight: normal;
margin: 0 0 14px 0;
padding: 14px 15px 10px 15px;
}
code {
font-family: Consolas, Monaco, Courier New, Courier, monospace;
font-size: 12px;
background-color: #f9f9f9;
border: 1px solid #D0D0D0;
color: #002166;
display: block;
margin: 14px 0 14px 0;
padding: 12px 10px 12px 10px;
}
#container {
margin: 10px;
border: 1px solid #D0D0D0;
box-shadow: 0 0 8px #D0D0D0;
}
p {
margin: 12px 15px 12px 15px;
}
</style>
</head>
<body>
<div id="container">
<h1><?php echo $heading; ?></h1>
<?php echo $message; ?>
</div>
</body>
</html>

View File

@ -0,0 +1,33 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: <?php echo $severity; ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $filepath; ?></p>
<p>Line Number: <?php echo $line; ?></p>
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
<p>Backtrace:</p>
<?php foreach (debug_backtrace() as $error): ?>
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
<p style="margin-left:10px">
File: <?php echo $error['file'] ?><br />
Line: <?php echo $error['line'] ?><br />
Function: <?php echo $error['function'] ?>
</p>
<?php endif ?>
<?php endforeach ?>
<?php endif ?>
</div>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello world</title>
</head>
<body>
Plase click here for reset your Password <a target="_blank" href="<?php echo $link; ?>">Reset Password</a>
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View File

@ -0,0 +1,389 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Add Country</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('index')?>">Home</a>
</li>
<li class="breadcrumb-item active">Add Country</li>
</ol>
</div>
</div>
</div>
</div>
<?php if ($this->session->flashdata('error')): ?>
<div class="alert alert-danger">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<?php if ($this->session->flashdata('success')): ?>
<div class="alert alert-success">
<?php echo $this->session->flashdata('success'); ?>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Country list</h4>
<div class="flex-shrink-0">
<!-- <div class="form-check form-switch form-switch-right form-switch-md">
<label for="responsive-table-showcode" class="form-label text-muted">Show
Code</label>
<input class="form-check-input code-switcher" type="checkbox"
id="responsive-table-showcode">
</div> -->
<div class="d-flex align-items-center gap-2">
<button data-bs-toggle="modal" data-bs-target="#adddeals"
class="btn btn-success btn-sm"><i
class="ri-add-fill align-bottom me-1"></i>
Add
Country</button>
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
<!-- <div id="example3_filter" class="dataTables_filter" style="float:right;">
<label>
<input id="abc" type="search" placeholder="Search"
class=" form-control search-input form-control-sm mt-2"
aria-controls="example3" data-table="table_list"></label>
</div> -->
</div>
</div><!-- end card header -->
<div class="card-body">
<!-- <p class="text-muted">Use <code>table-responsive</code> class to make any table
responsive across all viewports. Responsive tables allow tables to be scrolled
horizontally with ease.</p> -->
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col">Sr.No.</th>
<th scope="col">Country Flag</th>
<th scope="col">Country Name</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<?php if(!empty($data)) {
$i = 1;
foreach($data as $data) {
?>
<tr>
<td><a href="#" class="fw-medium"><?php echo $i;?></a></td>
<td>
<a href="#" class="d-block">
<img src="<?php echo base_url().$data['country_flag'];?>" alt=""
class="avatar-xs rounded object-cover"
style="height:21px;">
</a>
</td>
<td>
<?php echo $data['country_name'];?>
</td>
<!-- <td>gvg</td> -->
<td>
<div class="">
<button type="button" data-bs-toggle="modal"
data-bs-target="#update_country_<?php echo $data['id'];?>"
class="btn btn-warning btn-xs btn-icon waves-effect waves-light"><i
class="ri-pencil-fill"></i></button>
<button type="button" id="sa-param"
onclick="delete_Data('<?php echo $data['id'];?>')"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
<!-- edit -->
<div class="modal fade " id="update_country_<?php echo $data['id'];?>" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true"
role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-light p-3">
<h5 class="modal-title" id="exampleModalLabel">Update Country</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form method="post" action="<?php echo base_url();?>User_management/edit_country" class="form-sample" enctype='multipart/form-data'>
<input type="hidden" name="id" value="<?php echo $data['id'];?>">
<div class="modal-body">
<div class="mb-3">
<label for="" class="form-label">Country Flag </label>
<input type="file" name="file_e" class="form-control"accept="image/*" >
<input type="hidden" name="photo" value="<?php echo $data['country_flag'];?>">
</div>
<div class="mb-3">
<label for="" class="form-label">Country Name</label>
<input type="text" class="form-control" name="name" value="<?php echo $data['country_name'];?>" required="">
</div>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-light" id="close-modal"
data-bs-dismiss="modal">Close</button> -->
<button type="submit" class="btn btn-success"><i class="ri-add-fill align-bottom me-1"></i>
update</button>
</div>
</form>
</div>
</div>
</div>
<?php $i++;} }?>
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
</p>
<div class="d-flex justify-content-end mt-4">
<?php echo $this->pagination->create_links(); ?>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div><!-- end card -->
</div><!-- end col -->
</div>
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<div class="modal fade " id="adddeals" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true"
role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-light p-3">
<h5 class="modal-title" id="exampleModalLabel">Add Country</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form method="post" action="<?php echo base_url();?>User_management/add_country" class="form-sample" enctype='multipart/form-data'>
<div class="modal-body">
<div class="mb-3">
<label for="" class="form-label">Country Flag </label>
<input type="file" name="file" class="form-control" required="">
</div>
<div class="mb-3">
<label for="" class="form-label">Country Name</label>
<input type="text" class="form-control" name="name" placeholder="" required="">
</div>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-light" id="close-modal"
data-bs-dismiss="modal">Close</button> -->
<button type="submit" class="btn btn-success"><i class="ri-add-fill align-bottom me-1"></i>
Add</button>
</div>
</form>
</div>
</div>
</div>
<?php include 'link/script.php'?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
function delete_Data(idd) {
Swal.fire({
title: "Are you sure?",
text: "You won't be able to revert this!",
icon: "warning",
showCancelButton: !0,
confirmButtonText: "Yes, delete it!",
cancelButtonText: "No, cancel!",
confirmButtonClass: "btn btn-primary w-xs me-2 mt-2",
cancelButtonClass: "btn btn-danger w-xs mt-2",
buttonsStyling: !1,
showCloseButton: !0
}).then(function(t) {
t.value ? Swal.fire(
// ajax
$.ajax({
url: "<?php echo base_url("Dashboard_controller/deleterecords");?>",
type: "POST",
cache: false,
data:{
country_id: idd
},
success: function(dataResult){
//alert(dataResult);
var dataResult = JSON.parse(dataResult);
if(dataResult.statusCode==200){
//$ele.fadeOut().remove();
swal.fire({
title: "Deleted!",
text: "Your file has been deleted.",
icon: "success",
confirmButtonClass: "btn btn-primary w-xs mt-2",
buttonsStyling: !1
});
setTimeout(function(){ location.reload();}, 2000);
}
else {
// swal.fire({
// title: "Cancelled",
// text: "Some Error is Occured :)",
// icon: "error",
// confirmButtonClass: "btn btn-primary mt-2",
// buttonsStyling: !1
// });
}//else
}// success
}),
// ajax
) : t.dismiss === Swal.DismissReason.cancel && Swal.fire({
title: "Cancelled",
text: "Your imaginary file is safe :)",
icon: "error",
confirmButtonClass: "btn btn-primary mt-2",
buttonsStyling: !1
})
})
}
</script>
</body>
</html>

View File

View File

@ -0,0 +1,389 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Add Language</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('index')?>">Home</a>
</li>
<li class="breadcrumb-item active">Add Language</li>
</ol>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<?php if ($this->session->flashdata('error')): ?>
<div class="alert alert-danger">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<?php if ($this->session->flashdata('success')): ?>
<div class="alert alert-success">
<?php echo $this->session->flashdata('success'); ?>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Language list</h4>
<div class="flex-shrink-0">
<!-- <div class="form-check form-switch form-switch-right form-switch-md">
<label for="responsive-table-showcode" class="form-label text-muted">Show
Code</label>
<input class="form-check-input code-switcher" type="checkbox"
id="responsive-table-showcode">
</div> -->
<div class="d-flex align-items-center gap-2">
<button data-bs-toggle="modal" data-bs-target="#adddeals"
class="btn btn-success btn-sm"><i
class="ri-add-fill align-bottom me-1"></i>
Add
Language</button>
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
<!-- <div id="example3_filter" class="dataTables_filter" style="float:right;">
<label>
<input id="abc" type="search" placeholder="Search"
class=" form-control search-input form-control-sm mt-2"
aria-controls="example3" data-table="table_list"></label>
</div> -->
</div>
</div><!-- end card header -->
<div class="card-body">
<!-- <p class="text-muted">Use <code>table-responsive</code> class to make any table
responsive across all viewports. Responsive tables allow tables to be scrolled
horizontally with ease.</p> -->
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col">Sr.No.</th>
<th scope="col">Language Name</th>
<th scope="col">Status</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<?php
if(!empty($data)) {
$i=1;
foreach($data as $data) {
?>
<tr>
<td><a href="#" class="fw-medium"><?php echo $i;?></a></td>
<td>
<?php echo $data['name'];?>
</td>
<td>
<div
class=" form-switch form-switch-custom form-switch-warning ">
<input class="form-check-input" type="checkbox"
role="switch" id="SwitchCheck12" checked="">
<label class="form-check-label"
for="SwitchCheck12"></label>
</div>
</td>
<!-- <td>gvg</td> -->
<td>
<div class="">
<button type="button" data-bs-toggle="modal"
data-bs-target="#update_lang_<?php echo $data['id'];?>"
class="btn btn-warning btn-xs btn-icon waves-effect waves-light"><i
class="ri-pencil-fill"></i></button>
<a href="#" id="5" onclick="delete_Data('<?php echo $data['id'];?>')"><button
type="button"
class="btn btn-icon btn-danger sweet-multiple"><i
class="ri-delete-bin-5-line"></i></button></a>
<!-- <button type="button" id="custom-sa-warning"
onclick="delete_Data(this)"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button> -->
</div>
</td>
</tr>
<!-- edit -->
<div class="modal fade " id="update_lang_<?php echo $data['id'];?>" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true"
role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-light p-3">
<h5 class="modal-title" id="exampleModalLabel">Update Language</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form method="post" action="<?php echo base_url();?>User_management/edit_lang" enctype='multipart/form-data'>
<div class="modal-body">
<input type="hidden" name="id" value="<?php echo $data['id']; ?>">
<div class="mb-3">
<label for="" class="form-label">Language Name</label>
<input type="text" class="form-control" name="lang" value="<?php echo $data['name']; ?>" placeholder="" required="">
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-success">
Update</button>
</div>
</form>
</div>
</div>
</div>
<?php $i++; } } ?>
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
</p>
<div class="d-flex justify-content-end mt-4">
<?php echo $this->pagination->create_links(); ?>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div><!-- end card -->
</div><!-- end col -->
</div>
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<div class="modal fade " id="adddeals" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true"
role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-light p-3">
<h5 class="modal-title" id="exampleModalLabel">Add Language</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form method="post" action="<?php echo base_url();?>User_management/insert_lang" enctype='multipart/form-data'>
<div class="modal-body">
<div class="mb-3">
<label for="" class="form-label">Language Name</label>
<input type="text" class="form-control" name="lang" placeholder="" required="">
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-success"><i class="ri-add-fill align-bottom me-1"></i>
Add</button>
</div>
</form>
</div>
</div>
</div>
<?php include 'link/script.php'?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
function delete_Data(idd) {
Swal.fire({
title: "Are you sure?",
text: "You won't be able to revert this!",
icon: "warning",
showCancelButton: !0,
confirmButtonText: "Yes, delete it!",
cancelButtonText: "No, cancel!",
confirmButtonClass: "btn btn-primary w-xs me-2 mt-2",
cancelButtonClass: "btn btn-danger w-xs mt-2",
buttonsStyling: !1,
showCloseButton: !0
}).then(function(t) {
t.value ? Swal.fire(
// ajax
$.ajax({
url: "<?php echo base_url("Dashboard_controller/deleterecords");?>",
type: "POST",
cache: false,
data:{
lang_id: idd
},
success: function(dataResult){
//alert(dataResult);
var dataResult = JSON.parse(dataResult);
if(dataResult.statusCode==200){
//$ele.fadeOut().remove();
swal.fire({
title: "Deleted!",
text: "Your file has been deleted.",
icon: "success",
confirmButtonClass: "btn btn-primary w-xs mt-2",
buttonsStyling: !1
});
setTimeout(function(){ location.reload();}, 2000);
}
else {
// swal.fire({
// title: "Cancelled",
// text: "Some Error is Occured :)",
// icon: "error",
// confirmButtonClass: "btn btn-primary mt-2",
// buttonsStyling: !1
// });
}//else
}// success
}),
// ajax
) : t.dismiss === Swal.DismissReason.cancel && Swal.fire({
title: "Cancelled",
text: "Your imaginary file is safe :)",
icon: "error",
confirmButtonClass: "btn btn-primary mt-2",
buttonsStyling: !1
})
})
}
</script>
</body>
</html>

View File

@ -0,0 +1,838 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Tournament Round</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('index')?>">Home</a>
</li>
<li class="breadcrumb-item active">Tournamnet Round</li>
</ol>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h6>Hourly Bullet Arena</h6>
<!-- Nav tabs -->
<ul class="nav nav-pills nav-success mb-3 mt-3" role="tablist">
<li class="nav-item waves-effect waves-light" role="presentation">
<a class="nav-link active" data-bs-toggle="tab" href="#home-1" role="tab"
aria-selected="true">1st Round</a>
</li>
<li class="nav-item waves-effect waves-light" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#profile-1" role="tab"
aria-selected="false" tabindex="-1">2nd Round</a>
</li>
<li class="nav-item waves-effect waves-light" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#messages-1" role="tab"
aria-selected="false" tabindex="-1">3rd Round</a>
</li>
<li class="nav-item waves-effect waves-light" role="presentation">
<a class="nav-link" data-bs-toggle="tab" href="#settings-1" role="tab"
aria-selected="false" tabindex="-1">Final</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content text-muted">
<div class="tab-pane active" id="home-1" role="tabpanel">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">First Round Players</h4>
<div class="flex-shrink-0">
<div class="search-box">
<input type="search"
class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
</div><!-- end card header -->
<div class="card-body">
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col" style="width: 46px;">
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck">
<label class="form-check-label"
for="cardtableCheck"></label>
</div>
</th>
<th scope="col">Sr.No.</th>
<th scope="col">Profile</th>
<th scope="col">User Name</th>
<th scope="col">Email Id</th>
<th scope="col">Country</th>
<th scope="col">Rating</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">1</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India
</td>
<td>980</td>
<td>
<div class="">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button" id="custom-sa-warning"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">2</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>US</td>
<td>880</td>
<td>
<div class=" ">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
<p id="table_list" class="text-warning">No matching records
found
</p>
<div class="d-flex justify-content-end mt-4">
<div class="pagination-wrap hstack gap-2"
style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2"
data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next"
href="javascrpit:void(0)">
Next
</a>
</div>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div>
</div>
<div class="tab-pane" id="profile-1" role="tabpanel">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Second Round Player</h4>
<div class="flex-shrink-0">
<div class="search-box">
<input type="search"
class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
</div><!-- end card header -->
<div class="card-body">
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col" style="width: 46px;">
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck">
<label class="form-check-label"
for="cardtableCheck"></label>
</div>
</th>
<th scope="col">Sr.No.</th>
<th scope="col">Profile</th>
<th scope="col">User Name</th>
<th scope="col">Email Id</th>
<th scope="col">Country</th>
<th scope="col">Rating</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">1</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India
</td>
<td>700</td>
<td>
<div class="">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button" id="custom-sa-warning"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">2</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India</td>
<td>790</td>
<td>
<div class=" ">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
<p id="table_list" class="text-warning">No matching records
found
</p>
<div class="d-flex justify-content-end mt-4">
<div class="pagination-wrap hstack gap-2"
style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2"
data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next"
href="javascrpit:void(0)">
Next
</a>
</div>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div>
</div>
<div class="tab-pane" id="messages-1" role="tabpanel">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Third Round Player</h4>
<div class="flex-shrink-0">
<div class="search-box">
<input type="search"
class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
</div><!-- end card header -->
<div class="card-body">
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col" style="width: 46px;">
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck">
<label class="form-check-label"
for="cardtableCheck"></label>
</div>
</th>
<th scope="col">Sr.No.</th>
<th scope="col">Profile</th>
<th scope="col">User Name</th>
<th scope="col">Email Id</th>
<th scope="col">Country</th>
<th scope="col">Rating</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">1</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India
</td>
<td>680</td>
<td>
<div class="">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button" id="custom-sa-warning"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">2</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India</td>
<td>768</td>
<td>
<div class=" ">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
<p id="table_list" class="text-warning">No matching records
found
</p>
<div class="d-flex justify-content-end mt-4">
<div class="pagination-wrap hstack gap-2"
style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2"
data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next"
href="javascrpit:void(0)">
Next
</a>
</div>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div>
</div>
<div class="tab-pane" id="settings-1" role="tabpanel">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Final Round Player</h4>
<div class="flex-shrink-0">
<div class="search-box">
<input type="search"
class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
</div><!-- end card header -->
<div class="card-body">
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col" style="width: 46px;">
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck">
<label class="form-check-label"
for="cardtableCheck"></label>
</div>
</th>
<th scope="col">Sr.No.</th>
<th scope="col">Profile</th>
<th scope="col">User Name</th>
<th scope="col">Email Id</th>
<th scope="col">Country</th>
<th scope="col">Rating</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">1</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India
</td>
<td>789</td>
<td>
<div class="">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button" id="custom-sa-warning"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox"
value="" id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">2</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India</td>
<td>888</td>
<td>
<div class=" ">
<a
href="http://localhost/Chess_Admin/view_user"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
<p id="table_list" class="text-warning">No matching records
found
</p>
<div class="d-flex justify-content-end mt-4">
<div class="pagination-wrap hstack gap-2"
style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2"
data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next"
href="javascrpit:void(0)">
Next
</a>
</div>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div>
</div>
</div>
</div><!-- end card-body -->
</div>
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<?php include 'link/script.php'?>
</body>
</html>

View File

@ -0,0 +1,195 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== --
<--?php include 'common_file/sidebar.php'?>-->
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
</div>
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Tournament Management</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('dashboard')?>">Home</a>
</li>
<li class="breadcrumb-item active">Tournament Management</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<?php if ($this->session->flashdata('error')): ?>
<div class="alert alert-danger">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<?php if ($this->session->flashdata('success')): ?>
<div class="alert alert-success">
<?php echo $this->session->flashdata('success'); ?>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Tournament Management</h4>
<div class="flex-shrink-0">
<!-- <div class="form-check form-switch form-switch-right form-switch-md">
<label for="responsive-table-showcode" class="form-label text-muted">Show
Code</label>
<input class="form-check-input code-switcher" type="checkbox"
id="responsive-table-showcode">
</div> -->
<div class="d-flex align-items-center gap-2">
<button data-bs-toggle="modal" data-bs-target="#adddeals"
class="btn btn-primary btn-sm"><i
class="ri-add-fill align-bottom me-1"></i>
Add
Tournament</button>
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
<!-- <div id="example3_filter" class="dataTables_filter" style="float:right;">
<label>
<input id="abc" type="search" placeholder="Search"
class=" form-control search-input form-control-sm mt-2"
aria-controls="example3" data-table="table_list"></label>
</div> -->
</div>
</div><!-- end card header -->
<div class="card-body">
<!-- <p class="text-muted">Use <code>table-responsive</code> class to make any table
responsive across all viewports. Responsive tables allow tables to be scrolled
horizontally with ease.</p> -->
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col">Sr.No.</th>
<th scope="col">Tournament Name</th>
<th scope="col">Entry Fee</th>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
<th scope="col">Win Amount</th>
<th scope="col">Time Slot</th>
<th scope="col">Participants</th>
<th scope="col">Round</th>
<!-- <th scope="col">Participants</th> -->
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" id="close-modal"
data-bs-dismiss="modal">Close</button>
<!-- <button type="submit" class="btn btn-success">
Update</button> -->
</div>
</form>
</div>
</div>
</div>
<!---
update tournament form
-->
<!-- application/views/update_tournament.php -->
<!-- Your previous HTML content -->
<!-- Edit Form Modal -->
<!--<div class="modal fade" id="edittournament_<--?php echo $i; ?>" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true" role="dialog">-->
<!-- update tournament update end-->
<!-- edit -->
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
</p>
<div class="d-flex justify-content-end mt-4">
<?php echo $this->pagination->create_links(); ?>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div><!-- end card -->
</div><!-- end col -->
</div>
</div>
</div>

View File

@ -0,0 +1,271 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Choose Player</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('dashboard')?>">Home</a>
</li>
<li class="breadcrumb-item active">Choose Player</li>
</ol>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Choose Player</h4>
<div class="flex-shrink-0">
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div>
</div><!-- end card header -->
<div class="card-body">
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col" style="width: 46px;">
<div class="form-check">
<input class="form-check-input" type="checkbox" value=""
id="cardtableCheck">
<label class="form-check-label"
for="cardtableCheck"></label>
</div>
</th>
<th scope="col">Sr.No.</th>
<th scope="col">Profile</th>
<th scope="col">User Name</th>
<th scope="col">Email Id</th>
<th scope="col">Country</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox" value=""
id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">1</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
class="avatar-xs rounded-circle" title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India
</td>
<td>
<div class="">
<a href="<?php echo base_url('view_user/')?>"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button" id="custom-sa-warning"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-check">
<input class="form-check-input" type="checkbox" value=""
id="cardtableCheck01">
<label class="form-check-label"
for="cardtableCheck01"></label>
</div>
</td>
<td><a href="#" class="fw-medium">2</a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="assets/images/users/avatar-4.jpg"
class="avatar-xs rounded-circle" title="">
<img class="avatar-xs rounded-circle "
src="assets/images/users/avatar-4.jpg"
alt="">
</a>
</div>
</div>
</td>
<td>Harshada Gaware</td>
<td>harshada@gmail.com</td>
<td>India</td>
<td>
<div class=" ">
<a href="<?php echo base_url('view_user')?>"><button
type="button"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button></a>
<button type="button"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</td>
</tr>
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
</p>
<div class="d-flex justify-content-end mt-4">
<div class="pagination-wrap hstack gap-2" style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2" data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next" href="javascrpit:void(0)">
Next
</a>
</div>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div><!-- end card -->
</div><!-- end col -->
</div>
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<?php include 'link/script.php'?>
</body>
</html>

View File

@ -0,0 +1,452 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Client Testimonial</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('dashboard')?>">Home</a>
</li>
<li class="breadcrumb-item active">Client Testimonial</li>
</ol>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<?php if ($this->session->flashdata('error')): ?>
<div class="alert alert-danger">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<?php if ($this->session->flashdata('success')): ?>
<div class="alert alert-success">
<?php echo $this->session->flashdata('success'); ?>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Client Testimonial</h4>
<div class="flex-shrink-0">
<!-- <div class="form-check form-switch form-switch-right form-switch-md">
<label for="responsive-table-showcode" class="form-label text-muted">Show
Code</label>
<input class="form-check-input code-switcher" type="checkbox"
id="responsive-table-showcode">
</div> -->
<div class="d-flex align-items-center gap-2">
<button data-bs-toggle="modal" data-bs-target="#adddeals"
class="btn btn-success btn-sm"><i
class="ri-add-fill align-bottom me-1"></i>
Add
Testimonial</button>
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
<!-- <div id="example3_filter" class="dataTables_filter" style="float:right;">
<label>
<input id="abc" type="search" placeholder="Search"
class=" form-control search-input form-control-sm mt-2"
aria-controls="example3" data-table="table_list"></label>
</div> -->
</div>
</div><!-- end card header -->
</div>
<div class="card-body">
<!-- <p class="text-muted">Use <code>table-responsive</code> class to make any table
responsive across all viewports. Responsive tables allow tables to be scrolled
horizontally with ease.</p> -->
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col">Sr.No.</th>
<th scope="col">Client Image</th>
<th scope="col">Client Name</th>
<th scope="col">Message</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<?php
if(!empty($data)) {
$i=1;
foreach($data as $data) {
?>
<tr>
<td><a href="#" class="fw-medium"><?php echo $i;?></a></td>
<td>
<div class="">
<div class="">
<a class="image-popup"
href="<?php echo base_url().$data['image'];?>"
title="">
<img class="avatar-xs rounded-circle"
src="<?php echo base_url().$data['image'];?>"
alt="">
</a>
</div>
</div>
</td>
<td><?php echo $data['name'];?></td>
<td>
<button type="button" data-bs-toggle="modal"
data-bs-target="#view<?php echo $data['id'];?>"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button>
</td>
</td>
<td>
<div class="">
<button type="button" data-bs-toggle="modal"
data-bs-target="#edittournament"
class="btn btn-warning btn-xs btn-icon waves-effect waves-light"><i
class="ri-pencil-fill"></i></button>
<button type="button" id="sa-param"
onclick="delete_Data('<?php echo $data['id'];?>')"
class="btn btn-danger btn-icon waves-effect waves-light"><i
class="ri-delete-bin-5-line"></i></button>
</div>
</tr>
<div id="view<?php echo $data['id'];?>" class="modal fade fadeInLeft " tabindex="-1" aria-labelledby="fadeInleftModalLabel"
aria-modal="true" role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="fadeInleftModalLabel">Subject</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<?php echo $data['message']; ?>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary ">Save Changes</button> -->
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
<div class="modal fade " id="edittournament" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true"
role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-light p-3">
<h5 class="modal-title" id="exampleModalLabel">Update Client Testimonials</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form class="form-sample" method="post" action="<?php echo base_url();?>edit_testi" enctype="multipart/form-data">
<input type="hidden" name="id" value="<?php echo $data['id']; ?>">
<div class="modal-body">
<div class="mb-3">
<label for="dealTitle" class="form-label">Client Image </label>
<input type="file" name="file_e" class="form-control" accept="image/*">
<input type="hidden" name="photo" value="<?php echo $data['image'];?>">
<image src="<?php echo base_url().$data['image'];?>">
</div>
<div class="mb-3">
<label for="dealValue" class="form-label">Client Name</label>
<input type="text" name="name" class="form-control" value="<?php echo $data['name'];?>" placeholder="" required="">
</div>
<div class="mb-3">
<label for="date" class="form-label">Message</label>
<textarea name="message" class="summernote" cols="" rows="2"><?php echo $data['message'];?></textarea>
</div>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-light" id="close-modal"
data-bs-dismiss="modal">Close</button> -->
<button type="submit" class="btn btn-success"><i class="ri-add-fill align-bottom me-1"></i>
Add</button>
</div>
</form>
</div>
</div>
</div>
<?php $i++; } } ?>
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
</p>
<div class="d-flex justify-content-end mt-4">
<!-- <div class="pagination-wrap hstack gap-2" style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2" data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next" href="javascrpit:void(0)">
Next
</a>
</div> -->
<?php echo $this->pagination->create_links(); ?>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div><!-- end card -->
</div><!-- end col -->
</div>
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<div class="modal fade " id="adddeals" tabindex="-1" aria-labelledby="exampleModalLabel" aria-modal="true"
role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header bg-light p-3">
<h5 class="modal-title" id="exampleModalLabel">Add Client Testimonial</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form method="post" action="<?php echo base_url();?>add_testi" class="form-sample" enctype='multipart/form-data'>
<div class="modal-body">
<div class="mb-3">
<label for="dealTitle" class="form-label">Client Image </label>
<input type="file" name="file" class="form-control" accept="image/*">
</div>
<div class="mb-3">
<label for="dealValue" class="form-label">Client Name</label>
<input type="text" name="name" class="form-control" placeholder="" required="">
</div>
<div class="mb-3">
<label for="date" class="form-label">Message</label>
<textarea class="summernote" name="message" cols="" rows="2"></textarea>
</div>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-light" id="close-modal"
data-bs-dismiss="modal">Close</button> -->
<button type="submit" class="btn btn-success"><i class="ri-add-fill align-bottom me-1"></i>
Add</button>
</div>
</form>
</div>
</div>
</div>
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<?php include 'link/script.php'?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
function delete_Data(idd) {
Swal.fire({
title: "Are you sure?",
text: "You won't be able to revert this!",
icon: "warning",
showCancelButton: !0,
confirmButtonText: "Yes, delete it!",
cancelButtonText: "No, cancel!",
confirmButtonClass: "btn btn-primary w-xs me-2 mt-2",
cancelButtonClass: "btn btn-danger w-xs mt-2",
buttonsStyling: !1,
showCloseButton: !0
}).then(function(t) {
t.value ? Swal.fire(
// ajax
$.ajax({
url: "<?php echo base_url("Dashboard_controller/deleterecords");?>",
type: "POST",
cache: false,
data:{
testi_id: idd
},
success: function(dataResult){
//alert(dataResult);
var dataResult = JSON.parse(dataResult);
if(dataResult.statusCode==200){
//$ele.fadeOut().remove();
swal.fire({
title: "Deleted!",
text: "Your file has been deleted.",
icon: "success",
confirmButtonClass: "btn btn-primary w-xs mt-2",
buttonsStyling: !1
});
setTimeout(function(){ location.reload();}, 2000);
}
else {
// swal.fire({
// title: "Cancelled",
// text: "Some Error is Occured :)",
// icon: "error",
// confirmButtonClass: "btn btn-primary mt-2",
// buttonsStyling: !1
// });
}//else
}// success
}),
// ajax
) : t.dismiss === Swal.DismissReason.cancel && Swal.fire({
title: "Cancelled",
text: "Your imaginary file is safe :)",
icon: "error",
confirmButtonClass: "btn btn-primary mt-2",
buttonsStyling: !1
})
})
}
</script>
</body>
</html>

View File

@ -0,0 +1,32 @@
<!-- <div class="offcanvas-footer border-top p-3 text-center">
<div class="row">
<div class="col-6">
<button type="button" class="btn btn-light w-100" id="reset-layout">Reset</button>
</div>
<div class="col-6">
<a href="https://1.envato.market/velzon-admin" target="_blank" class="btn btn-primary w-100">Buy
Now</a>
</div>
</div>
</div> -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<p class="text-black">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</p>
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block text-black">
Design & Develop by Appzia Technologies
</div>
</div>
</div>
</div>
</footer>

View File

@ -0,0 +1,840 @@
<header id="page-topbar">
<div class="layout-width">
<div class="navbar-header">
<div class="d-flex">
<!-- LOGO -->
<div class="navbar-brand-box horizontal-logo">
<a href="index-2.html" class="logo logo-dark">
<span class="logo-sm">
<img src="assets/images/chess_logo1.png" alt="" height="22">
</span>
<span class="logo-lg">
<img src="assets/images/chess_logo1.png" alt="" height="17">
</span>
</a>
<a href="index-2.html" class="logo logo-light">
<span class="logo-sm">
<img src="assets/images/chess_logo1.png" alt="" height="22">
</span>
<span class="logo-lg">
<img src="assets/images/chess_logo1.png" alt="" height="17">
</span>
</a>
</div>
<button type="button" class="btn btn-sm px-3 fs-16 header-item vertical-menu-btn topnav-hamburger"
id="topnav-hamburger-icon">
<span class="hamburger-icon">
<span></span>
<span></span>
<span></span>
</span>
</button>
<!-- App Search-->
<form class="app-search d-none d-md-block">
<!-- <div class="position-relative">
<input type="text" class="form-control" placeholder="Search..." autocomplete="off"
id="search-options" value="">
<span class="mdi mdi-magnify search-widget-icon"></span>
<span class="mdi mdi-close-circle search-widget-icon search-widget-icon-close d-none"
id="search-close-options"></span>
</div> -->
<div class="dropdown-menu dropdown-menu-lg" id="search-dropdown">
<div data-simplebar style="max-height: 320px;">
<!-- item-->
<div class="dropdown-header">
<h6 class="text-overflow text-muted mb-0 text-uppercase">Recent Searches</h6>
</div>
<div class="dropdown-item bg-transparent text-wrap">
<a href="index-2.html" class="btn btn-soft-secondary btn-sm btn-rounded">how to
setup <i class="mdi mdi-magnify ms-1"></i></a>
<a href="index-2.html" class="btn btn-soft-secondary btn-sm btn-rounded">buttons
<i class="mdi mdi-magnify ms-1"></i></a>
</div>
<!-- item-->
<div class="dropdown-header mt-2">
<h6 class="text-overflow text-muted mb-1 text-uppercase">Pages</h6>
</div>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item">
<i class="ri-bubble-chart-line align-middle fs-18 text-muted me-2"></i>
<span>Analytics Dashboard</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item">
<i class="ri-lifebuoy-line align-middle fs-18 text-muted me-2"></i>
<span>Help Center</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item">
<i class="ri-user-settings-line align-middle fs-18 text-muted me-2"></i>
<span>My account settings</span>
</a>
<!-- item-->
<div class="dropdown-header mt-2">
<h6 class="text-overflow text-muted mb-2 text-uppercase">Members</h6>
</div>
<div class="notification-list">
<!-- item -->
<a href="javascript:void(0);" class="dropdown-item notify-item py-2">
<div class="d-flex">
<img src="assets/images/users/avatar-2.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<h6 class="m-0">Angela Bernier</h6>
<span class="fs-11 mb-0 text-muted">Manager</span>
</div>
</div>
</a>
<!-- item -->
<a href="javascript:void(0);" class="dropdown-item notify-item py-2">
<div class="d-flex">
<img src="assets/images/users/avatar-3.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<h6 class="m-0">David Grasso</h6>
<span class="fs-11 mb-0 text-muted">Web Designer</span>
</div>
</div>
</a>
<!-- item -->
<a href="javascript:void(0);" class="dropdown-item notify-item py-2">
<div class="d-flex">
<img src="assets/images/users/avatar-5.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<h6 class="m-0">Mike Bunch</h6>
<span class="fs-11 mb-0 text-muted">React Developer</span>
</div>
</div>
</a>
</div>
</div>
<div class="text-center pt-3 pb-1">
<a href="pages-search-results.html" class="btn btn-primary btn-sm">View All Results
<i class="ri-arrow-right-line ms-1"></i></a>
</div>
</div>
</form>
</div>
<div class="d-flex align-items-center">
<div class="dropdown d-md-none topbar-head-dropdown header-item">
<button type="button" class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle"
id="page-header-search-dropdown" data-bs-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<i class="bx bx-search fs-22"></i>
</button>
<div class="dropdown-menu dropdown-menu-lg dropdown-menu-end p-0"
aria-labelledby="page-header-search-dropdown">
<form class="p-3">
<div class="form-group m-0">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search ..."
aria-label="Recipient's username">
<button class="btn btn-primary" type="submit"><i
class="mdi mdi-magnify"></i></button>
</div>
</div>
</form>
</div>
</div>
<div class="dropdown ms-1 topbar-head-dropdown header-item">
<button type="button" class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img id="header-lang-img" src="<?php echo base_url()?>assets/images/flags/us.svg" alt="Header Language" height="20"
class="rounded">
</button>
<div class="dropdown-menu dropdown-menu-end">
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language py-2" data-lang="en"
title="English">
<img src="<?php echo base_url()?>assets/images/flags/us.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">English</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="sp"
title="Spanish">
<img src="<?php echo base_url()?>assets/images/flags/spain.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">Española</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="gr"
title="German">
<img src="<?php echo base_url()?>assets/images/flags/germany.svg" alt="user-image" class="me-2 rounded"
height="18"> <span class="align-middle">Deutsche</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="it"
title="Italian">
<img src="<?php echo base_url()?>assets/images/flags/italy.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">Italiana</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="ru"
title="Russian">
<img src="<?php echo base_url()?>assets/images/flags/russia.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">русский</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="ch"
title="Chinese">
<img src="<?php echo base_url()?>assets/images/flags/china.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">中国人</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="fr"
title="French">
<img src="<?php echo base_url()?>assets/images/flags/french.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">français</span>
</a>
<!-- item-->
<a href="javascript:void(0);" class="dropdown-item notify-item language" data-lang="ar"
title="Arabic">
<img src="<?php echo base_url()?>assets/images/flags/ae.svg" alt="user-image" class="me-2 rounded" height="18">
<span class="align-middle">Arabic</span>
</a>
</div>
</div>
<!-- <div class="dropdown topbar-head-dropdown ms-1 header-item">
<button type="button" class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class='bx bx-category-alt fs-22'></i>
</button>
<div class="dropdown-menu dropdown-menu-lg p-0 dropdown-menu-end">
<div class="p-3 border-top-0 border-start-0 border-end-0 border-dashed border">
<div class="row align-items-center">
<div class="col">
<h6 class="m-0 fw-semibold fs-15"> Web Apps </h6>
</div>
<div class="col-auto">
<a href="#!" class="btn btn-sm btn-soft-info"> View All Apps
<i class="ri-arrow-right-s-line align-middle"></i></a>
</div>
</div>
</div>
<div class="p-2">
<div class="row g-0">
<div class="col">
<a class="dropdown-icon-item" href="#!">
<img src="assets/images/brands/github.png" alt="Github">
<span>GitHub</span>
</a>
</div>
<div class="col">
<a class="dropdown-icon-item" href="#!">
<img src="assets/images/brands/bitbucket.png" alt="bitbucket">
<span>Bitbucket</span>
</a>
</div>
<div class="col">
<a class="dropdown-icon-item" href="#!">
<img src="assets/images/brands/dribbble.png" alt="dribbble">
<span>Dribbble</span>
</a>
</div>
</div>
<div class="row g-0">
<div class="col">
<a class="dropdown-icon-item" href="#!">
<img src="assets/images/brands/dropbox.png" alt="dropbox">
<span>Dropbox</span>
</a>
</div>
<div class="col">
<a class="dropdown-icon-item" href="#!">
<img src="assets/images/brands/mail_chimp.png" alt="mail_chimp">
<span>Mail Chimp</span>
</a>
</div>
<div class="col">
<a class="dropdown-icon-item" href="#!">
<img src="assets/images/brands/slack.png" alt="slack">
<span>Slack</span>
</a>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="dropdown topbar-head-dropdown ms-1 header-item">
<button type="button" class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle"
id="page-header-cart-dropdown" data-bs-toggle="dropdown" data-bs-auto-close="outside"
aria-haspopup="true" aria-expanded="false">
<i class='bx bx-shopping-bag fs-22'></i>
<span
class="position-absolute topbar-badge cartitem-badge fs-10 translate-middle badge rounded-pill bg-info">5</span>
</button>
<div class="dropdown-menu dropdown-menu-xl dropdown-menu-end p-0 dropdown-menu-cart"
aria-labelledby="page-header-cart-dropdown">
<div class="p-3 border-top-0 border-start-0 border-end-0 border-dashed border">
<div class="row align-items-center">
<div class="col">
<h6 class="m-0 fs-16 fw-semibold"> My Cart</h6>
</div>
<div class="col-auto">
<span class="badge badge-soft-warning fs-13"><span class="cartitem-badge">7</span>
items</span>
</div>
</div>
</div>
<div data-simplebar style="max-height: 300px;">
<div class="p-2">
<div class="text-center empty-cart" id="empty-cart">
<div class="avatar-md mx-auto my-3">
<div class="avatar-title bg-soft-info text-info fs-36 rounded-circle">
<i class='bx bx-cart'></i>
</div>
</div>
<h5 class="mb-3">Your Cart is Empty!</h5>
<a href="apps-ecommerce-products.html" class="btn btn-success w-md mb-3">Shop
Now</a>
</div>
<div class="d-block dropdown-item dropdown-item-cart text-wrap px-3 py-2">
<div class="d-flex align-items-center">
<img src="assets/images/products/img-1.png"
class="me-3 rounded-circle avatar-sm p-2 bg-light" alt="user-pic">
<div class="flex-1">
<h6 class="mt-0 mb-1 fs-14">
<a href="apps-ecommerce-product-details.html" class="text-reset">Branded
T-Shirts</a>
</h6>
<p class="mb-0 fs-12 text-muted">
Quantity: <span>10 x $32</span>
</p>
</div>
<div class="px-2">
<h5 class="m-0 fw-normal">$<span class="cart-item-price">320</span>
</h5>
</div>
<div class="ps-2">
<button type="button"
class="btn btn-icon btn-sm btn-ghost-secondary remove-item-btn"><i
class="ri-close-fill fs-16"></i></button>
</div>
</div>
</div>
<div class="d-block dropdown-item dropdown-item-cart text-wrap px-3 py-2">
<div class="d-flex align-items-center">
<img src="assets/images/products/img-2.png"
class="me-3 rounded-circle avatar-sm p-2 bg-light" alt="user-pic">
<div class="flex-1">
<h6 class="mt-0 mb-1 fs-14">
<a href="apps-ecommerce-product-details.html"
class="text-reset">Bentwood Chair</a>
</h6>
<p class="mb-0 fs-12 text-muted">
Quantity: <span>5 x $18</span>
</p>
</div>
<div class="px-2">
<h5 class="m-0 fw-normal">$<span class="cart-item-price">89</span>
</h5>
</div>
<div class="ps-2">
<button type="button"
class="btn btn-icon btn-sm btn-ghost-secondary remove-item-btn"><i
class="ri-close-fill fs-16"></i></button>
</div>
</div>
</div>
<div class="d-block dropdown-item dropdown-item-cart text-wrap px-3 py-2">
<div class="d-flex align-items-center">
<img src="assets/images/products/img-3.png"
class="me-3 rounded-circle avatar-sm p-2 bg-light" alt="user-pic">
<div class="flex-1">
<h6 class="mt-0 mb-1 fs-14">
<a href="apps-ecommerce-product-details.html" class="text-reset">
Borosil Paper Cup</a>
</h6>
<p class="mb-0 fs-12 text-muted">
Quantity: <span>3 x $250</span>
</p>
</div>
<div class="px-2">
<h5 class="m-0 fw-normal">$<span class="cart-item-price">750</span>
</h5>
</div>
<div class="ps-2">
<button type="button"
class="btn btn-icon btn-sm btn-ghost-secondary remove-item-btn"><i
class="ri-close-fill fs-16"></i></button>
</div>
</div>
</div>
<div class="d-block dropdown-item dropdown-item-cart text-wrap px-3 py-2">
<div class="d-flex align-items-center">
<img src="assets/images/products/img-6.png"
class="me-3 rounded-circle avatar-sm p-2 bg-light" alt="user-pic">
<div class="flex-1">
<h6 class="mt-0 mb-1 fs-14">
<a href="apps-ecommerce-product-details.html" class="text-reset">Gray
Styled T-Shirt</a>
</h6>
<p class="mb-0 fs-12 text-muted">
Quantity: <span>1 x $1250</span>
</p>
</div>
<div class="px-2">
<h5 class="m-0 fw-normal">$ <span class="cart-item-price">1250</span></h5>
</div>
<div class="ps-2">
<button type="button"
class="btn btn-icon btn-sm btn-ghost-secondary remove-item-btn"><i
class="ri-close-fill fs-16"></i></button>
</div>
</div>
</div>
<div class="d-block dropdown-item dropdown-item-cart text-wrap px-3 py-2">
<div class="d-flex align-items-center">
<img src="assets/images/products/img-5.png"
class="me-3 rounded-circle avatar-sm p-2 bg-light" alt="user-pic">
<div class="flex-1">
<h6 class="mt-0 mb-1 fs-14">
<a href="apps-ecommerce-product-details.html"
class="text-reset">Stillbird Helmet</a>
</h6>
<p class="mb-0 fs-12 text-muted">
Quantity: <span>2 x $495</span>
</p>
</div>
<div class="px-2">
<h5 class="m-0 fw-normal">$<span class="cart-item-price">990</span>
</h5>
</div>
<div class="ps-2">
<button type="button"
class="btn btn-icon btn-sm btn-ghost-secondary remove-item-btn"><i
class="ri-close-fill fs-16"></i></button>
</div>
</div>
</div>
</div>
</div>
<div class="p-3 border-bottom-0 border-start-0 border-end-0 border-dashed border"
id="checkout-elem">
<div class="d-flex justify-content-between align-items-center pb-3">
<h5 class="m-0 text-muted">Total:</h5>
<div class="px-2">
<h5 class="m-0" id="cart-item-total">$1258.58</h5>
</div>
</div>
<a href="apps-ecommerce-checkout.html" class="btn btn-success text-center w-100">
Checkout
</a>
</div>
</div>
</div> -->
<div class="ms-1 header-item d-none d-sm-flex">
<button type="button" class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle"
data-toggle="fullscreen">
<i class='bx bx-fullscreen fs-22'></i>
</button>
</div>
<!-- <div class="ms-1 header-item d-none d-sm-flex">
<button type="button"
class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle light-dark-mode">
<i class='bx bx-moon fs-22'></i>
</button>
</div> -->
<!-- <div class="dropdown topbar-head-dropdown ms-1 header-item" id="notificationDropdown">
<button type="button" class="btn btn-icon btn-topbar btn-ghost-secondary rounded-circle"
id="page-header-notifications-dropdown" data-bs-toggle="dropdown" data-bs-auto-close="outside"
aria-haspopup="true" aria-expanded="false">
<i class='bx bx-bell fs-22'></i>
<span
class="position-absolute topbar-badge fs-10 translate-middle badge rounded-pill bg-danger">3<span
class="visually-hidden">unread messages</span></span>
</button>
<div class="dropdown-menu dropdown-menu-lg dropdown-menu-end p-0"
aria-labelledby="page-header-notifications-dropdown">
<div class="dropdown-head bg-primary bg-pattern rounded-top">
<div class="p-3">
<div class="row align-items-center">
<div class="col">
<h6 class="m-0 fs-16 fw-semibold text-white"> Notifications </h6>
</div>
<div class="col-auto dropdown-tabs">
<span class="badge badge-soft-light fs-13"> 4 New</span>
</div>
</div>
</div>
<div class="px-2 pt-2">
<ul class="nav nav-tabs dropdown-tabs nav-tabs-custom" data-dropdown-tabs="true"
id="notificationItemsTab" role="tablist">
<li class="nav-item waves-effect waves-light">
<a class="nav-link active" data-bs-toggle="tab" href="#all-noti-tab" role="tab"
aria-selected="true">
All (4)
</a>
</li>
<li class="nav-item waves-effect waves-light">
<a class="nav-link" data-bs-toggle="tab" href="#messages-tab" role="tab"
aria-selected="false">
Messages
</a>
</li>
<li class="nav-item waves-effect waves-light">
<a class="nav-link" data-bs-toggle="tab" href="#alerts-tab" role="tab"
aria-selected="false">
Alerts
</a>
</li>
</ul>
</div>
</div>
<div class="tab-content position-relative" id="notificationItemsTabContent">
<div class="tab-pane fade show active py-2 ps-2" id="all-noti-tab" role="tabpanel">
<div data-simplebar style="max-height: 300px;" class="pe-2">
<div class="text-reset notification-item d-block dropdown-item position-relative">
<div class="d-flex">
<div class="avatar-xs me-3">
<span class="avatar-title bg-soft-info text-info rounded-circle fs-16">
<i class="bx bx-badge-check"></i>
</span>
</div>
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-2 lh-base">Your <b>Elite</b> author
Graphic
Optimization <span class="text-secondary">reward</span>
is
ready!
</h6>
</a>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> Just 30 sec
ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="all-notification-check01">
<label class="form-check-label"
for="all-notification-check01"></label>
</div>
</div>
</div>
</div>
<div class="text-reset notification-item d-block dropdown-item position-relative">
<div class="d-flex">
<img src="assets/images/users/avatar-2.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-1 fs-13 fw-semibold">Angela Bernier</h6>
</a>
<div class="fs-13 text-muted">
<p class="mb-1">Answered to your comment on the cash flow
forecast's
graph 🔔.</p>
</div>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 48 min
ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="all-notification-check02">
<label class="form-check-label"
for="all-notification-check02"></label>
</div>
</div>
</div>
</div>
<div class="text-reset notification-item d-block dropdown-item position-relative">
<div class="d-flex">
<div class="avatar-xs me-3">
<span
class="avatar-title bg-soft-danger text-danger rounded-circle fs-16">
<i class='bx bx-message-square-dots'></i>
</span>
</div>
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-2 fs-13 lh-base">You have received <b
class="text-success">20</b> new messages in the
conversation
</h6>
</a>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 2 hrs ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="all-notification-check03">
<label class="form-check-label"
for="all-notification-check03"></label>
</div>
</div>
</div>
</div>
<div class="text-reset notification-item d-block dropdown-item position-relative">
<div class="d-flex">
<img src="assets/images/users/avatar-8.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-1 fs-13 fw-semibold">Maureen Gibson</h6>
</a>
<div class="fs-13 text-muted">
<p class="mb-1">We talked about a project on linkedin.</p>
</div>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 4 hrs ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="all-notification-check04">
<label class="form-check-label"
for="all-notification-check04"></label>
</div>
</div>
</div>
</div>
<div class="my-3 text-center view-all">
<button type="button" class="btn btn-soft-success waves-effect waves-light">View
All Notifications <i class="ri-arrow-right-line align-middle"></i></button>
</div>
</div>
</div>
<div class="tab-pane fade py-2 ps-2" id="messages-tab" role="tabpanel"
aria-labelledby="messages-tab">
<div data-simplebar style="max-height: 300px;" class="pe-2">
<div class="text-reset notification-item d-block dropdown-item">
<div class="d-flex">
<img src="assets/images/users/avatar-3.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-1 fs-13 fw-semibold">James Lemire</h6>
</a>
<div class="fs-13 text-muted">
<p class="mb-1">We talked about a project on linkedin.</p>
</div>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 30 min
ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="messages-notification-check01">
<label class="form-check-label"
for="messages-notification-check01"></label>
</div>
</div>
</div>
</div>
<div class="text-reset notification-item d-block dropdown-item">
<div class="d-flex">
<img src="assets/images/users/avatar-2.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-1 fs-13 fw-semibold">Angela Bernier</h6>
</a>
<div class="fs-13 text-muted">
<p class="mb-1">Answered to your comment on the cash flow
forecast's
graph 🔔.</p>
</div>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 2 hrs ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="messages-notification-check02">
<label class="form-check-label"
for="messages-notification-check02"></label>
</div>
</div>
</div>
</div>
<div class="text-reset notification-item d-block dropdown-item">
<div class="d-flex">
<img src="assets/images/users/avatar-6.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-1 fs-13 fw-semibold">Kenneth Brown</h6>
</a>
<div class="fs-13 text-muted">
<p class="mb-1">Mentionned you in his comment on 📃 invoice
#12501.
</p>
</div>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 10 hrs
ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="messages-notification-check03">
<label class="form-check-label"
for="messages-notification-check03"></label>
</div>
</div>
</div>
</div>
<div class="text-reset notification-item d-block dropdown-item">
<div class="d-flex">
<img src="assets/images/users/avatar-8.jpg"
class="me-3 rounded-circle avatar-xs" alt="user-pic">
<div class="flex-1">
<a href="#!" class="stretched-link">
<h6 class="mt-0 mb-1 fs-13 fw-semibold">Maureen Gibson</h6>
</a>
<div class="fs-13 text-muted">
<p class="mb-1">We talked about a project on linkedin.</p>
</div>
<p class="mb-0 fs-11 fw-medium text-uppercase text-muted">
<span><i class="mdi mdi-clock-outline"></i> 3 days
ago</span>
</p>
</div>
<div class="px-2 fs-15">
<div class="form-check notification-check">
<input class="form-check-input" type="checkbox" value=""
id="messages-notification-check04">
<label class="form-check-label"
for="messages-notification-check04"></label>
</div>
</div>
</div>
</div>
<div class="my-3 text-center view-all">
<button type="button" class="btn btn-soft-success waves-effect waves-light">View
All Messages <i class="ri-arrow-right-line align-middle"></i></button>
</div>
</div>
</div>
<div class="tab-pane fade p-4" id="alerts-tab" role="tabpanel" aria-labelledby="alerts-tab">
</div>
<div class="notification-actions" id="notification-actions">
<div class="d-flex text-muted justify-content-center">
Select <div id="select-content" class="text-body fw-semibold px-1">0</div>
Result <button type="button" class="btn btn-link link-danger p-0 ms-3"
data-bs-toggle="modal" data-bs-target="#removeNotificationModal">Remove</button>
</div>
</div>
</div>
</div>
</div> -->
<?php
$this->id = $this->session->userdata('admin_id');
$data3 = $this->get_model->get_by_id('tbl_admin', array('admin_id' => $this->id));
?>
<div class="dropdown ms-sm-3 header-item topbar-user">
<button type="button" class="btn" id="page-header-user-dropdown" data-bs-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<span class="d-flex align-items-center">
<img class="rounded-circle header-profile-user" src="<?php echo base_url()?>uploads/<?php echo $data3['admin_photo'];?>"
alt=" Header Avatar">
<span class="text-start ms-xl-2">
<span class="d-none d-xl-inline-block ms-1 fw-medium user-name-text">
<?php echo $data3['admin_name']; ?>
</span>
<span class="d-none d-xl-block ms-1 fs-12 text-warning user-name-sub-text">Admin</span>
</span>
</span>
</button>
<div class="dropdown-menu dropdown-menu-end">
<!-- item-->
<h6 class="dropdown-header">Welcome <?php echo $data3['admin_name']; ?>!</h6>
<a class="dropdown-item" href="<?php echo base_url('profile')?>"><i
class="mdi mdi-account-circle text-muted fs-16 align-middle me-1"></i> <span
class="align-middle">Profile</span></a>
<a class="dropdown-item" href="<?php echo base_url('reset_pass')?>"><i
class="mdi mdi-message-text-outline text-muted fs-16 align-middle me-1"></i>
<span class="align-middle">Reset Password</span></a>
<!-- <a class="dropdown-item" href="apps-tasks-kanban.html"><i
class="mdi mdi-calendar-check-outline text-muted fs-16 align-middle me-1"></i>
<span class="align-middle">Taskboard</span></a>
<a class="dropdown-item" href="pages-faqs.html"><i
class="mdi mdi-lifebuoy text-muted fs-16 align-middle me-1"></i> <span
class="align-middle">Help</span></a> -->
<div class="dropdown-divider"></div>
<!-- <a class="dropdown-item" href="pages-profile.html"><i
class="mdi mdi-wallet text-muted fs-16 align-middle me-1"></i> <span
class="align-middle">Balance : <b>$5971.67</b></span></a>
<a class="dropdown-item" href="pages-profile-settings.html"><span
class="badge bg-soft-success text-success mt-1 float-end">New</span><i
class="mdi mdi-cog-outline text-muted fs-16 align-middle me-1"></i> <span
class="align-middle">Settings</span></a>
<a class="dropdown-item" href="auth-lockscreen-basic.html"><i
class="mdi mdi-lock text-muted fs-16 align-middle me-1"></i> <span
class="align-middle">Lock screen</span></a> -->
<a class="dropdown-item" href="<?php echo base_url('logout')?>"><i
class="mdi mdi-logout text-muted fs-16 align-middle me-1"></i> <span
class="align-middle" data-key="t-logout">Logout</span></a>
</div>
</div>
</div>
</div>
</div>
</header>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,363 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">Contact Us</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('dashboard')?>">Home</a>
</li>
<li class="breadcrumb-item active">Contact Us</li>
</ol>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-12">
<div class="card">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Contact Us</h4>
<div class="flex-shrink-0">
<!-- <div class="form-check form-switch form-switch-right form-switch-md">
<label for="responsive-table-showcode" class="form-label text-muted">Show
Code</label>
<input class="form-check-input code-switcher" type="checkbox"
id="responsive-table-showcode">
</div> -->
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
<!-- <div id="example3_filter" class="dataTables_filter" style="float:right;">
<label>
<input id="abc" type="search" placeholder="Search"
class=" form-control search-input form-control-sm mt-2"
aria-controls="example3" data-table="table_list"></label>
</div> -->
</div>
</div><!-- end card header -->
<div class="col-md-12">
<?php if ($this->session->flashdata('error')): ?>
<div class="alert alert-danger">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<?php if ($this->session->flashdata('success')): ?>
<div class="alert alert-success">
<?php echo $this->session->flashdata('success'); ?>
</div>
<?php endif; ?>
<div class="card-body">
<!-- <p class="text-muted">Use <code>table-responsive</code> class to make any table
responsive across all viewports. Responsive tables allow tables to be scrolled
horizontally with ease.</p> -->
<div class="live-preview">
<div class="table-responsive">
<table
class="table align-middle table-bordered table-sortable table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col">Sr.No.</th>
<th scope="col">Name</th>
<th scope="col">Email Id</th>
<!-- <th scope="col">Mobile No.</th> -->
<th scope="col">Date/Time</th>
<th scope="col">Subject</th>
<th scope="col">Message</th>
<th scope="col">Reply</th>
<!-- <th scope="col">View Reply</th> -->
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
<?php if(!empty($data)) {
$i= 1;
foreach($data as $data) {
?>
<tr>
<td><a href="#" class="fw-medium"><?php echo $i;?></a></td>
<td><?php echo $data['first_name']." ".$data['last_name'];?></td>
<td><?php echo $data['email'];?></td>
<td> <?php echo date('Y-m-d', strtotime($data['created_at'])); ?> | <?php echo date('h:i A', strtotime($data['created_at'])); ?> </td>
<td>
<button type="button" data-bs-toggle="modal"
data-bs-target="#fadeInleftModal_<?php echo $data['id'];?>"
class="btn btn-primary btn-xs btn-icon waves-effect waves-light"><i
class="ri-eye-line"></i></button>
</td>
<td> <button type="button" data-bs-toggle="modal"
data-bs-target="#fadeInRightModal_<?php echo $data['id'];?>"
class="btn btn-warning btn-xs btn-icon waves-effect waves-light"><i
class="ri-message-fill"></i></button></td>
<td>
<div class="">
<button type="button" id="" data-bs-toggle="modal"
data-bs-target="#varyingcontentModal_<?php echo $data['id'];?>"
data-bs-whatever="Mary"
class="btn btn-danger btn-icon"><i
class="ri-share-circle-line"></i></button>
</div>
</td>
<!-- <td><span class="badge text-bg-secondary">view</span></td> -->
<td>
<?php $status = $data['rply_status'];
if($status == '0') {
?>
<span class="badge badge-label bg-primary"><i
class="mdi mdi-circle-medium"></i> Pending</span>
<?php }
else if($status == '1'){ ?>
<span class="badge badge-label bg-success"><i
class="mdi mdi-circle-medium"></i> Sent</span>
<?php }
else if($status == '2'){
?>
<span class="badge badge-label bg-danger"><i
class="mdi mdi-circle-medium"></i> Error in sending</span>
<?php }
?>
</td>
</tr>
<!-- message modal -->
<div id="fadeInRightModal_<?php echo $data['id'];?>" class="modal fade fadeInRight " tabindex="-1" aria-labelledby="fadeInrightModalLabel"
aria-modal="true" role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="fadeInrightModalLabel">Message</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<?php echo $data['subject'];?>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary ">Save Changes</button> -->
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
<!-- subject modal -->
<div id="fadeInleftModal_<?php echo $data['id'];?>" class="modal fade fadeInLeft " tabindex="-1" aria-labelledby="fadeInleftModalLabel"
aria-modal="true" role="dialog">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="fadeInleftModalLabel">Subject</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<?php echo $data['message'];?>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary ">Save Changes</button> -->
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
<!-- modal for reply -->
<div class="modal fade " id="varyingcontentModal_<?php echo $data['id'];?>" tabindex="-1" aria-labelledby="varyingcontentModalLabel"
aria-modal="true" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="varyingcontentModalLabel">Reply To User</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form method="post" action="<?php echo base_url();?>User_management/send_reply">
<input type="hidden" name="id" value="<?php echo $data['id'];?>">
<div class="mb-3">
<label for="customer-name" class="col-form-label">Email ID:</label>
<input type="email" class="form-control" value="<?php echo $data['email'];?>" name="email" id="customer-name">
</div>
<div class="mb-3">
<label for="message-text" class="col-form-label">Message:</label>
<textarea class="form-control" id="message-text" name="message" rows="4">
<?php echo $data['message'];?>
</textarea>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-light" data-bs-dismiss="modal">Cancel</button>
<button type="submit" class="btn btn-primary">Send message</button>
</div>
</form>
</div>
</div>
</div>
<?php $i++; }} ?>
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
</p>
<div class="d-flex justify-content-end mt-4">
<?php echo $this->pagination->create_links(); ?>
</div>
<!-- end table -->
</div>
<!-- end table responsive -->
</div>
</div><!-- end card-body -->
</div><!-- end card -->
</div><!-- end col -->
</div>
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<?php include 'link/script.php'?>
</body>
</html>

View File

@ -0,0 +1,385 @@
<!doctype html>
<html lang="en" data-layout="vertical" data-topbar="light" data-sidebar="dark" data-sidebar-size="lg"
data-sidebar-image="none" data-preloader="disable">
<!-- Mirrored from themesbrand.com/velzon/html/default/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Mar 2023 12:52:34 GMT -->
<head>
<?php include 'link/links.php'?>
</head>
<body>
<!-- Begin page -->
<div id="layout-wrapper">
<?php include 'common_file/header.php'?>
<!-- removeNotificationModal -->
<!-- ========== App Menu ========== -->
<?php include 'common_file/sidebar.php'?>
<!-- Left Sidebar End -->
<!-- Vertical Overlay-->
<div class="vertical-overlay"></div>
<!-- ============================================================== -->
<!-- Start right Content here -->
<!-- ============================================================== -->
<div class="main-content">
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-sm-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">User Profile</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="<?php echo base_url('index')?>">Home</a>
</li>
<li class="breadcrumb-item"><a href="<?php echo base_url('user_manage')?>">User
Management</a>
</li>
<li class="breadcrumb-item active">User Profile</li>
</ol>
</div>
</div>
</div>
</div>
<div class="team-list grid-view-filter row" id="team-member-list">
<div class="col-md-5">
<div class="card team-box">
<!-- <div class="team-cover"> <img src="assets/images/small/img-9.jpg" alt=""
class="img-fluid"> </div> -->
<div class="card-body mb-0">
<div class="row align-items-center team-row">
<!-- -->
<div class="col-lg-6 col">
<div class="team-profile-img" style="margin-top:0px !important;">
<div class="avatar-lg img-thumbnail rounded-circle flex-shrink-0"><img
src="assets/images/users/avatar-2.jpg" alt=""
class="member-img img-fluid d-block rounded-circle"></div>
<!-- <div class="team-content"> <a class="member-name"
data-bs-toggle="offcanvas" href="#member-overview"
aria-controls="member-overview">
<h5 class="fs-16 mb-1">Harshada Gaware</h5>
</a>
<p class="text-muted member-designation mb-0">Admin
</p>
</div> -->
</div>
</div>
<div class="table-responsive">
<table class="table mb-0">
<tbody>
<tr>
<th scope="row" style="width: 200px;">Full Name</th>
<td>Harshada Gaware</td>
</tr>
<tr>
<th scope="row">Country</th>
<td>India</td>
</tr>
<tr>
<th scope="row">Email Id</th>
<td>harshada@gamil.com</td>
</tr>
<tr>
<th scope="row">Mobile No.</th>
<td>9834567898</td>
</tr>
</tbody>
</table>
</div>
<!-- <div class="col-lg-4 col">
<div class="row text-muted text-center">
<div class="col-6 border-end border-end-dashed">
<h5 class="mb-1 projects-num">225</h5>
<p class="text-muted mb-0">Projects</p>
</div>
<div class="col-6">
<h5 class="mb-1 tasks-num">197</h5>
<p class="text-muted mb-0">Tasks</p>
</div>
</div>
</div> -->
<!-- <div class="col-lg-2 col">
<div class="text-end"> <a href="pages-profile.html"
class="btn btn-light view-btn">View Profile</a> </div>
</div> -->
</div>
</div>
</div>
</div>
<div class="col-md-7">
<div class="card">
<div class="card-body">
<!-- <h5 class="mb-2">Bank Details</h5> -->
<div class="row">
<div class="col-md-12">
<div class="card">
<a class="card-body " data-bs-toggle="collapse" href="#leadDiscovered"
role="button" aria-expanded="false" aria-controls="leadDiscovered">
<h5 class="card-title fw-semibold mb-1 fs-15">Account Holder
Name
</h5>
<p class="text-muted mb-0">Harshada Prakash Gaware <span
class="fw-medium"></span>
</p>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card">
<a class="card-body " data-bs-toggle="collapse" href="#leadDiscovered"
role="button" aria-expanded="false" aria-controls="leadDiscovered">
<h5 class="card-title fw-semibold mb-1 fs-15">Bank Name
</h5>
<p class="text-muted mb-0">Standard Charted Bank <span
class="fw-medium"></span>
</p>
</a>
</div>
</div>
<div class="col-md-6">
<div class="card">
<a class="card-body " data-bs-toggle="collapse" href="#leadDiscovered"
role="button" aria-expanded="false" aria-controls="leadDiscovered">
<h5 class="card-title fw-semibold mb-1 fs-15">Branch Name
</h5>
<p class="text-muted mb-0">Viman Nagar,Pune <span
class="fw-medium"></span>
</p>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card">
<a class="card-body " data-bs-toggle="collapse" href="#leadDiscovered"
role="button" aria-expanded="false" aria-controls="leadDiscovered">
<h5 class="card-title fw-semibold mb-1 fs-15">Account No
</h5>
<p class="text-muted mb-0">987654321741
<span class="fw-medium"></span>
</p>
</a>
</div>
</div>
<div class="col-md-6">
<div class="card">
<a class="card-body " data-bs-toggle="collapse" href="#leadDiscovered"
role="button" aria-expanded="false" aria-controls="leadDiscovered">
<h5 class="card-title fw-semibold mb-1 fs-15">IFSC Code
</h5>
<p class="text-muted mb-0">ASD963852 <span class="fw-medium"></span>
</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<!-- <p class="text-muted">Example of nav tabs with badge wrapped in nav item.</p> -->
<!-- Nav tabs -->
<ul class="nav nav-tabs nav-justified mb-3" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link " href="<?php echo base_url('view_user')?>" role="tab"
aria-selected="false" tabindex="-1">
Played Game History
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link align-middle" href="<?php echo base_url('win_games')?>" role="tab"
aria-selected="false" tabindex="-1">
Win Games
<!-- <span class="badge bg-success">win</span> -->
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link active align-middle" data-bs-toggle="tab" href="#nav-badge-messages"
role="tab" aria-selected="false" tabindex="-1">
Drawn Games
<!-- <span class="badge bg-danger rounded-circle">5</span> -->
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link " href="<?php echo base_url('lost_games')?>" role="tab"
aria-selected="true">
Lost Games
</a>
</li>
<!-- <li class="nav-item" role="presentation">
<a class="nav-link " href="<?php echo base_url('withdrawl_history')?>" role="tab"
aria-selected="true">
Withdraw History
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link " href="<?php echo base_url('wallet_transaction')?>" role="tab"
aria-selected="true">
Wallet Transaction
</a>
</li> -->
</ul>
<!-- Nav tabs -->
<div class="tab-content text-muted">
<div class="tab-pane active show" id="nav-badge-messages" role="tabpanel">
<div class="">
<!-- <div class="flex-shrink-0">
<i class="ri-checkbox-circle-fill text-success"></i>
</div> -->
<div class="">
<div class="card-header align-items-center d-flex">
<h4 class="card-title mb-0 flex-grow-1">Played Game</h4>
<div class="search-box">
<input type="search" class="form-control search-input form-control-sm "
id=" searchMemberList" placeholder="Search here..."
data-table="table_list">
<i class="ri-search-line search-icon"></i>
</div>
</div><!-- end card header -->
<div class="card-body">
<!-- <p class="text-muted mb-4">Use <code>table-card</code> class to show
card-based table within a &lt;tbody&gt;.</p> -->
<div class="live-preview">
<div class="table-responsive table-card">
<table
class="table table-bordered align-middle table-nowrap mb-0 table_list">
<thead class="table-light">
<tr>
<th scope="col">Sr No.</th>
<th scope="col">Player1 ID</th>
<th scope="col">Player2 ID</th>
<th scope="col">Date</th>
<th scope="col">Time</th>
<th scope="col">Result</th>
<!-- <th scope="col" style="width: 150px;">Action</th> -->
</tr>
</thead>
<tbody>
<?php foreach($drawn_game as $drawn_key => $drawn_value){?>
<tr>
<td><?php echo $drawn_value['id']?></td>
<td><a href="#" class="fw-medium"><?php echo $drawn_value['player1_id']?></a></td>
<td><a href="#" class="fw-medium"><?php echo $drawn_value['player2_id']?></a></td>
<td><?php echo $drawn_value['date']?></td>
<td><?php echo $drawn_value['time_slot']?></td>
<td><span class="badge bg-warning"><?php echo $drawn_value['result']?></span></td>
</tr>
<?php } ?>
</tbody>
</table>
<p id="table_list" class="text-warning">No matching records found
<div class="d-flex justify-content-end mt-4 mb-2">
<?php echo $this->pagination->create_links();?>
<!-- <div class="pagination-wrap hstack gap-2"
style="display: flex;">
<a class="page-item pagination-prev disabled"
href="javascrpit:void(0)">
Previous
</a>
<ul class="pagination listjs-pagination mb-0">
<li class="active"><a class="page" href="#" data-i="1"
data-page="8">1</a></li>
<li><a class="page" href="#" data-i="2"
data-page="8">2</a></li>
</ul>
<a class="page-item pagination-next"
href="javascrpit:void(0)">
Next
</a>
</div> -->
</div>
</div>
</div>
</div><!-- end card-body -->
</div>
</div>
</div>
</div>
</div><!-- end card-body -->
</div>
<!-- container-fluid -->
</div>
<!-- End Page-content -->
<footer class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<script>
document.write(new Date().getFullYear())
</script> © Chess.
</div>
<div class="col-sm-6">
<div class="text-sm-end d-none d-sm-block">
Design & Develop by Appzia
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- end main content-->
</div>
<!-- END layout-wrapper -->
<!--start back-to-top-->
<button onclick="topFunction()" class="btn btn-danger btn-icon" id="back-to-top">
<i class="ri-arrow-up-line"></i>
</button>
<!--end back-to-top-->
<!--preloader-->
<div id="preloader">
<div id="status">
<div class="spinner-border text-primary avatar-sm" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
<?php include 'link/script.php'?>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More