How do you store your scripts for cron jobs in Zen

2020-03-26 08:39发布

问题:

Because ZF depends on mod rewrite for all it's URLs, it's not immediately apparent to me where I should store local scripts for use with a cron job.

Does anyone have any recommendations, or is there an "officially accepted" way?

回答1:

I use the Modular Directory Structure in the design of my websites so that I have controllers, views, etc created for each separate module of my websites. Included within each module I have a scripts (or a cron) directory that stores all of the cron scripts for that particular module.

Personally I find that this keeps things simple when it comes to access resources from Zend Framework as well as from the actual web application.



回答2:

I had to create a script that would be run via cron (and I was not using modules) so I stuck mine in something like library/Myproject/cronscripts

Here is a pertinent article.