Need of re-indexing on search on Drupal site?
My client site has a table whose data is coming from Indexed view, sometimes updates made to the data wont reflect in the view table. Elysia cron is installed and up running, which should update the...
View ArticleUsing Ultimate cron to set a specific time to run a function of module, but...
I have set ultimate cron job time once a day but it works at every hour because another default site cron is running every hour.This code is working on production but not according to crontab time i.e...
View ArticleSearch indexing slow query
Drupal 7.xThe search module's indexing maintenance sql query takes a couple of minutes to complete each time cron gets triggered.SELECT t.word AS realword, i.word FROM search_total t LEFT JOIN...
View ArticleScheduler Module crontab job does not publish content
When running the Scheduler lightweight cron through crontab, I am getting a message that the lightweight cron has activated and completed in my D8 log, but content is not publishing. When running the...
View ArticleHow to execute code that uses the dependency injection container, at regular...
Using Drupal 10 - I tried installing Ultimate Cron for D10, but it is in Alpha state and has deprecated methods that will not let it work.This Cron needs to be executed only on a specific day and time....
View ArticleTimeout in sites, perhaps related to cron
I have been struggling with a timeout error in a couple of Drupal 8 sites, which I have not been able to reproduce. When I deploy them into my colleague's production server (a Mac machine), all the...
View ArticleBackup & Migrate scheduled backup silently fail
I've tried to use backup & migrate for backups on my omega8 based aegir server.Although I've defined a schedule, and setup cron interval to 1 hour, it doesn't work - no backups are generated....
View ArticleScheduler Module unpublish content
Trying to schedule a content type to be unpublished on a specific date. Using the scheduler module everything is set up seemingly correct. When I run Cron the update fails, Updater Content - Publishing...
View ArticleHow to stop cron process without rebooting my server?
I have tried the following:drush php-eval "\Drupal::lock()->release('cron');"This had no effect. I'm still seeing "Attempting to re-run cron" errors pile up in the log.I also tried the mysql...
View ArticleUltimate Cron installation Table 'db_name.ultimate_cron_log' doesn't exist
After installing the ultimate cron module version 8.x-2.0-alpha4,When I navigate to (/admin/config/system/cron/jobs), I get the following error meassage -Base table or view not found: 1146 Table...
View ArticleECA: Cron Event - View - Message per Mail
ECA: Cron Event - View - Message per MailI would like to send a notification by e-mail to a user when a certain event occurs. The event is then a view that outputs a content, this content is currently...
View Articlehook_cron(): PHP output does not appear
I am (finally) migrating our Drupal 7 sites to Drupal 10.The one problem I have not been able to resolve is output from the hook_cron().Everything appears to execute, whether running on the browser...
View ArticleCrontab job for specific cron activity
I'm trying to setup the Job Scheduler so that specific actions can be checked against cron every minute to allow for publishing content on a scheduled basis.I'm working on part of an Acquia Cloud setup...
View ArticleNodes not get indexed after running manual cron
I'm experiencing some unexpected behavior of cron. I have used search_api module, that should index all nodes. Automatic cron is set to 1 hour. So after every hour, cron will run automatically.So, the...
View ArticleCron stopped running; logs say: "Attempting to re-run cron while it is...
What are the steps to troubleshoot and resolve this issue as per title? When I try to run manually, I get a page immediately, and the error message "Attempting to re-run cron while it is already running."
View ArticleHow can execute batch api over cron jobs
I am working on Drupal 8 and batch API. I created the batch api calling importingmatch and it should automatically importing every 1 hour.My solution is use Drush for make it works without the browser,...
View ArticleHow to process more than one item from queue in each run?
I have set up a queue using this code.function custom_logger_cron_queue_info() { $queues['custom_logger'] = array('worker callback' => 'custom_logger_import','time' => 60, ); return $queues;}I...
View Article