Trigger Reminder Saving File On Server

  • Dryfive
  • Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
12 hours 7 minutes ago #172804 by Dryfive
When using the Trigger Reminder Code option in Event Booking we noticed that every time the cron task runs it saves a file to the server. It there something we can update in Event Booking's settings so not save the file to the server once the cron task has run? Below is an example of the Cron output when notification is enabled in cPanel:

 

HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.php?trigger_reminder_code=33949634.10’

     0K .......... .......... .......... .......... ..........  114M
    50K .......... .......... .......... .......... .           455K=0.09s

2025-06-25 13:00:10 (993 KB/s) - ‘index.php?trigger_reminder_code=33949634.10’ saved [94139]

 

Thank you in advance. 

Please Log in or Create an account to join the conversation.

  • Dryfive
  • Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
10 hours 15 minutes ago #172806 by Dryfive
Replied by Dryfive on topic Trigger Reminder Saving File On Server
I believe I've sorted out the issue by including '-O /dev/null' after the URL in the cron task's wget https: command (in case this helps anyone else that comes across this issue).

Please Log in or Create an account to join the conversation.

More
3 hours 18 minutes ago #172807 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Trigger Reminder Saving File On Server
Yes. You should use that. Here is sample command:
Code:
/usr/bin/curl --silent --request GET 'https://domain.com/index.php?trigger_reminder_code=SECRETCODE' > /dev/null 2>&1

Regards,

Tuan

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham Ngoc