/
home
/
u417168693
/
domains
/
devtechera.com
/
public_html
/
app
/
Config
/
/home/u417168693/domains/devtechera.com/public_html/app/Config
mkdir
upload
Name
Size
Mode
Actions
Boot/
-
0755
rm
App.php
8174
0644
edit
dl
rm
Autoload.php
3031
0644
edit
dl
rm
Cache.php
6245
0644
edit
dl
rm
Constants.php
3986
0644
edit
dl
rm
ContentSecurityPolicy.php
4226
0644
edit
dl
rm
Cookie.php
3554
0644
edit
dl
rm
Cors.php
3511
0644
edit
dl
rm
CURLRequest.php
551
0644
edit
dl
rm
Database.php
6988
0644
edit
dl
rm
DocTypes.php
3080
0644
edit
dl
rm
Email.php
2333
0644
edit
dl
rm
Encryption.php
2844
0644
edit
dl
rm
Events.php
1875
0644
edit
dl
rm
Exceptions.php
4001
0644
edit
dl
rm
Feature.php
725
0644
edit
dl
rm
Filters.php
3358
0644
edit
dl
rm
ForeignCharacters.php
174
0644
edit
dl
rm
Format.php
2614
0644
edit
dl
rm
Generators.php
2133
0644
edit
dl
rm
Honeypot.php
855
0644
edit
dl
rm
Images.php
708
0644
edit
dl
rm
Kint.php
1983
0644
edit
dl
rm
Logger.php
5995
0644
edit
dl
rm
Migrations.php
1592
0644
edit
dl
rm
Mimes.php
15720
0644
edit
dl
rm
Modules.php
2313
0644
edit
dl
rm
Optimize.php
944
0644
edit
dl
rm
Pager.php
1189
0644
edit
dl
rm
Paths.php
2839
0644
edit
dl
rm
Publisher.php
807
0644
edit
dl
rm
Routes.php
5343
0644
edit
dl
rm
Routing.php
3681
0644
edit
dl
rm
Security.php
3415
0644
edit
dl
rm
Services.php
921
0644
edit
dl
rm
Session.php
4573
0644
edit
dl
rm
Toolbar.php
4556
0644
edit
dl
rm
UserAgents.php
9813
0644
edit
dl
rm
Validation.php
1192
0644
edit
dl
rm
View.php
2112
0644
edit
dl
rm
Edit:
/home/u417168693/domains/devtechera.com/public_html/app/Config/Cache.php
(6245B)
<?php namespace Config; use CodeIgniter\Cache\CacheInterface; use CodeIgniter\Cache\Handlers\DummyHandler; use CodeIgniter\Cache\Handlers\FileHandler; use CodeIgniter\Cache\Handlers\MemcachedHandler; use CodeIgniter\Cache\Handlers\PredisHandler; use CodeIgniter\Cache\Handlers\RedisHandler; use CodeIgniter\Cache\Handlers\WincacheHandler; use CodeIgniter\Config\BaseConfig; class Cache extends BaseConfig { /** * -------------------------------------------------------------------------- * Primary Handler * -------------------------------------------------------------------------- * * The name of the preferred handler that should be used. If for some reason * it is not available, the $backupHandler will be used in its place. */ public string $handler = 'file'; /** * -------------------------------------------------------------------------- * Backup Handler * -------------------------------------------------------------------------- * * The name of the handler that will be used in case the first one is * unreachable. Often, 'file' is used here since the filesystem is * always available, though that's not always practical for the app. */ public string $backupHandler = 'dummy'; /** * -------------------------------------------------------------------------- * Cache Directory Path * -------------------------------------------------------------------------- * * The path to where cache files should be stored, if using a file-based * system. * * @deprecated Use the driver-specific variant under $file */ public string $storePath = WRITEPATH . 'cache/'; /** * -------------------------------------------------------------------------- * Key Prefix * -------------------------------------------------------------------------- * * This string is added to all cache item names to help avoid collisions * if you run multiple applications with the same cache engine. */ public string $prefix = ''; /** * -------------------------------------------------------------------------- * Default TTL * -------------------------------------------------------------------------- * * The default number of seconds to save items when none is specified. * * WARNING: This is not used by framework handlers where 60 seconds is * hard-coded, but may be useful to projects and modules. This will replace * the hard-coded value in a future release. */ public int $ttl = 60; /** * -------------------------------------------------------------------------- * Reserved Characters * -------------------------------------------------------------------------- * * A string of reserved characters that will not be allowed in keys or tags. * Strings that violate this restriction will cause handlers to throw. * Default: {}()/\@: * * NOTE: The default set is required for PSR-6 compliance. */ public string $reservedCharacters = '{}()/\@:'; /** * -------------------------------------------------------------------------- * File settings * -------------------------------------------------------------------------- * Your file storage preferences can be specified below, if you are using * the File driver. * * @var array<string, int|string|null> */ public array $file = [ 'storePath' => WRITEPATH . 'cache/', 'mode' => 0640, ]; /** * ------------------------------------------------------------------------- * Memcached settings * ------------------------------------------------------------------------- * Your Memcached servers can be specified below, if you are using * the Memcached drivers. * * @see https://codeigniter.com/user_guide/libraries/caching.html#memcached * * @var array<string, bool|int|string> */ public array $memcached = [ 'host' => '127.0.0.1', 'port' => 11211, 'weight' => 1, 'raw' => false, ]; /** * ------------------------------------------------------------------------- * Redis settings * ------------------------------------------------------------------------- * Your Redis server can be specified below, if you are using * the Redis or Predis drivers. * * @var array<string, int|string|null> */ public array $redis = [ 'host' => '127.0.0.1', 'password' => null, 'port' => 6379, 'timeout' => 0, 'database' => 0, ]; /** * -------------------------------------------------------------------------- * Available Cache Handlers * -------------------------------------------------------------------------- * * This is an array of cache engine alias' and class names. Only engines * that are listed here are allowed to be used. * * @var array<string, class-string<CacheInterface>> */ public array $validHandlers = [ 'dummy' => DummyHandler::class, 'file' => FileHandler::class, 'memcached' => MemcachedHandler::class, 'predis' => PredisHandler::class, 'redis' => RedisHandler::class, 'wincache' => WincacheHandler::class, ]; /** * -------------------------------------------------------------------------- * Web Page Caching: 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. * ['q'] = Enabled, but only take into account the specified list * of query parameters. * * @var bool|list<string> */ public $cacheQueryString = false; }
Save
cmd:
run