A Service of Softnik Technologies

Watch My Domains SED
Product Home User Guide

Installation

Configuration

Usage


Developer APIs

These API endpoints are specifically for developers who want to integrate their own apps or websites with data from Watch My Domains SED. They’re completely separate from the registrar API support built into the app.

So if you're a regular user or administrator of the software, you can safely ignore these, they’re not meant for day-to-day use or configuration.

Administrative Endpoints

Standard Endpoints

Using systemd timer

You may also use cron instead of systemd.

What is systemd?

systemd timer units are used for scheduling jobs on Linux. You can run jobs can be based on the time and date or on events.

Using systemd instead of cron

You will need to create two files, one for the systemd service and another for the timer. Please edit the paths as required in the examples shown below.

/etc/systemd/system/wmdsed.service

[Unit]
Description=wmdsed

[Service]
Type=oneshot
ExecStart=php /var/www/html/wmdsed60/cron.php
WorkingDirectory=/var/www/html/wmdsed60/

/etc/systemd/system/wmdsed.timer

[Unit]
Description=wmdsed

[Timer]
OnCalendar=*-*-* *:*:00
Persistent=true

[Install]
WantedBy=timers.target

Start and enable the timer

sudo systemctl start wmdsed.timer
sudo systemctl enable wmdsed.timer