sae使用smarty模板的方法
Smarty是非常流行的模板系统,它分离了业务和逻辑、执行速度快,在php网站中有广泛的运用。
不过在部署到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上运行了。
相关推荐
igogo00 2019-12-12
shangmingtao 2019-07-20
ZhaoYanping00 2019-07-20
刘阳龙Herman 2019-03-28
WinerChopin 2014-08-18
superhosts 2019-06-26
azhedashuaibi 2019-06-26
Allinputs 2013-08-30
ithover 2013-03-10
静心斋 2012-09-28
startXUEBA 2011-06-29
Ykbug 2018-11-24
zderam的私人 2018-07-24
半粒红豆 2011-07-07
樽前花下歌筵里 2011-07-07
李维山 2011-07-07
pengjincheng 2009-11-30
lizean 2014-06-19