Jump to content
  • 0

Темплейты smarty кешируются?


waldicom
 Share

Question

Добрый день.

Имею вопрос по smarty.

Вводная: есть сайт с использованием smarty. Скомпилированные темплейты лежат в паке templates_c

Теперь собсвенно к вопросу: если скопировать новый темплейт (xxxxx.tpl) в папку templates, то на странице ничего не обновиться, пока не будет удален скомпилированный темплейт с папки templates_c

Может кто встречал такую бяку? И как от нее избавиться?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Большое спасабо!

Почитал тут: http://smarty.net/manual/en/variable.compile.check.php

Судя по описанию то, что надо.

Сделал у себя так:

$smarty = new Smarty; //core smarty object

$smarty->template_dir = "trampampam";

$smarty->compile_check = true;

Но к сожалению пока проблема не решилась, то есть или в ручную очищать папку или ждать некоторое время.

Может какая-либо еще идея есть?

Link to comment
Share on other sites

  • 0

К сожалению проблема пока не решена.

Удалил в ручную все скомпилированные темплейты. Обновил страницу, темплейты сгенерировались.

Затем обновил темплейт и залил его на сервер.

Но ничего не обновилось, хотя директива $smarty->compile_check = true; в файле стоит.

Может бытья не там прописываю, где надо?

Link to comment
Share on other sites

  • 0

Вот мой файл настроек, подключается для каждой PHP-страницы.


<?php

require ("Smarty.class.php");
class Smarty_Htmlbook extends Smarty {
function Smarty_Htmlbook() {
$this->Smarty();
$this->template_dir = "/home/htmlbook.ru/smarty/templates/";
$this->compile_dir = "/home/htmlbook.ru/smarty/templates_c/";
$this->config_dir = "/home/htmlbook.ru/smarty/configs/";
$this->cache_dir = "/home/htmlbook.ru/smarty/cache/";
$this->caching = 0;
$this->compile_check = 1;
}
}

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy