| Server IP : 103.82.32.14 / Your IP : 216.73.217.121 Web Server : Apache/2.2.32 (Unix) mod_ssl/2.2.32 OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 System : Linux cloud.lonmanhoabinh.com 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : lonmakmf ( 524) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/bumphmxd/public_html/includes/ |
Upload File : |
<?php
// phpFastCache Library
require_once(dirname(__FILE__) . "/phpfastcache/3.0.0/phpfastcache.php");
// OK, setup your cache
phpFastCache::$config = array(
"storage" => "auto", // auto, files, sqlite, apc, cookie, memcache, memcached, predis, redis, wincache, xcache
"default_chmod" => 0777, // For security, please use 0666 for module and 0644 for cgi.
/*
* OTHERS
*/
// create .htaccess to protect cache folder
// By default the cache folder will try to create itself outside your public_html.
// However an htaccess also created in case.
"htaccess" => true,
// path to cache folder, leave it blank for auto detect
"path" => UPLOAD_DIR."/cache_phimle",
"securityKey" => "auto", // auto will use domain name, set it to 1 string if you use alias domain name
// MEMCACHE
"memcache" => array(
array("127.0.0.1",11211,1),
// array("new.host.ip",11211,1),
),
// REDIS
"redis" => array(
"host" => "127.0.0.1",
"port" => "",
"password" => "",
"database" => "",
"timeout" => ""
),
"extensions" => array(),
/*
* Fall back when old driver is not support
*/
"fallback" => "files",
);
// temporary disabled phpFastCache
phpFastCache::$disabled = false;