28 lines
979 B
PHP
Executable File
28 lines
979 B
PHP
Executable File
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| File Cache configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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 guess the protocol and path
|
|
| 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['file_cache_path'] = dirname(FCPATH). '/application/cache/';
|