How to Create a Cron Job on a Server?
If you are using the ISP Manager server control panel, follow these steps:
Copy the cron link from the section for which you want to set up automated actions (e.g., payment checks, exchange rate parsing, etc.).
In the ISP Manager panel, navigate to the "CRON Scheduler" section and click the "Create Job" button:
All cron jobs must be created under the user account associated with the website (not under the root user account).

On the new page, fill in the details for the cron job:

Email Address — Enter the email address where error notifications for the job will be sent (this option works only if outgoing mail is configured in ISP Manager under "Settings -> Notifications").
Command — The full command to execute (example provided below).
Description — A brief description of the job (optional field).
"Enabled" Checkbox — The status of the job.
Schedule — Select "Expert Mode" and set all fields below to "*" (asterisk) for the job to run every minute.
"Do Not Send Report to Email" Checkbox — Uncheck this box if you want to receive email notifications about the job's execution and errors.
Note that the command format may vary slightly depending on the server, but in most cases, the format provided below will suffice:
/usr/bin/wget -t 1 -O - --no-check-certificate "your_URL"
For example, if your URL is https://site.com/cron-bestchangeapi_upload_data.html
,
the command should look like this:
&#xNAN;/usr/bin/wget -t 1 -O - --no-check-certificate "https://site.com/cron-bestchangeapi_upload_data.html"
Cron job links can be found in the corresponding sections. Here are a few examples:
Parsers 2.0 — Settings
Bestchange Parser — Settings
Merchant and Auto-Payout Modules
Last updated