Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Automating recurring capabilities using the subscription extension

Step-by-step guide

On the server where you have Magento platform installed open up your CRON configuration

  1. Example: "crontab -e" (assuming you are logged in under the same user which is running your apache or Nginx
  2. Add the code below 
###### Magento 2 EE w/ Subscriptions
* * * * * flock -n /{path_to_magento}/var/locks/cron-run.lock php /{path_to_magento}/bin/magento cron:run | grep -v "Ran jobs by schedule" >> /{path_to_magento}/var/log/magento.cron.log
* * * * * php /{path_to_magento}/update/cron.php >> /{path_to_magento}/var/log/update.cron.log
* * * * * php /{path_to_magento}/bin/magento setup:cron:run >> /{path_to_magento}/var/log/setup.cron.log

*/5 * * * * flock -n /{path_to_magento}/var/locks/sub-generate.lock php /{path_to_magento}/bin/magento tnw_subscriptions:quotes:generate >> /{path_to_magento}/var/log/sub-generation.cron.log
*/5 * * * * flock -n /{path_to_magento}/var/locks/sub-process.lock php /{path_to_magento}/bin/magento tnw_subscriptions:process >> /{path_to_magento}/var/log/sub-processing.cron.log

First three lines are standard Magento CRON jobs, which you should already have, those are configured to run every minute (per Magento documentation). The only change we suggest is to add "flock" capability to make sure the CRON wont run if the other one has not finished running yet.

The last two lines is what you will need to trigger (every 5 minutes). The first one automatically generates upcoming quotes of the upcoming orders and the last one does the processing of orders.

Filter by label

There are no items with the selected labels at this time.



  • No labels