coldfusion scheduling task using wget
not quite sure how to accomplish this for the wget.
I have a event I need to schedule to run every hour. I am using window hosting.
I have learned that I can't use the path to event.cfm within the path to executable file (naturally it needs to be and .exe)
So I downloaded wget 1.11.4 and uploaded the wget.exe to within the event directory. (only the wget.exe file)
C:\*******\event5\wget.exe <-- this is in the
wget http://*****/event5/event.cfm <-- this is in the argument
(sensitive hosting information taken out naturally)
within the event.cfm page I have the following code
<!-- include count auctions routine -->
<cfinclude template="count_auctions/index.cfm">
What this event is suppose to do is count the auctions.
Now when I run the event I get an email, but it doesn't "run" the event.
Am I doing this correct?
Is there another way I can execute or run a .cfm page?
I tried different things and nothing works.
