gpt4 book ai didi

drupal - 如何完全禁用缓存?

转载 作者:行者123 更新时间:2023-12-04 00:48:31 24 4
gpt4 key购买 nike

Drupal 6 的缓存可以设置为禁用、正常或激进。我无法为我的 Drupal 7 安装找到这些选项。只有一个按钮可以刷新所有缓存,但我对模块或模板所做的每一次更改都必须单击它。通过更改,我的意思是向模块或模板添加一些 HTML 标记。

感谢mirzu的回复,我已经安装了devel module但它也不起作用。我看到我的更改的唯一方法是禁用和启用该模块。

hello.module 看起来像:

function annotate_menu() {
$items = array();
$items['hello'] = array(
'title' => t('Hello world'),
'page callback' => 'hello_output',
'access arguments' => array('access content'),
);

return $items;
}

function hello_output() {
header('Content-type: text/plain; charset=UTF-8');
header('Content-Disposition: inline');
return 'annotate';
}

模板页面-hello.tpl.php 包含 print $content; .

我通过 http://localhost/test/hello 访问该页面.

最佳答案

完全禁用缓存并使用 devel module并选中“在每个页面加载时重建缓存注册表”框。

关于drupal - 如何完全禁用缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4892573/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com