码迷,mamicode.com
首页 > 其他好文 > 详细

新浪云使用smarty模板的方法

时间:2017-06-28 10:58:23      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:alt   code   fat   src   templates   技术分享   时间   bsp   compile   

在部署到sina app engine(sae)上时出现了问题,因为sae作为云计算平台式无法进行文件读写操作的,所以Smarty中输出的缓存文件就无法实现。

错误信息:“SAE_Fatal_error: Uncaught exception ‘SmartyException‘ with message ‘unable to write file ./web/templates_c/wrt4e95555280ef1‘ ”

SAE给出了解决方案就是使用Memcache。首先进入应用中的应用管理中,在服务管理中开启Memcache一个初始化,

技术分享

 

 

然后修改Smarty的配置文件:

// For SAE 编译文件存放在memcache中
$smarty->compile_dir = ‘saemc://smartytpl/‘;
$smarty->cache_dir = ‘saemc://smartytpl/‘;
$smarty->compile_locking = false; // 防止调用touch,saemc会自动更新时间,不需要touch

上面三行是必须的。

这样Smarty模板就可以在SAE上运行了。

 

新浪云使用smarty模板的方法

标签:alt   code   fat   src   templates   技术分享   时间   bsp   compile   

原文地址:http://www.cnblogs.com/web-fusheng/p/7088460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!