I am trying to run a cron job URL through Plesk 11.5 on my shared hosting space and not getting through. All I want to do is to run a URL every minute. The URL looks like this.
This URL is a MailPoetURL which send all the emails in a queue when it’s run.
The plesk control for scheduled tasks looks like this:
I have Path to executable file
confirmed by the hosting but I need what I need to use in the Arguments
. I have tried following arguments which didn’t work for me:
wget [[httplink mentioned above]]
wget -q -O /dev/null [[httplink mentioned above]]
/usr/bin/wget -q -O /dev/null [[httplink mentioned above]]
As I see your server OS is windows, so wget is not option for you.
Instead you can create PHP script inside of /httpdocs folder with content like
and put path to this script in “Arguments” like:
Note 1: I’m note sure that you have to use “php-cgi.exe”, but just “php.exe”.
Note 2: Use “Run Now” to check it immediately.