Как очистить кеш страниц в CodeIgniter - PullRequest
6 голосов
/ 14 сентября 2011

я использую CodeIgniter.всегда часть моей страницы является кешем и не удаляется на Ctrl+F5 в браузере. Когда я изменяю имя страницы в представлении, это работало.!!!?

Как очистить кеш страниц в CodeIgniter?

Ответы [ 4 ]

8 голосов
/ 15 сентября 2011

Вам необходимо вручную удалить кэшированные элементы в папке application/cache.

https://www.codeigniter.com/user_guide/general/caching.html

5 голосов
/ 23 июля 2013
function delete_cache($uri_string=null)
{
    $CI =& get_instance();
    $path = $CI->config->item('cache_path');
    $path = rtrim($path, DIRECTORY_SEPARATOR);

    $cache_path = ($path == '') ? APPPATH.'cache/' : $path;

    $uri =  $CI->config->item('base_url').
            $CI->config->item('index_page').
            $uri_string;

    $cache_path .= md5($uri);

    return unlink($cache_path);
}
3 голосов
/ 14 августа 2015
public function clear_path_cache($uri)
{
    $CI =& get_instance();
    $path = $CI->config->item('cache_path');
    //path of cache directory
    $cache_path = ($path == '') ? APPPATH.'cache/' : $path;

    $uri =  $CI->config->item('base_url').
    $CI->config->item('index_page').
    $uri;
    $cache_path .= md5($uri);

    return @unlink($cache_path);
}




/**
 * Clears all cache from the cache directory
 */
public function clear_all_cache()
{
    $CI =& get_instance();
    $path = $CI->config->item('cache_path');

    $cache_path = ($path == '') ? APPPATH.'cache/' : $path;

    $handle = opendir($cache_path);
    while (($file = readdir($handle))!== FALSE) 
    {
        //Leave the directory protection alone
        if ($file != '.htaccess' && $file != 'index.html')
        {
           @unlink($cache_path.'/'.$file);
        }
    }
    closedir($handle);       
}
0 голосов
/ 14 сентября 2011

Вероятно, session. Попробуйте удалить куки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...