当前位置: 移动技术网 > IT编程>开发语言>PHP > sae使用smarty模板的方法

sae使用smarty模板的方法

2019年04月01日  | 移动技术网IT编程  | 我要评论

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上运行了。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网