如何设置 magento cron 作业和控制器的 init 操作?
如上所述,有办法实现吗?如何在自定义模块的 config.xml 中定义它?
As above, is there a way to do it? How can I define it in config.xml of my custom module?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,您不能直接在 cronjob 中运行控制器操作,因为在用户上下文之外执行这并不是一件非常明智的事情。这里最简单的事情是将您需要的功能放入模型中并从 cronjob 调用它。
有关您想要触发的控制器操作的更多信息将有助于提供进一步的建议。
希望有帮助!
谢谢,
乔
As far as I have ever seen, you cannot directly run controller actions in a cronjob, since that is not a terribly sensible thing to do outside of a user context. The easiest thing to do here is to put that functionality you need into a model and call that from the cronjob.
More information on the controller action you want to fire would be helpful in giving further advice.
Hope that helps!
Thanks,
Joe