{"id":2264,"date":"2018-01-28T10:21:18","date_gmt":"2018-01-28T03:21:18","guid":{"rendered":"http:\/\/devbanban.com\/?p=2264"},"modified":"2018-01-28T10:21:18","modified_gmt":"2018-01-28T03:21:18","slug":"codeigniter-customizing-config-php-autoload-php","status":"publish","type":"post","link":"https:\/\/devbanban.com\/?p=2264","title":{"rendered":"Codeigniter : How to customizing config.php  &#038; autoload.php"},"content":{"rendered":"<p><strong>Codeigniter<\/strong> : How to customizing config.php and autoload for work.<!--more--><\/p>\n<p>Basic to customizing config file from codeiginiter<\/p>\n<p>Ex.<\/p>\n<pre class=\"lang:default decode:true\">&lt;?php\r\ndefined('BASEPATH') OR exit('No direct script access allowed');\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Base Site URL\r\n|--------------------------------------------------------------------------\r\n|\r\n| URL to your CodeIgniter root. Typically this will be your base URL,\r\n| WITH a trailing slash:\r\n|\r\n|\thttp:\/\/example.com\/\r\n|\r\n| If this is not set then CodeIgniter will try guess the protocol, domain\r\n| and path to your installation. However, you should always configure this\r\n| explicitly and never rely on auto-guessing, especially in production\r\n| environments.\r\n|\r\n*\/\r\n$config['base_url'] = 'http:\/\/127.0.0.1\/myweb\/';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Index File\r\n|--------------------------------------------------------------------------\r\n|\r\n| Typically this will be your index.php file, unless you've renamed it to\r\n| something else. If you are using mod_rewrite to remove the page set this\r\n| variable so that it is blank.\r\n|\r\n*\/\r\n$config['index_page'] = '';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| URI PROTOCOL\r\n|--------------------------------------------------------------------------\r\n|\r\n| This item determines which server global should be used to retrieve the\r\n| URI string.  The default setting of 'REQUEST_URI' works for most servers.\r\n| If your links do not seem to work, try one of the other delicious flavors:\r\n|\r\n| 'REQUEST_URI'    Uses $_SERVER['REQUEST_URI']\r\n| 'QUERY_STRING'   Uses $_SERVER['QUERY_STRING']\r\n| 'PATH_INFO'      Uses $_SERVER['PATH_INFO']\r\n|\r\n| WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!\r\n*\/\r\n$config['uri_protocol']\t= 'REQUEST_URI';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| URL suffix\r\n|--------------------------------------------------------------------------\r\n|\r\n| This option allows you to add a suffix to all URLs generated by CodeIgniter.\r\n| For more information please see the user guide:\r\n|\r\n| http:\/\/codeigniter.com\/user_guide\/general\/urls.html\r\n*\/\r\n\r\n$config['url_suffix'] = '';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Default Language\r\n|--------------------------------------------------------------------------\r\n|\r\n| This determines which set of language files should be used. Make sure\r\n| there is an available translation if you intend to use something other\r\n| than english.\r\n|\r\n*\/\r\n$config['language']\t= 'english';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Default Character Set\r\n|--------------------------------------------------------------------------\r\n|\r\n| This determines which character set is used by default in various methods\r\n| that require a character set to be provided.\r\n|\r\n| See http:\/\/php.net\/htmlspecialchars for a list of supported charsets.\r\n|\r\n*\/\r\n$config['charset'] = 'UTF-8';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Enable\/Disable System Hooks\r\n|--------------------------------------------------------------------------\r\n|\r\n| If you would like to use the 'hooks' feature you must enable it by\r\n| setting this variable to TRUE (boolean).  See the user guide for details.\r\n|\r\n*\/\r\n$config['enable_hooks'] = TRUE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Class Extension Prefix\r\n|--------------------------------------------------------------------------\r\n|\r\n| This item allows you to set the filename\/classname prefix when extending\r\n| native libraries.  For more information please see the user guide:\r\n|\r\n| http:\/\/codeigniter.com\/user_guide\/general\/core_classes.html\r\n| http:\/\/codeigniter.com\/user_guide\/general\/creating_libraries.html\r\n|\r\n*\/\r\n$config['subclass_prefix'] = 'MY_';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Composer auto-loading\r\n|--------------------------------------------------------------------------\r\n|\r\n| Enabling this setting will tell CodeIgniter to look for a Composer\r\n| package auto-loader script in application\/vendor\/autoload.php.\r\n|\r\n|\t$config['composer_autoload'] = TRUE;\r\n|\r\n| Or if you have your vendor\/ directory located somewhere else, you\r\n| can opt to set a specific path as well:\r\n|\r\n|\t$config['composer_autoload'] = '\/path\/to\/vendor\/autoload.php';\r\n|\r\n| For more information about Composer, please visit http:\/\/getcomposer.org\/\r\n|\r\n| Note: This will NOT disable or override the CodeIgniter-specific\r\n|\tautoloading (application\/config\/autoload.php)\r\n*\/\r\n$config['composer_autoload'] = FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Allowed URL Characters\r\n|--------------------------------------------------------------------------\r\n|\r\n| This lets you specify which characters are permitted within your URLs.\r\n| When someone tries to submit a URL with disallowed characters they will\r\n| get a warning message.\r\n|\r\n| As a security measure you are STRONGLY encouraged to restrict URLs to\r\n| as few characters as possible.  By default only these are allowed: a-z 0-9~%.:_-\r\n|\r\n| Leave blank to allow all characters -- but only if you are insane.\r\n|\r\n| The configured value is actually a regular expression character group\r\n| and it will be executed as: ! preg_match('\/^[&lt;permitted_uri_chars&gt;]+$\/i\r\n|\r\n| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!\r\n|\r\n*\/\r\n$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\\-';\r\n\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Enable Query Strings\r\n|--------------------------------------------------------------------------\r\n|\r\n| By default CodeIgniter uses search-engine friendly segment based URLs:\r\n| example.com\/who\/what\/where\/\r\n|\r\n| By default CodeIgniter enables access to the $_GET array.  If for some\r\n| reason you would like to disable it, set 'allow_get_array' to FALSE.\r\n|\r\n| You can optionally enable standard query string based URLs:\r\n| example.com?who=me&amp;what=something&amp;where=here\r\n|\r\n| Options are: TRUE or FALSE (boolean)\r\n|\r\n| The other items let you set the query string 'words' that will\r\n| invoke your controllers and its functions:\r\n| example.com\/index.php?c=controller&amp;m=function\r\n|\r\n| Please note that some of the helpers won't work as expected when\r\n| this feature is enabled, since CodeIgniter is designed primarily to\r\n| use segment based URLs.\r\n|\r\n*\/\r\n$config['allow_get_array'] = TRUE;\r\n$config['enable_query_strings'] = FALSE;\r\n$config['controller_trigger'] = 'c';\r\n$config['function_trigger'] = 'm';\r\n$config['directory_trigger'] = 'd';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Error Logging Threshold\r\n|--------------------------------------------------------------------------\r\n|\r\n| If you have enabled error logging, you can set an error threshold to\r\n| determine what gets logged. Threshold options are:\r\n| You can enable error logging by setting a threshold over zero. The\r\n| threshold determines what gets logged. Threshold options are:\r\n|\r\n|\t0 = Disables logging, Error logging TURNED OFF\r\n|\t1 = Error Messages (including PHP errors)\r\n|\t2 = Debug Messages\r\n|\t3 = Informational Messages\r\n|\t4 = All Messages\r\n|\r\n| You can also pass an array with threshold levels to show individual error types\r\n|\r\n| \tarray(2) = Debug Messages, without Error Messages\r\n|\r\n| For a live site you'll usually only enable Errors (1) to be logged otherwise\r\n| your log files will fill up very fast.\r\n|\r\n*\/\r\n$config['log_threshold'] = 0;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Error Logging Directory Path\r\n|--------------------------------------------------------------------------\r\n|\r\n| Leave this BLANK unless you would like to set something other than the default\r\n| application\/logs\/ directory. Use a full server path with trailing slash.\r\n|\r\n*\/\r\n$config['log_path'] = '';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Log File Extension\r\n|--------------------------------------------------------------------------\r\n|\r\n| The default filename extension for log files. The default 'php' allows for\r\n| protecting the log files via basic scripting, when they are to be stored\r\n| under a publicly accessible directory.\r\n|\r\n| Note: Leaving it blank will default to 'php'.\r\n|\r\n*\/\r\n$config['log_file_extension'] = '';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Log File Permissions\r\n|--------------------------------------------------------------------------\r\n|\r\n| The file system permissions to be applied on newly created log files.\r\n|\r\n| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal\r\n|            integer notation (i.e. 0700, 0644, etc.)\r\n*\/\r\n$config['log_file_permissions'] = 0644;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Date Format for Logs\r\n|--------------------------------------------------------------------------\r\n|\r\n| Each item that is logged has an associated date. You can use PHP date\r\n| codes to set your own date formatting\r\n|\r\n*\/\r\n$config['log_date_format'] = 'Y-m-d H:i:s';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Error Views Directory Path\r\n|--------------------------------------------------------------------------\r\n|\r\n| Leave this BLANK unless you would like to set something other than the default\r\n| application\/views\/errors\/ directory.  Use a full server path with trailing slash.\r\n|\r\n*\/\r\n$config['error_views_path'] = '';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Cache Directory Path\r\n|--------------------------------------------------------------------------\r\n|\r\n| Leave this BLANK unless you would like to set something other than the default\r\n| application\/cache\/ directory.  Use a full server path with trailing slash.\r\n|\r\n*\/\r\n$config['cache_path'] = '';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Cache Include Query String\r\n|--------------------------------------------------------------------------\r\n|\r\n| Set this to TRUE if you want to use different cache files depending on the\r\n| URL query string.  Please be aware this might result in numerous cache files.\r\n|\r\n*\/\r\n$config['cache_query_string'] = FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Encryption Key\r\n|--------------------------------------------------------------------------\r\n|\r\n| If you use the Encryption class, you must set an encryption key.\r\n| See the user guide for more info.\r\n|\r\n| http:\/\/codeigniter.com\/user_guide\/libraries\/encryption.html\r\n|\r\n*\/\r\n\/\/$config['encryption_key'] = '';\r\n\r\n$config['encryption_key'] = '2d8+e6]K0?ocWp7&amp;`K)&gt;6Ky\"|.x|%nuwafC~S\/+6_mZI9\/17y=sKKG.;Tt}k';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Session Variables\r\n|--------------------------------------------------------------------------\r\n|\r\n| 'sess_driver'\r\n|\r\n|\tThe storage driver to use: files, database, redis, memcached\r\n|\r\n| 'sess_cookie_name'\r\n|\r\n|\tThe session cookie name, must contain only [0-9a-z_-] characters\r\n|\r\n| 'sess_expiration'\r\n|\r\n|\tThe number of SECONDS you want the session to last.\r\n|\tSetting to 0 (zero) means expire when the browser is closed.\r\n|\r\n| 'sess_save_path'\r\n|\r\n|\tThe location to save sessions to, driver dependant.\r\n|\r\n|\tFor the 'files' driver, it's a path to a writable directory.\r\n|\tWARNING: Only absolute paths are supported!\r\n|\r\n|\tFor the 'database' driver, it's a table name.\r\n|\tPlease read up the manual for the format with other session drivers.\r\n|\r\n|\tIMPORTANT: You are REQUIRED to set a valid save path!\r\n|\r\n| 'sess_match_ip'\r\n|\r\n|\tWhether to match the user's IP address when reading the session data.\r\n|\r\n| 'sess_time_to_update'\r\n|\r\n|\tHow many seconds between CI regenerating the session ID.\r\n|\r\n| 'sess_regenerate_destroy'\r\n|\r\n|\tWhether to destroy session data associated with the old session ID\r\n|\twhen auto-regenerating the session ID. When set to FALSE, the data\r\n|\twill be later deleted by the garbage collector.\r\n|\r\n| Other session cookie settings are shared with the rest of the application,\r\n| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here.\r\n|\r\n*\/\r\n$config['sess_driver'] = 'files';\r\n$config['sess_cookie_name'] = 'ci_session';\r\n$config['sess_expiration'] = 7200;\r\n$config['sess_save_path'] = NULL;\r\n$config['sess_match_ip'] = FALSE;\r\n$config['sess_time_to_update'] = 300;\r\n$config['sess_regenerate_destroy'] = FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Cookie Related Variables\r\n|--------------------------------------------------------------------------\r\n|\r\n| 'cookie_prefix'   = Set a cookie name prefix if you need to avoid collisions\r\n| 'cookie_domain'   = Set to .your-domain.com for site-wide cookies\r\n| 'cookie_path'     = Typically will be a forward slash\r\n| 'cookie_secure'   = Cookie will only be set if a secure HTTPS connection exists.\r\n| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)\r\n|\r\n| Note: These settings (with the exception of 'cookie_prefix' and\r\n|       'cookie_httponly') will also affect sessions.\r\n|\r\n*\/\r\n$config['cookie_prefix']\t= '';\r\n$config['cookie_domain']\t= '';\r\n$config['cookie_path']\t\t= '\/';\r\n$config['cookie_secure']\t= FALSE;\r\n$config['cookie_httponly'] \t= FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Standardize newlines\r\n|--------------------------------------------------------------------------\r\n|\r\n| Determines whether to standardize newline characters in input data,\r\n| meaning to replace \\r\\n, \\r, \\n occurences with the PHP_EOL value.\r\n|\r\n| This is particularly useful for portability between UNIX-based OSes,\r\n| (usually \\n) and Windows (\\r\\n).\r\n|\r\n*\/\r\n$config['standardize_newlines'] = FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Global XSS Filtering\r\n|--------------------------------------------------------------------------\r\n|\r\n| Determines whether the XSS filter is always active when GET, POST or\r\n| COOKIE data is encountered\r\n|\r\n| WARNING: This feature is DEPRECATED and currently available only\r\n|          for backwards compatibility purposes!\r\n|\r\n*\/\r\n$config['global_xss_filtering'] = FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Cross Site Request Forgery\r\n|--------------------------------------------------------------------------\r\n| Enables a CSRF cookie token to be set. When set to TRUE, token will be\r\n| checked on a submitted form. If you are accepting user data, it is strongly\r\n| recommended CSRF protection be enabled.\r\n|\r\n| 'csrf_token_name' = The token name\r\n| 'csrf_cookie_name' = The cookie name\r\n| 'csrf_expire' = The number in seconds the token should expire.\r\n| 'csrf_regenerate' = Regenerate token on every submission\r\n| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks\r\n*\/\r\n$config['csrf_protection'] = FALSE;\r\n$config['csrf_token_name'] = 'csrf_test_name';\r\n$config['csrf_cookie_name'] = 'csrf_cookie_name';\r\n$config['csrf_expire'] = 7200;\r\n$config['csrf_regenerate'] = TRUE;\r\n$config['csrf_exclude_uris'] = array();\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Output Compression\r\n|--------------------------------------------------------------------------\r\n|\r\n| Enables Gzip output compression for faster page loads.  When enabled,\r\n| the output class will test whether your server supports Gzip.\r\n| Even if it does, however, not all browsers support compression\r\n| so enable only if you are reasonably sure your visitors can handle it.\r\n|\r\n| Only used if zlib.output_compression is turned off in your php.ini.\r\n| Please do not use it together with httpd-level output compression.\r\n|\r\n| VERY IMPORTANT:  If you are getting a blank page when compression is enabled it\r\n| means you are prematurely outputting something to your browser. It could\r\n| even be a line of whitespace at the end of one of your scripts.  For\r\n| compression to work, nothing can be sent before the output buffer is called\r\n| by the output class.  Do not 'echo' any values with compression enabled.\r\n|\r\n*\/\r\n$config['compress_output'] = FALSE;\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Master Time Reference\r\n|--------------------------------------------------------------------------\r\n|\r\n| Options are 'local' or any PHP supported timezone. This preference tells\r\n| the system whether to use your server's local time as the master 'now'\r\n| reference, or convert it to the configured one timezone. See the 'date\r\n| helper' page of the user guide for information regarding date handling.\r\n|\r\n*\/\r\n$config['time_reference'] = 'local';\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Rewrite PHP Short Tags\r\n|--------------------------------------------------------------------------\r\n|\r\n| If your PHP installation does not have short tag support enabled CI\r\n| can rewrite the tags on-the-fly, enabling you to utilize that syntax\r\n| in your view files.  Options are TRUE or FALSE (boolean)\r\n|\r\n*\/\r\n$config['rewrite_short_tags'] = FALSE;\r\n\r\n\r\n\/*\r\n|--------------------------------------------------------------------------\r\n| Reverse Proxy IPs\r\n|--------------------------------------------------------------------------\r\n|\r\n| If your server is behind a reverse proxy, you must whitelist the proxy\r\n| IP addresses from which CodeIgniter should trust headers such as\r\n| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify\r\n| the visitor's IP address.\r\n|\r\n| You can use both an array or a comma-separated list of proxy addresses,\r\n| as well as specifying whole subnets. Here are a few examples:\r\n|\r\n| Comma-separated:\t'10.0.1.200,192.168.5.0\/24'\r\n| Array:\t\tarray('10.0.1.200', '192.168.5.0\/24')\r\n*\/\r\n$config['proxy_ips'] = '';\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>autoload.php<\/p>\n<p>ex.<\/p>\n<pre class=\"lang:default decode:true \">&lt;?php\r\ndefined('BASEPATH') OR exit('No direct script access allowed');\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n| AUTO-LOADER\r\n| -------------------------------------------------------------------\r\n| This file specifies which systems should be loaded by default.\r\n|\r\n| In order to keep the framework as light-weight as possible only the\r\n| absolute minimal resources are loaded by default. For example,\r\n| the database is not connected to automatically since no assumption\r\n| is made regarding whether you intend to use it.  This file lets\r\n| you globally define which systems you would like loaded with every\r\n| request.\r\n|\r\n| -------------------------------------------------------------------\r\n| Instructions\r\n| -------------------------------------------------------------------\r\n|\r\n| These are the things you can load automatically:\r\n|\r\n| 1. Packages\r\n| 2. Libraries\r\n| 3. Drivers\r\n| 4. Helper files\r\n| 5. Custom config files\r\n| 6. Language files\r\n| 7. Models\r\n|\r\n*\/\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Packages\r\n| -------------------------------------------------------------------\r\n| Prototype:\r\n|\r\n|  $autoload['packages'] = array(APPPATH.'third_party', '\/usr\/local\/shared');\r\n|\r\n*\/\r\n\r\n$autoload['packages'] = array();\r\n\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Libraries\r\n| -------------------------------------------------------------------\r\n| These are the classes located in the system\/libraries folder\r\n| or in your application\/libraries folder.\r\n|\r\n| Prototype:\r\n|\r\n|\t$autoload['libraries'] = array('database', 'email', 'session');\r\n|\r\n| You can also supply an alternative library name to be assigned\r\n| in the controller:\r\n|\r\n|\t$autoload['libraries'] = array('user_agent' =&gt; 'ua');\r\n*\/\r\n\r\n$autoload['libraries'] = array('session','database','form_validation');\r\n\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Drivers\r\n| -------------------------------------------------------------------\r\n| These classes are located in the system\/libraries folder or in your\r\n| application\/libraries folder within their own subdirectory. They\r\n| offer multiple interchangeable driver options.\r\n|\r\n| Prototype:\r\n|\r\n|\t$autoload['drivers'] = array('cache');\r\n*\/\r\n\r\n$autoload['drivers'] = array();\r\n\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Helper Files\r\n| -------------------------------------------------------------------\r\n| Prototype:\r\n|\r\n|\t$autoload['helper'] = array('url', 'file');\r\n*\/\r\n\r\n$autoload['helper'] = array('html','url','menu','form','file');\r\n\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Config files\r\n| -------------------------------------------------------------------\r\n| Prototype:\r\n|\r\n|\t$autoload['config'] = array('config1', 'config2');\r\n|\r\n| NOTE: This item is intended for use ONLY if you have created custom\r\n| config files.  Otherwise, leave it blank.\r\n|\r\n*\/\r\n\r\n$autoload['config'] = array();\r\n\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Language files\r\n| -------------------------------------------------------------------\r\n| Prototype:\r\n|\r\n|\t$autoload['language'] = array('lang1', 'lang2');\r\n|\r\n| NOTE: Do not include the \"_lang\" part of your file.  For example\r\n| \"codeigniter_lang.php\" would be referenced as array('codeigniter');\r\n|\r\n*\/\r\n\r\n$autoload['language'] = array();\r\n\r\n\r\n\/*\r\n| -------------------------------------------------------------------\r\n|  Auto-load Models\r\n| -------------------------------------------------------------------\r\n| Prototype:\r\n|\r\n|\t$autoload['model'] = array('first_model', 'second_model');\r\n|\r\n| You can also supply an alternative model name to be assigned\r\n| in the controller:\r\n|\r\n|\t$autoload['model'] = array('first_model' =&gt; 'first');\r\n*\/\r\n\r\n$autoload['model'] = array();\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>..<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Codeigniter : How to customizing config.php and autoload for work.<\/p>\n","protected":false},"author":1,"featured_media":2184,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[164],"tags":[165],"class_list":["post-2264","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-codeigniter","tag-codeigniter"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Codeigniter : How to customizing config.php &amp; autoload.php - \u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]<\/title>\n<meta name=\"description\" content=\"\u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e2a\u0e2d\u0e19\u0e17\u0e33 website, \u0e2a\u0e2d\u0e19 php, \u0e2a\u0e2d\u0e19 codeigniter , database, css, web app, sql, bootstrap\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/devbanban.com\/?p=2264\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Codeigniter : How to customizing config.php &amp; autoload.php - \u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]\" \/>\n<meta name=\"twitter:description\" content=\"\u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e2a\u0e2d\u0e19\u0e17\u0e33 website, \u0e2a\u0e2d\u0e19 php, \u0e2a\u0e2d\u0e19 codeigniter , database, css, web app, sql, bootstrap\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264\"},\"author\":{\"name\":\"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/#\\\/schema\\\/person\\\/aa637e5a6aefe44e0dbfcac2b429fcc3\"},\"headline\":\"Codeigniter : How to customizing config.php &#038; autoload.php\",\"datePublished\":\"2018-01-28T03:21:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264\"},\"wordCount\":34,\"image\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/devbanban.com\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/Data-cd.jpg?fit=960%2C720&ssl=1\",\"keywords\":[\"codeigniter\"],\"articleSection\":[\"Codeigniter\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264\",\"url\":\"https:\\\/\\\/devbanban.com\\\/?p=2264\",\"name\":\"Codeigniter : How to customizing config.php & autoload.php - \u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/devbanban.com\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/Data-cd.jpg?fit=960%2C720&ssl=1\",\"datePublished\":\"2018-01-28T03:21:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/#\\\/schema\\\/person\\\/aa637e5a6aefe44e0dbfcac2b429fcc3\"},\"description\":\"\u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e2a\u0e2d\u0e19\u0e17\u0e33 website, \u0e2a\u0e2d\u0e19 php, \u0e2a\u0e2d\u0e19 codeigniter , database, css, web app, sql, bootstrap\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/devbanban.com\\\/?p=2264\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/devbanban.com\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/Data-cd.jpg?fit=960%2C720&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/devbanban.com\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/Data-cd.jpg?fit=960%2C720&ssl=1\",\"width\":960,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/?p=2264#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/devbanban.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Codeigniter : How to customizing config.php &#038; autoload.php\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/#website\",\"url\":\"https:\\\/\\\/devbanban.com\\\/\",\"name\":\"\u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]\",\"description\":\"\u0e2a\u0e2d\u0e19\u0e40\u0e02\u0e35\u0e22\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 \u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e23\u0e30\u0e1a\u0e1a\u0e2d\u0e35\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e34\u0e23\u0e4c\u0e0a \u0e23\u0e30\u0e1a\u0e1a\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e40\u0e27\u0e35\u0e22\u0e19 \u0e23\u0e30\u0e1a\u0e22\u0e37\u0e21\u0e04\u0e37\u0e19\u0e04\u0e23\u0e38\u0e20\u0e31\u0e13\u0e11\u0e4c \u0e23\u0e30\u0e1a\u0e1a\u0e04\u0e25\u0e31\u0e07\u0e02\u0e49\u0e2d\u0e2a\u0e2d\u0e1a \u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e0b\u0e48\u0e2d\u0e21 \u0e23\u0e30\u0e1a\u0e1a\u0e27\u0e34\u0e08\u0e31\u0e22 \u0e41\u0e25\u0e30\u0e23\u0e30\u0e1a\u0e1a\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1e\u0e23\u0e49\u0e2d\u0e21 Workshop PHP PDO MySQL \u0e2d\u0e35\u0e01\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/devbanban.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/devbanban.com\\\/#\\\/schema\\\/person\\\/aa637e5a6aefe44e0dbfcac2b429fcc3\",\"name\":\"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35\",\"description\":\"\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e19\u0e43\u0e08\u0e40\u0e17\u0e04\u0e42\u0e19\u0e42\u0e25\u0e22\u0e35\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c \u0e41\u0e25\u0e30\u0e2d\u0e22\u0e32\u0e01\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e14\u0e49\u0e32\u0e19\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e41\u0e25\u0e30\u0e2d\u0e37\u0e48\u0e19\u0e46\u0e2d\u0e35\u0e01\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22...\",\"sameAs\":[\"http:\\\/\\\/devbanban.com\\\/\"],\"url\":\"https:\\\/\\\/devbanban.com\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Codeigniter : How to customizing config.php & autoload.php - \u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]","description":"\u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e2a\u0e2d\u0e19\u0e17\u0e33 website, \u0e2a\u0e2d\u0e19 php, \u0e2a\u0e2d\u0e19 codeigniter , database, css, web app, sql, bootstrap","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/devbanban.com\/?p=2264","twitter_card":"summary_large_image","twitter_title":"Codeigniter : How to customizing config.php & autoload.php - \u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]","twitter_description":"\u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e2a\u0e2d\u0e19\u0e17\u0e33 website, \u0e2a\u0e2d\u0e19 php, \u0e2a\u0e2d\u0e19 codeigniter , database, css, web app, sql, bootstrap","twitter_image":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1","twitter_misc":{"Written by":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/devbanban.com\/?p=2264#article","isPartOf":{"@id":"https:\/\/devbanban.com\/?p=2264"},"author":{"name":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","@id":"https:\/\/devbanban.com\/#\/schema\/person\/aa637e5a6aefe44e0dbfcac2b429fcc3"},"headline":"Codeigniter : How to customizing config.php &#038; autoload.php","datePublished":"2018-01-28T03:21:18+00:00","mainEntityOfPage":{"@id":"https:\/\/devbanban.com\/?p=2264"},"wordCount":34,"image":{"@id":"https:\/\/devbanban.com\/?p=2264#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1","keywords":["codeigniter"],"articleSection":["Codeigniter"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/devbanban.com\/?p=2264","url":"https:\/\/devbanban.com\/?p=2264","name":"Codeigniter : How to customizing config.php & autoload.php - \u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]","isPartOf":{"@id":"https:\/\/devbanban.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/devbanban.com\/?p=2264#primaryimage"},"image":{"@id":"https:\/\/devbanban.com\/?p=2264#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1","datePublished":"2018-01-28T03:21:18+00:00","author":{"@id":"https:\/\/devbanban.com\/#\/schema\/person\/aa637e5a6aefe44e0dbfcac2b429fcc3"},"description":"\u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e17\u0e33\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c, \u0e2a\u0e2d\u0e19\u0e17\u0e33 website, \u0e2a\u0e2d\u0e19 php, \u0e2a\u0e2d\u0e19 codeigniter , database, css, web app, sql, bootstrap","breadcrumb":{"@id":"https:\/\/devbanban.com\/?p=2264#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devbanban.com\/?p=2264"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/devbanban.com\/?p=2264#primaryimage","url":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1","contentUrl":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1","width":960,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/devbanban.com\/?p=2264#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devbanban.com\/"},{"@type":"ListItem","position":2,"name":"Codeigniter : How to customizing config.php &#038; autoload.php"}]},{"@type":"WebSite","@id":"https:\/\/devbanban.com\/#website","url":"https:\/\/devbanban.com\/","name":"\u0e2a\u0e2d\u0e19\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 [PHP, SQL, Codeigniter, Bootstrap, HTML]","description":"\u0e2a\u0e2d\u0e19\u0e40\u0e02\u0e35\u0e22\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e1f\u0e23\u0e35 \u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e23\u0e30\u0e1a\u0e1a\u0e2d\u0e35\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e34\u0e23\u0e4c\u0e0a \u0e23\u0e30\u0e1a\u0e1a\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e40\u0e27\u0e35\u0e22\u0e19 \u0e23\u0e30\u0e1a\u0e22\u0e37\u0e21\u0e04\u0e37\u0e19\u0e04\u0e23\u0e38\u0e20\u0e31\u0e13\u0e11\u0e4c \u0e23\u0e30\u0e1a\u0e1a\u0e04\u0e25\u0e31\u0e07\u0e02\u0e49\u0e2d\u0e2a\u0e2d\u0e1a \u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e0b\u0e48\u0e2d\u0e21 \u0e23\u0e30\u0e1a\u0e1a\u0e27\u0e34\u0e08\u0e31\u0e22 \u0e41\u0e25\u0e30\u0e23\u0e30\u0e1a\u0e1a\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1e\u0e23\u0e49\u0e2d\u0e21 Workshop PHP PDO MySQL \u0e2d\u0e35\u0e01\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devbanban.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/devbanban.com\/#\/schema\/person\/aa637e5a6aefe44e0dbfcac2b429fcc3","name":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","description":"\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e19\u0e43\u0e08\u0e40\u0e17\u0e04\u0e42\u0e19\u0e42\u0e25\u0e22\u0e35\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c \u0e41\u0e25\u0e30\u0e2d\u0e22\u0e32\u0e01\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e14\u0e49\u0e32\u0e19\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e41\u0e25\u0e30\u0e2d\u0e37\u0e48\u0e19\u0e46\u0e2d\u0e35\u0e01\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22...","sameAs":["http:\/\/devbanban.com\/"],"url":"https:\/\/devbanban.com\/?author=1"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p6bpqQ-Aw","jetpack-related-posts":[{"id":2211,"url":"https:\/\/devbanban.com\/?p=2211","url_meta":{"origin":2264,"position":0},"title":"Codeigniter : Remove index.php  By .htaccess","author":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","date":"03\/01\/2018","format":false,"excerpt":"Codeigniter : Remove index.php By .htaccess if you want to remove index.php\u00a0 in your codeigniter, you can create easy\u00a0 .htaccess to you website step 1\u00a0 Open the file\u00a0config.php\u00a0 Find and Replace the below code $config['index_page'] = ''; Step 2 \u00a0create\u00a0.htaccess\u00a0 file.\u00a0 \u00a0Then create this file in your codeigniter folder,\u00a0application\u00a0folder and\u2026","rel":"","context":"In &quot;Codeigniter&quot;","block_context":{"text":"Codeigniter","link":"https:\/\/devbanban.com\/?cat=164"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":2224,"url":"https:\/\/devbanban.com\/?p=2224","url_meta":{"origin":2264,"position":1},"title":"Codeigniter : Config upload file and  encrypt_name","author":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","date":"05\/01\/2018","format":false,"excerpt":"Codeigniter : Config upload file\u00a0and encrypt_name Easy code to config\u00a0 \u00a0on upload file\u00a0 in codeigniter\u00a0 example code : $config['upload_path'] = '.\/uploads\/'; $config['allowed_types'] = 'gif|jpg|png'; $config['max_size'] = '2000'; $config['max_width'] = '2000'; $config['max_height'] = '2000'; Description: destination path for store the file $config['upload_path'] = '.\/uploads\/'; allowed type file image file $config['allowed_types'] =\u2026","rel":"","context":"In &quot;Codeigniter&quot;","block_context":{"text":"Codeigniter","link":"https:\/\/devbanban.com\/?cat=164"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/01\/Data-cd.jpg?fit=960%2C720&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":3109,"url":"https:\/\/devbanban.com\/?p=3109","url_meta":{"origin":2264,"position":2},"title":"\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e04\u0e25\u0e34\u0e1b \u0e2a\u0e2d\u0e19\u0e17\u0e33\u0e23\u0e30\u0e1a\u0e1a\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e40\u0e27\u0e35\u0e22\u0e19\u0e2d\u0e2d\u0e19\u0e44\u0e25\u0e19\u0e4c (php, codeigniter, *PHP7)","author":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","date":"09\/12\/2019","format":false,"excerpt":"\u0e04\u0e2d\u0e23\u0e4c\u0e2a\u0e2d\u0e2d\u0e19\u0e44\u0e25\u0e19\u0e4c \u0e2a\u0e2d\u0e19 php \u0e17\u0e33\u0e23\u0e30\u0e1a\u0e1a\u0e04\u0e25\u0e31\u0e07\u0e02\u0e49\u0e2d\u0e2a\u0e2d\u0e1a, \u0e23\u0e30\u0e1a\u0e1a\u0e22\u0e37\u0e21-\u0e04\u0e37\u0e19\u0e04\u0e23\u0e38\u0e20\u0e31\u0e13\u0e11\u0e4c, \u0e23\u0e30\u0e1a\u0e1a\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e40\u0e27\u0e35\u0e22\u0e19, \u0e23\u0e30\u0e1a\u0e1a\u0e15\u0e30\u0e01\u0e23\u0e49\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 \u0e08\u0e48\u0e32\u0e22\u0e04\u0e23\u0e31\u0e49\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27 \u0e40\u0e02\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e14\u0e49\u0e15\u0e25\u0e2d\u0e14\u0e0a\u0e35\u0e1e \u0e08\u0e48\u0e32\u0e22\u0e40\u0e2b\u0e21\u0e32\u0e46\u0e17\u0e35\u0e40\u0e14\u0e35\u0e22\u0e27\u0e08\u0e1a\u00a03,999 \u0e1a\u0e32\u0e17 \u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19 !!\u00a0 (\u0e2a\u0e2d\u0e19\u0e17\u0e33 5 \u0e23\u0e30\u0e1a\u0e1a) *\u0e1c\u0e48\u0e2d\u0e19\u0e44\u0e14\u0e49 3 \u0e07\u0e27\u0e14 \u0e40\u0e0a\u0e48\u0e19 (1,999 + 1,000 + 1,000) *\u0e08\u0e48\u0e32\u0e22\u0e07\u0e27\u0e14\u0e41\u0e23\u0e01 1,999 \u0e1a\u0e32\u0e17\u0e43\u0e2b\u0e49 code&clip \u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e04\u0e15\u0e15\u0e32\u0e25\u0e47\u0e2d\u0e04\u0e44\u0e1b\u0e01\u0e48\u0e2d\u0e19(php+mysqli) \u2705 \u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e14\u0e49\u0e15\u0e25\u0e2d\u0e14\u0e0a\u0e35\u0e1e *\u0e40\u0e23\u0e35\u0e22\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e04\u0e25\u0e34\u0e1b\u00a0 \u0e44\u0e14\u0e49 code \u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e1b\u0e1f\u0e23\u0e35\u0e17\u0e38\u0e01\u0e44\u0e1f\u0e25\u0e4c (\u0e2a\u0e48\u0e07 Link \u0e43\u0e2b\u0e49\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e43\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e31\u0e1a) \u2705 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e01\u0e47\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e14\u0e49 * \u0e21\u0e35\u0e04\u0e25\u0e34\u0e1b\u0e2a\u0e2d\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e43\u0e2b\u0e49 \u2705 \u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e44\u0e14\u0e49\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e22\u0e46 \u2705 \u0e42\u0e1b\u0e23\u0e44\u0e1f\u0e25\u0e4c\u0e1c\u0e39\u0e49\u0e2a\u0e2d\u0e19 : https:\/\/devbanban.com\/?page_id=2675 \u00a0\u2026","rel":"","context":"In &quot;devbanbanVIP&quot;","block_context":{"text":"devbanbanVIP","link":"https:\/\/devbanban.com\/?cat=249"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2019\/02\/devbanban-1000px.jpg?fit=1000%2C667&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2019\/02\/devbanban-1000px.jpg?fit=1000%2C667&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2019\/02\/devbanban-1000px.jpg?fit=1000%2C667&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2019\/02\/devbanban-1000px.jpg?fit=1000%2C667&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":3517,"url":"https:\/\/devbanban.com\/?p=3517","url_meta":{"origin":2264,"position":3},"title":"\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e08\u0e32\u0e01 2 Input \u0e14\u0e49\u0e27\u0e22 CodeIgniter, How to upload two images into two fields using CodeIgniter","author":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","date":"11\/05\/2020","format":false,"excerpt":"\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07 code \u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e08\u0e32\u0e01 2 Input \u0e14\u0e49\u0e27\u0e22 CodeIgniter \u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07 Code \u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e08\u0e32\u0e01 2 Input \u0e14\u0e49\u0e27\u0e22 CodeIgniter, How to upload two images into two fields using CodeIgniter table products CREATE TABLE `products` ( `id` int(5) NOT NULL, `p_img1` varchar(255) DEFAULT NULL, `p_img2` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ALTER TABLE `products` ADD\u2026","rel":"","context":"In &quot;Codeigniter&quot;","block_context":{"text":"Codeigniter","link":"https:\/\/devbanban.com\/?cat=164"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2020\/05\/form_codeigniter-.png?fit=689%2C320&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2020\/05\/form_codeigniter-.png?fit=689%2C320&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2020\/05\/form_codeigniter-.png?fit=689%2C320&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":2517,"url":"https:\/\/devbanban.com\/?p=2517","url_meta":{"origin":2264,"position":4},"title":"Free Codeigniter :  Back-end \u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 Product Management","author":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","date":"19\/07\/2018","format":false,"excerpt":"Free Codeigniter : Back-end \u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 Product Management \u0e43\u0e2b\u0e49\u0e40\u0e2d\u0e32\u0e44\u0e1b\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e15\u0e48\u0e2d\u0e04\u0e23\u0e31\u0e1a \u0e1f\u0e23\u0e35\u0e04\u0e2d\u0e23\u0e4c\u0e2a PHP+MySQLi+AdminLTE https:\/\/www.youtube.com\/watch?v=4y2U5diTnPQ&list=PLEA4F1w-xYVadrcnedOqksEoOhh4gZfzO&index=1 \u00a0 \u00a0 \u0e40\u0e1b\u0e47\u0e19 Web App \u0e15\u0e31\u0e27\u0e41\u0e23\u0e01\u0e17\u0e35\u0e48\u0e1c\u0e21\u0e2b\u0e31\u0e14\u0e40\u0e02\u0e35\u0e22\u0e19 Codeigniter \u0e04\u0e23\u0e31\u0e1a\u00a0 \u0e23\u0e30\u0e1a\u0e1a\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e07\u0e32\u0e19\u0e44\u0e14\u0e49\u0e14\u0e31\u0e07\u0e19\u0e35\u0e49 \u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23 Admin \u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01 \u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 \u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 \u0e20\u0e32\u0e1e\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19 \u00a0 \u00a0 \u00a0 \u00a0 devbanbanVIP Codeigniter \u0e23\u0e30\u0e1a\u0e1a\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e40\u0e27\u0e35\u0e22\u0e19\u00a0 \u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e01\u0e25\u0e38\u0e48\u0e21 inbox -> https:\/\/www.facebook.com\/sornwebsites\/ https:\/\/www.youtube.com\/playlist?list=PLEA4F1w-xYVaY4qvlDOhiJAGE2QxdABK6 \u00a0 \u00a0 Download Source Code\u00a0 \u0e2b\u0e23\u0e37\u0e2d https:\/\/github.com\/devbanban\/Codeigniter_product_management \u00a0 \u00a0 \u0e23\u0e48\u0e27\u0e21\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u00a0\u0e04\u0e48\u0e32\u0e01\u0e32\u0e41\u0e1f\u00a0\u0e04\u0e48\u0e32\u0e42\u0e2e\u0e2a\u00a0devbanban.com \u0e41\u0e25\u0e30\u0e17\u0e35\u0e21\u0e07\u0e32\u0e19\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48 \u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e01\u0e23\u0e38\u0e07\u0e44\u0e17\u0e22\u2026","rel":"","context":"In &quot;Codeigniter&quot;","block_context":{"text":"Codeigniter","link":"https:\/\/devbanban.com\/?cat=164"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/07\/Codeigniter-Apps.jpg?fit=960%2C720&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/07\/Codeigniter-Apps.jpg?fit=960%2C720&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/07\/Codeigniter-Apps.jpg?fit=960%2C720&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/07\/Codeigniter-Apps.jpg?fit=960%2C720&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":2901,"url":"https:\/\/devbanban.com\/?p=2901","url_meta":{"origin":2264,"position":5},"title":"config codeigniter multiple language","author":"\u0e1e\u0e34\u0e28\u0e34\u0e29\u0e10\u0e4c \u0e1a\u0e27\u0e23\u0e40\u0e25\u0e34\u0e28\u0e2a\u0e38\u0e18\u0e35","date":"14\/03\/2019","format":false,"excerpt":"config codeigniter multiple language controller <?php defined('BASEPATH') OR exit('No direct script access allowed'); class Home extends CI_Controller { public function __construct() { parent::__construct(); check_lang(); $this->load->model('mail_model'); } public function index() { $data['mails'] = $this->mail_model->get_all_mail(); $data['language']=$this->session->userdata('language'); \/\/ echo '<pre>'; \/\/ print_r($data); \/\/ echo '<\/pre>'; $this->load->view('home_view2',$data); } } default_helper.php from folder helpers \u00a0\u2026","rel":"","context":"In &quot;Codeigniter&quot;","block_context":{"text":"Codeigniter","link":"https:\/\/devbanban.com\/?cat=164"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/devbanban.com\/wp-content\/uploads\/2018\/05\/ci.png?fit=431%2C512&ssl=1&resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/posts\/2264","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/devbanban.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2264"}],"version-history":[{"count":1,"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/posts\/2264\/revisions"}],"predecessor-version":[{"id":2265,"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/posts\/2264\/revisions\/2265"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devbanban.com\/index.php?rest_route=\/wp\/v2\/media\/2184"}],"wp:attachment":[{"href":"https:\/\/devbanban.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2264"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devbanban.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2264"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devbanban.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}