清除Drupal 5缓存
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除Drupal 5缓存相关的知识,希望对你有一定的参考价值。
This might work in Drupal 6, but I haven't tried it.
<?php /* * See http://drupal.org/node/152983 for details! */ // only allow site administrators to visit this page: if (!user_access('administer site configuration')) { drupal_not_found(); } else { drupal_clear_css_cache(); 'cache', 'cache_content', 'cache_filter', 'cache_menu', 'cache_page', 'cache_views', ); foreach ($tables as $table) { cache_clear_all('*', $table, TRUE); } drupal_set_message('Cache cleared.'); drupal_goto('/'); } ?>
以上是关于清除Drupal 5缓存的主要内容,如果未能解决你的问题,请参考以下文章