Jump to content
  • 0

Не отображается шаблон Smarty


tany
 Share

Question

Недавно начала осваивать Smarty (равно как и PHP). Дано:

Windows XP SP2;

PHP 5.2.5

IIS 5.1

Хотела вывести что то типа Hello World в шаблон.

Структура каталогов следующая:

C:InetpubwwwrootSmartyLibs -здесь лежат файлы Smarty

C:InetpubwwwrootProjectindex.php - стартовая страница

C:InetpubwwwrootProjecttemplatesindex.tpl - здесь я положила шаблон

C:InetpubwwwrootProjecttemplates_с

C:InetpubwwwrootProjectconfigs

C:InetpubwwwrootProjectcache

Вот как это выглядит изнутри:

Index.php

<?php

error_reporting(E_ALL);
require_once("C:/Inetpub/wwwroot/Smarty/Libs/Smarty.class.php");

$s = new Smarty();

$s->template_dir="./templates/";
$s->compile_dir="./templates_c/";
$s->config_dir="./configs/";
$s->cache_dir="./cache/";

$T="Hello World";

$s->assign("Q",$T);

$s->display("./templates/index.tpl");

?>

Ну и шаблон

index.tpl

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1251">
<title></title>
</head>
<body>
<p>{$Q}</p>
</body>
</html>

Проще некуда мне кажется.

Но... выполняю и вижу только пустоту. Чистую страничку. Такое впечатление что инструкция display игнорируется, но

никаких сообщений об ошибке не получаю.

Пробовала задавать абсолютные пути. Результат тот же. Что делать? Может проблема в правах, но я читала что это

актуально только для Апача. В общем не знаю...:) Помогите кто чем может

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Попробуй

echo $s->fetch('template.tpl');

и

$s->display('template.tpl');

Попробуй скачать http://www.denwer.ru/. На нем у меня все прекрасно работает.

И попробуй пути прописать без ./ ... Можешь попробовать полные. В общем поиграйся с путями.

А в качестве параметра display не обязательно писать частичный путь. Достаточно просто имя файла в директории templates.

Вообще, если все удачно, то в директории templates_c должны появиться тэмповые файлы скомпилированных шаблонов.

Link to comment
Share on other sites

  • 0

Вот до чего дошло, и все равно не работает

<?php

error_reporting(E_ALL);
require_once("C:/Inetpub/wwwroot/Smarty/Libs/Smarty.class.php");

$s = new Smarty();

$s->template_dir="C:/Inetpub/wwwroot/Project/templates/";
$s->compile_dir="C:/Inetpub/wwwroot/Project/templates_с/";
$s->config_dir="C:/Inetpub/wwwroot/Project/configs/";
$s->cache_dir="C:/Inetpub/wwwroot/Project/cache/";

$T="Hello World";

$s->assign("Q",$T);

$s->display("index.tpl");

?>

Что здесь может быть неправильно? Все пути указаны ясно и недвусмысленно.

Может есть какой-то ньюанс установки на IIS?..

Link to comment
Share on other sites

  • 0

Проблема решена. Необходимо было выдать разрешения на запись папок шаблонов для учетной записи анонимного доступа в Интернет. Спасибо всем за участие

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