- 论坛徽章:
- 0
|
服务器,RHEL5.2+apache2.2.10+php-5.2.8
smarty版本:2.6.22
web服务器配置是成功的。phpinfo()能正常显示信息。
smarty存放位置:/usr/local/apache2/htdocs/smarty
index.php内容:
<?php
require( '/usr/local/apache2/htdocs/smarty/Smarty.class.php' );
$smarty = new Smarty();
$smarty->template_dir = '/usr/local/apache2/htdocs/smarty/templates';
$smarty->compile_dir = '/usr/local/apache2/htdocs/smarty/templates_c';
$smarty->cache_dir = '/usr/local/apache2/htdocs/smarty/cache';
$smarty->config_dir = '/usr/local/apache2/htdocs/smarty/configs';
$smarty->assign( 'name', 'Ned' );
$smarty->display( 'index.tpl' );
?>
index.tpl内容:
<html>
<head>
<title>Smarty</title>
</head>
<body>
Hello, {$name}!
</body>
</html>
cache权限755,所属用户nobody,所属组nobody。
templates_c权限755,所属用户nobody,所属组nobody。
index.tpl root.root 权限755
使用浏览器打开首页,总是一片空白,没有任何显示,连浏览器标题也没有变化,没有任何提示(firefox),ie显示"http 500 internal server error"。
不知道是为什么?实在不知所错,请各位帅哥美女帮帮忙。
另外,在smarty官网上看到,对服务器没有特别的要求。谢谢。
[ 本帖最后由 raquid 于 2008-12-19 21:16 编辑 ] |
|