The default Dolphin 7.1.x cron job looks like this with cPanel webhosting:
* * * * * cd /home/account-name/public_html/periodic; /usr/local/bin/php -q cron.php
The "account-name" is generally your cPanel login.
This assuming that you have installed Dolphin in public_html, and not in a subfolder/directory/etc. Your site would be accessible at yoursite.com, and not yoursite.com/subfolder.
Some people say that they have problems using the default cron job command.
If you are one of those that have problems with it the following are some alternatives you might try:
* * * * * /usr/local/bin/php -q /home/account-name/public_html/periodic/cron.php
* * * * * /usr/bin/php -q /home/account-name/public_html/periodic/cron.php
Note:
Be sure to replace "account-name" with your real cPanel account name.
If Dolphin was installed in a subfolder/subdirectory/Addon Domain/Sub-Domain the default cron job will look like this:
* * * * * cd /home/account-name/public_html/subfolder/periodic; /usr/local/bin/php -q cron.php
You can try these instead:
* * * * * /usr/local/bin/php -q /home/account-name/public_html/subfolder/periodic/cron.php
* * * * * /usr/bin/php -q /home/account-name/public_html/subfolder/periodic/cron.php
Note:
Be sure to replace "account-name" with your real cPanel account name, and "subfolder" with the name of the real subfolder.
To use your own custom php.ini file that you create rather than use the server/system php.ini
Create a php.ini file and put it in yoursite.com/php.ini
Then, you might use:
* * * * * /usr/local/bin/php -c /home/account-name/public_html/php.ini -q /home/account-name/public_html/periodic/cron.php
Or, you can create a php.ini file and put it in:
/home/account-name/php.ini
Then, you could use:
* * * * * /usr/local/bin/php -c /home/account-name/php.ini -q /home/account-name/public_html/periodic/cron.php
Note:
Again, make sure you replace "account-name" with your real cPanel account name.
Additionally:
For the /usr/local/bin/php and /usr/bin/php references mentioned above are for the actual paths to php on your hosts server. If you do not know the path to php, or if you are unsure simply ask your host what the path to php is. You might also inform them that you are trying to set up a cron job, and that you want to make sure you use the correct path to php. It is a very common question.