Can't get cfschedule to work and would be very happy to find out what I'm doing wrong. Want to get trya.cfm to run tryb.cfm every 75 seconds but get no result. Tryb.cfm works when run directly without cfschedule.
THIS IS TRYA.CFM
<html>
<head>
<title>
</title>
</head>
<body>
<cfschedule action="update" task="try"
operation="httprequest"
url="ADDRESS HERE/tryb.cfm"
startdate="06/29/10"
enddate="07/02/10"
starttime="9:00 AM"
interval="75">
</cfschedule>
</body>
</html>
THIS IS TRYB.CFM
<html>
<head>
<title>
</title>
</head>
<body>
<cfset todir=DRIVE AND DIR HERE>
<cfset tofile='delthis_.htm'>
<cfset todirfile=todir & tofile>
<cffile action="write" file="#todirfile#" output="a">
</body>
</html>
THIS IS TRYA.CFM
<html>
<head>
<title>
</title>
</head>
<body>
<cfschedule action="update" task="try"
operation="httprequest"
url="ADDRESS HERE/tryb.cfm"
startdate="06/29/10"
enddate="07/02/10"
starttime="9:00 AM"
interval="75">
</cfschedule>
</body>
</html>
THIS IS TRYB.CFM
<html>
<head>
<title>
</title>
</head>
<body>
<cfset todir=DRIVE AND DIR HERE>
<cfset tofile='delthis_.htm'>
<cfset todirfile=todir & tofile>
<cffile action="write" file="#todirfile#" output="a">
</body>
</html>