smarty的编译目录配置问题
当我这样配置时就会出错$smy->compile_dir="http://127.0.0.1:9999/pasacms/templates_c";这样就没问题:$smy-...
当我这样配置时就会出错$smy->compile_dir="http://127.0.0.1:9999/pasacms/templates_c";
这样就没问题:$smy->compile_dir="./templates_c";
为什么,难道编译目录不能用域名指定目录的位置吗
错误提示代码:Fatal error: Smarty error: the $compile_dir 'http://127.0.0.1:9999/pasacms/templates_c' does not exist, or is not a directory. in C:\AppServ\www\pasacms\Smarty\libs\Smarty.class.php on line 1092 展开
这样就没问题:$smy->compile_dir="./templates_c";
为什么,难道编译目录不能用域名指定目录的位置吗
错误提示代码:Fatal error: Smarty error: the $compile_dir 'http://127.0.0.1:9999/pasacms/templates_c' does not exist, or is not a directory. in C:\AppServ\www\pasacms\Smarty\libs\Smarty.class.php on line 1092 展开
2个回答
展开全部
要么相对路径,要么绝对物理路径(C:\AppServ\www\pasacms\ ,不可以用域名指向)
我一般这样使用
//common.inc.php在common文件夹下,所以下面用到-7,定义网站所在的根目录
define('ROOT', substr(dirname(__FILE__), 0, -7));
//调用smarty模板
require_once(ROOT.'./lib/Smarty-2.6.26/Smarty.class.php');
@define("TEMPLATE_PATH", ROOT . "./templates/");
@define("TEMPLATE_C_PATH", ROOT . "./templates_c/");
$smarty->template_dir = TEMPLATE_PATH;
$smarty->compile_dir = TEMPLATE_C_PATH;
我一般这样使用
//common.inc.php在common文件夹下,所以下面用到-7,定义网站所在的根目录
define('ROOT', substr(dirname(__FILE__), 0, -7));
//调用smarty模板
require_once(ROOT.'./lib/Smarty-2.6.26/Smarty.class.php');
@define("TEMPLATE_PATH", ROOT . "./templates/");
@define("TEMPLATE_C_PATH", ROOT . "./templates_c/");
$smarty->template_dir = TEMPLATE_PATH;
$smarty->compile_dir = TEMPLATE_C_PATH;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询