http://www.phpjobscheduler.co.uk/
Some of the NEW features:
- saves run logs to database
- saves error messages to database
- used CURL or fsockopen to fire remote scripts
See the demo here:
http://www.phpjobscheduler.co.uk/demo/error-logs.html
And you can now specify the following when adding a new schedule:
Remote files use:
$url="http://www.TheDomainName/folder/file.php";
Arguments
You can now add arguments (variables) like this:
$url="http://www.TheDomainName/folder/file.php?q1=1&q2=2";
This will POST the variables q1 and q2 to file.php
Secure pages
Also you can now fire scripts in secure password protected areas like this:
$url="http://user:pass@www.TheDomainName/folder/file.php";
where:
user = your username to access the protected area.
pass = your password to access the protected area.
Port
And finally you can now specify which port to connect to:
$url="http://www.TheDomainName:90/folder/file.php";
Above port 90 is specified (port 80 is the default).
Hope you like it

Any problems let me know
Dave.