You define the password xxx in the URL variable in config.cfm
20 parallel running tasks
The system is designed so that various tasks from the modules can take place for a large number of customers.
Example: You develop an interface to MailChimp and want all customers and their email addresses to be transferred to MailChimp on a periodic cycle. This should be carried out once every night, which should be done by a schedule task. You have created a file and want it to be executed for all customers who have purchased/subscribed to the module (i.e. the interface).
Now assume you have 1000 customers who have subscribed to the module. If you were to create just 1 schedule task to run the file once every night for all customers, this could possibly take a very long time, which could lead to the server being cancelled or even crashing.
The solution here is to process the tasks in parallel. The customers are distributed across 20 tables. The 20 schedule tasks now process the 1000 customers in parallel, so each task only has to process 50 customers instead of 1000 in serial mode.
So, please set up 20 schedule tasks, which are executed every 2 minutes:
You define the password xxx in the URL variable in config.cfm