cfschedule trouble
I'm having trouble getting cfschedule to work.
When I run B.CFM from the browser, it works. When I try and run B.CFM from A.CFM, nothing happens.
What am I doing wrong ?
THIS IS A.CFM
<html>
<head>
<title>
</title>
</head>
<body>
<cfschedule action="update" task="try" operation="httprequest" url="http://URL IN HERE/b.cfm"
startdate="06/29/10" enddate="07/02/10" starttime="9:00 AM" interval="75">
</cfschedule>
</body>
</html>
THIS IS B.CFM
<html>
<head>
<title>
</title>
</head>
<body>
<cfset todir='DRIVE AND DIR IN HERE'>
<cfset tofile='delthis_.txt'>
<cfset todirfile=todir & tofile>
<cffile action="write" file="#todirfile#" output="a">
</body>
</html>
