Questions tagged as ['cron']
Use it for questions about performing routine and other maintenance tasks in Drupal.
Score: 0
hook_cron triggered manually but not automatically
That hook cron below is executed when i manually trigger the cron but is not on a regular automatic base (every 3h).
How can it be ?
function my_module_cron() {
\Drupal::logger('my_module')->notice('entering hook_cron');
//some more code
}
Score: 0
Cron is running but not saving entity
I am trying to create a simple hook_cron to connect with an external API, return some data and update some fields in some entities. I'm creating like this to understand better how cron works, so I will upgrade it later to a queue.
The problem is that the cron is running, but even without errors the entity is not saving or updating. If I copy the code and try to execute it with a route (not using ...
Score: 1
How many temporary files will be deleted on every cron run?
I was just wondering if anyone knew how many files the Drupal cron removes from your tmp/ directory per cron run? Is it limited to 100 at a time? Where can I see this information?