RE: Phantom Scheduled Tasks

2010-03-10 Thread DURETTE, STEVEN J (ATTASIAIT)
, March 10, 2010 1:43 PM To: cf-talk Subject: RE: Phantom Scheduled Tasks -The good news... The cfhttp call is working now. When I tried it in the .cfc I disabled the .cfm view. When that didn't work I put the cfhttp call in the .cfm but forgot to reenable the view. -The bad news... The cfhttp

Re: Phantom Scheduled Tasks

2010-03-10 Thread Dorioo
   cfhttp = >                         > > This problem is killing me. > > Bryan > > -Original Message- > From: Dorioo [mailto:dor...@gmail.com] > Sent: Wednesday, March 10, 2010 9:32 AM > To: cf-talk > Subject: Re: Phantom Scheduled Tasks > > > D

RE: Phantom Scheduled Tasks

2010-03-10 Thread Bryan S
antom Scheduled Tasks Dump "cfhttp" after the call and it will show you useful information (run the page in the browser so you can see the dump). Look at the status values and response for clues as to what's going. - Gabriel On Wed, Mar 10, 2010 at 9:23 AM, Bryan S wrote: > >

Re: Phantom Scheduled Tasks

2010-03-10 Thread John Drake
Its a bit of a kludge - but could you add some cfif code to check the time and if it didn't meet the criteria it wouldn't process? I.e. if the task is supposed to fire every 12 minutes - check the time when running the task and if it isn't :12, :24, :36, :48, or :00 - then don't execute. ~~~

Re: Phantom Scheduled Tasks

2010-03-10 Thread Dorioo
iginal Message- > From: Dorioo [mailto:dor...@gmail.com] > Sent: Tuesday, March 09, 2010 4:11 PM > To: cf-talk > Subject: Re: Phantom Scheduled Tasks > > > Cflocation within a scheduled task would be the first thing I'd toss > while testing. Doesn't sit well with

RE: Phantom Scheduled Tasks

2010-03-10 Thread Bryan S
o: cf-talk Subject: Re: Phantom Scheduled Tasks Cflocation within a scheduled task would be the first thing I'd toss while testing. Doesn't sit well with me. I'd replace it with a CFHTTP call (you're generating a url already) and if I really wanted to decouple the two I may p

Re: Phantom Scheduled Tasks

2010-03-09 Thread Dorioo
Cflocation within a scheduled task would be the first thing I'd toss while testing. Doesn't sit well with me. I'd replace it with a CFHTTP call (you're generating a url already) and if I really wanted to decouple the two I may put it in a CFTHREAD. Just some testing ideas. - Gabriel On Tue, Mar

RE: Phantom Scheduled Tasks

2010-03-09 Thread Bryan S
So today's work narrows things down even further. The Cold Fusion Scheduled Task calls Event1. Event1 constructs a URL and passes it to a .cfm which uses a cflocation to fire the URL. The fired URL calls Event2 that starts a report. I pass an identifier through from the the URL called by the C

Re: Phantom Scheduled Tasks

2010-03-09 Thread Dorioo
ioo [mailto:dor...@gmail.com] > Sent: Tuesday, March 09, 2010 8:41 AM > To: cf-talk > Subject: Re: Phantom Scheduled Tasks > > > Can't speak to the cause from afar. But to prevent reports from > running concurrently, maybe you can put a named CFLOCK around all of > the re

RE: Phantom Scheduled Tasks

2010-03-09 Thread Bryan S
Message- From: Dorioo [mailto:dor...@gmail.com] Sent: Tuesday, March 09, 2010 8:41 AM To: cf-talk Subject: Re: Phantom Scheduled Tasks Can't speak to the cause from afar. But to prevent reports from running concurrently, maybe you can put a named CFLOCK around all of the report generation e

RE: Phantom Scheduled Tasks

2010-03-09 Thread Bryan S
and as a result ReportB is started. This results in an undesirable circumstance because these are very large reports and when run concurrently they use up all available memory on the server. To debug this problem I turned off all Scheduled Tasks except 1 and found that both calls to Event2 are

Re: Phantom Scheduled Tasks

2010-03-09 Thread Dorioo
g, it would simply time out and not do anything. Something like this post: http://www.bennadel.com/blog/1844-Making-Sure-Scheduled-Tasks-Don-t-Overlap-In-ColdFusion.htm It's not a fix but it would mitigate multiple report events running concurrently. - Gabriel On Tue, Mar 9, 2010 at 8:17 A

Phantom Scheduled Tasks

2010-02-15 Thread Bryan S
I have a scheduled task that starts a report every 12 minutes. Sometimes a report is started 5 minutes after the scheduled report starts. There is no evidence anywhere of the scheduled task being fired. There is no manual process starting the report. I have discovered long ago that modifying a sc

RE: Scheduled tasks timeout vs. server timeout

2009-11-02 Thread Earl, George
Dave said: > > You can also drop it in the URL like > something.cfm?requestTimeout=600 > > Not since CFMX: > http://kb2.adobe.com/cps/194/tn_19438.html That would help to explain why it's not working. Cameron said: > > Not since CFMX: > > http://kb2.adobe.com/cps/194/tn_19438.html > > You kn

Re: Scheduled tasks timeout vs. server timeout

2009-11-01 Thread Cameron Childress
On Sun, Nov 1, 2009 at 4:49 PM, Dave Watts wrote: >> You can also drop it in the URL like something.cfm?requestTimeout=600 > > Not since CFMX: > http://kb2.adobe.com/cps/194/tn_19438.html You know, I had a suspicion it was deprecated but I didn't confirm it before I posted. For this scheduled t

Re: Scheduled tasks timeout vs. server timeout

2009-11-01 Thread Dave Watts
> You can also drop it in the URL like something.cfm?requestTimeout=600 Not since CFMX: http://kb2.adobe.com/cps/194/tn_19438.html Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in W

RE: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Earl, George
I asked: > If we run a scheduled task manually as described above is > cfsetting\requestTimeout in the code our only recourse for > overriding the server timeout setting? Thanks, everyone. We'll use ?requestTimeout=[seconds] appended to the URL for the scheduled task until we can get the cfset

Re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Cameron Childress
On Wed, Oct 28, 2009 at 8:41 AM, Earl, George wrote: > If we run a scheduled task manually as described above is > cfsetting\requestTimeout in the code our only recourse for overriding > the server timeout setting? You can also drop it in the URL like something.cfm?requestTimeout=600 -Cameron

re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Jason Fisher
You can put &requestTimeout=[seconds] right into the URL, IIRC. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/gr

RE: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Rick Faircloth
Original Message- From: Earl, George [mailto:george.e...@ssa.gov] Sent: Wednesday, October 28, 2009 8:42 AM To: cf-talk Subject: Scheduled tasks timeout vs. server timeout We need to be able to manually run scheduled tasks that take longer to complete than our server timeout setting. By 'm

Re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Dave Watts
> I understand that the timeout setting for scheduled tasks overrides the > server timeout setting but I assume that works only when the task is run > by the CF scheduler or by running it manually from within the CF > Administrator, is this correct? Yes. When you run any CF URL dire

RE: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Robert Harrison
be either/or.  It must be &. Plug in to our blog: A&W Unplugged http://www.austin-williams.com/unplugged -Original Message- From: Earl, George [mailto:george.e...@ssa.gov] Sent: Wednesday, October 28, 2009 8:42 AM To: cf-talk Subject: Scheduled tasks timeout vs. server timeout W

Re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread James Holmes
You could cfschedule a new single run of the template with the chosen timeout. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/10/28 Earl, George : > > We need to be able to manually run scheduled tasks that take longer to > complete than our serve

Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Earl, George
We need to be able to manually run scheduled tasks that take longer to complete than our server timeout setting. By 'manually run' I mean by entering the URL for a scheduled task into the address bar of our browser or by clicking on links to a scheduled task (because we have limited

Re: Scheduled Tasks

2009-09-29 Thread John M Bliss
I promise: we do not. And I don't understand how hotfix(es) and/or a reboot would (temporarily) solve the problem we're imagining here (401 errors for *some* processes but never when they're run "manually"). Having said that, the point is taken: I'll setup logging and see what I see... On Tue,

Re: Scheduled Tasks

2009-09-29 Thread Ian Skinner
John M Bliss wrote: > Right...but the URL's in question never produce 401 or anything like that > when I call them "manually..." A very common situation, because you often will have very different permissions on your network domain then a default ColdFusion server. ~~

Re: Scheduled Tasks

2009-09-28 Thread William Seiter
sounds like a great reason to follow his advice of creating a log file for the http responses. If its not recreatable, yet you know it happens. -- William E. Seiter Sep 28, 2009 03:53:19 PM, cf-talk@houseoffusion.com wrote: === Right...b

Re: Scheduled Tasks

2009-09-28 Thread John M Bliss
Right...but the URL's in question never produce 401 or anything like that when I call them "manually..." On Mon, Sep 28, 2009 at 4:51 PM, Ian Skinner wrote: > > Do you have the scheduled task configured to log the results it gets > when it makes the HTTP request? > > I find these can be very he

Re: Scheduled Tasks

2009-09-28 Thread Ian Skinner
John M Bliss wrote: > This is the second time I've seen this: Adobe CF Standard 8,0,1,195765 just > declining/forgetting to run some (not all) scheduled tasks. No errors. > Just not running. Last time, I installed the latest hot fix(es), rebooted > the server, and everything ha

Scheduled Tasks

2009-09-28 Thread John M Bliss
This is the second time I've seen this: Adobe CF Standard 8,0,1,195765 just declining/forgetting to run some (not all) scheduled tasks. No errors. Just not running. Last time, I installed the latest hot fix(es), rebooted the server, and everything has been fine for 1-2 months. This time,

Re: Scheduled Tasks

2009-06-02 Thread John M Bliss
Sorry. That was, "Cumulative Hot Fix 2 for ColdFusion 8.0.1" - http://kb2.adobe.com/cps/403/kb403781.html On Tue, Jun 2, 2009 at 8:33 AM, Dave Watts wrote: > > > Yesterday, we noticed that the CF server v8.0.1 (apparently) was just > > "forgetting" to run so

Re: Scheduled Tasks

2009-06-02 Thread Dave Watts
> Yesterday, we noticed that the CF server v8.0.1 (apparently) was just > "forgetting" to run some (not all) of our scheduled tasks.  They were not > throwing exceptions, there was nothing useful in the logs, and I could run > them just fine and error-free by clicking t

Scheduled Tasks

2009-06-02 Thread John M Bliss
Yesterday, we noticed that the CF server v8.0.1 (apparently) was just "forgetting" to run some (not all) of our scheduled tasks. They were not throwing exceptions, there was nothing useful in the logs, and I could run them just fine and error-free by clicking the "Run Scheduled

Re: scheduled tasks and performance, whats the impact on the server?

2009-03-21 Thread Glyn Jackson
Thanks for all your answers. The main ones are all created by Sava CMS set to run every 15 mins I have no idea what they do. the rest are my own and is just simple code to run or refresh my email marketing system in the middle of the night.

Re: scheduled tasks and performance, whats the impact on the server?

2009-03-19 Thread Dave Watts
> A quick question re scheduled tasks and performance/load on the server. My > server is NOT > running slow however what worries me is how many scheduled tasks I can see in > the > administrator (25 of them). At what point does this become a problem or am I > fussing o

Re: scheduled tasks and performance, whats the impact on the server?

2009-03-18 Thread John M Bliss
If you can call each of them "manually" and watch them finish quick enough (1-2 seconds?) you probably have nothing to worry about...unless they're set to run once per second or something... On Wed, Mar 18, 2009 at 6:45 AM, Glyn Jackson wrote: > > A quick question r

RE: scheduled tasks and performance, whats the impact on the server?

2009-03-18 Thread Adrian Lynch
It's got to depend on what's going on in them surely? Adrian > -Original Message- > From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] > Sent: 18 March 2009 11:46 > To: cf-talk > Subject: scheduled tasks and performance, whats the impact on the > server?

scheduled tasks and performance, whats the impact on the server?

2009-03-18 Thread Glyn Jackson
A quick question re scheduled tasks and performance/load on the server. My server is NOT running slow however what worries me is how many scheduled tasks I can see in the administrator (25 of them). At what point does this become a problem or am I fussing over nothing? Many Thanks

Scheduled Tasks in CFMX 6.01 executing automatically on server reboot

2009-02-11 Thread Vineet Mangal
Hi All, I am facing a strange issue with ColdFusionMX6.1 Enterprise (Multiserver instance), scheduled tasks executing every time ColdFusion Server restarts. We are running CFMX 6.1,IIS 6.0. It runs on Windows Server 2003 machine. I have tried finding more information through google and

Re: Scheduled Tasks problem

2008-11-10 Thread Mike Chabot
sed and therefore somewhat tricky to > communicate with. > > This process runs fine when ran as a regular ColdFusion process, but when I > run it as a Scheduled Task it fails to complete. I runs through one item but > it seems as though the redirect from the PERL script fails. &

Re: Scheduled Tasks problem

2008-11-10 Thread Dave Watts
enerally do not, unless you provide that functionality yourself. > I understand that the Scheduled Tasks run as a 'CFHTTP' process and have > attempted to run the > process using a function and can't get it to work. I've never used > and really > don't und

Scheduled Tasks problem

2008-11-10 Thread Gary Chambers
PERL script fails. I understand that the Scheduled Tasks run as a 'CFHTTP' process and have attempted to run the process using a function and can't get it to work. I've never used and really don't understand what the premise behind it is. I want this process to run every

Re: cfmail no longer working AND scheduled tasks arent being run

2008-09-16 Thread Rob Parkhill
an authentication error like: *Apr 29, 2008* *11:34 AM* *Error* *jrpp-64* **Authentication Failed this error means that whatever email credentials you are passing are not accepted by your mail server. Now as for the scheduled tasks, try pausing them and then resuming, and if that

Re: cfmail no longer working AND scheduled tasks arent being run

2008-09-16 Thread Torrent Girl
The logs indicate that the processes are running. I am not sure of what auth the mail server is using. >What do the log files for the mail indicate. Usually they will give a >reason as to why they are undeliverable. What authentication is the mail >server using? I mean, when it hits your mail

Re: cfmail no longer working AND scheduled tasks arent being run

2008-09-16 Thread Rob Parkhill
What do the log files for the mail indicate. Usually they will give a reason as to why they are undeliverable. What authentication is the mail server using? I mean, when it hits your mail server what are the credentials supplied? Rob On Tue, Sep 16, 2008 at 7:44 AM, Torrent Girl <[EMAIL PROTECTE

Re: cfmail no longer working AND scheduled tasks arent being run

2008-09-16 Thread Torrent Girl
I logged in and check both The tasks are still there and the mail server settings are there. >i'd probably log into the cf admin and verify the mail server settings, as >well as take a look at the specific tasks that aren't running, to see how >they're configured (or if they're even still there)

Re: cfmail no longer working AND scheduled tasks arent being run

2008-09-15 Thread Charlie Griefer
i'd probably log into the cf admin and verify the mail server settings, as well as take a look at the specific tasks that aren't running, to see how they're configured (or if they're even still there). On Mon, Sep 15, 2008 at 7:31 PM, Torrent Girl <[EMAIL PROTECTED]> wrote: > hi all > > we had a

cfmail no longer working AND scheduled tasks arent being run

2008-09-15 Thread Torrent Girl
hi all we had a few personnel changes and as a result a few passwords were changed and now cfmail is nonger sending email and tasks are not running. any suggestions? here is the cfmail error cfmail to C:\ColdFusion8/Mail/Undelivr directory tgirl ~~

RE: Best way to cause scheduled tasks to run consecutively?

2008-05-26 Thread Rick Faircloth
Thanks for the info, Dana! Definitely something to keep in mind... Rick > -Original Message- > From: Dana Kowalski [mailto:[EMAIL PROTECTED] > Sent: Monday, May 26, 2008 12:37 PM > To: CF-Talk > Subject: Re: Best way to cause scheduled tasks to run consecutively? > &

RE: Best way to cause scheduled tasks to run consecutively?

2008-05-25 Thread Rick Faircloth
the query. Would cftransaction be advisable for this? Thanks, Claude... Rick > -Original Message- > From: Claude Schneegans [mailto:[EMAIL PROTECTED] > Sent: Sunday, May 25, 2008 9:09 AM > To: CF-Talk > Subject: Re: Best way to cause scheduled tasks to run consecutively?

Re: Best way to cause scheduled tasks to run consecutively?

2008-05-25 Thread Claude Schneegans
>>What's the best approach for that? Have each task schedule the next one at the end of its precess. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclic

RE: Best way to cause scheduled tasks to run consecutively?

2008-05-25 Thread Rick Faircloth
#x27;ll do some digging in the MySQL 5 docs on that and see what I can do. Thanks, again! Rick > -Original Message- > From: rex [mailto:[EMAIL PROTECTED] > Sent: Sunday, May 25, 2008 12:12 AM > To: CF-Talk > Subject: Re: Best way to cause scheduled tasks to run consecutively?

Re: Best way to cause scheduled tasks to run consecutively?

2008-05-24 Thread rex
Since a CF Scheduled task is basically just a call to a webpage, just put a in your code. So, your scheduled task will be calling task1.cfm, and the last part of your code would be a If you are only doing queries, the best way to do it would be on the SQL side. A stored procedure as a SQL j

Re: Best way to cause scheduled tasks to run consecutively?

2008-05-24 Thread Mary Jo Sminkey
> The processes aren't dependent upon one another, they are just > long-running > and rather processor intensive so I don't want any concurrent tasks > running. Ah, well in that case B would probably work fine. I was assuming they were dependent. You certainly wouldn't want to put a bunch of i

RE: Best way to cause scheduled tasks to run consecutively?

2008-05-24 Thread Rick Faircloth
and put them into a single named thread, would that be a good approach? Problems with that? Thanks for the suggestions! Rick > -Original Message- > From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] > Sent: Saturday, May 24, 2008 10:05 PM > To: CF-Talk > Subject: Re: Best way

Re: Best way to cause scheduled tasks to run consecutively?

2008-05-24 Thread Mary Jo Sminkey
>[A] make one task, that in turn calls all the others, one after the >other. Perhaps with some logic in each to ensure the previous task >completed successfully, if that's appropriate. I would go with A as well. Be sure to also consider what needs to happen if for any reason something happens

Re: Best way to cause scheduled tasks to run consecutively?

2008-05-24 Thread Mike Kear
. > > Yes, I'm having to work this Memorial Day weekend to meet > some deadlines. > > I need to set up a series of scheduled tasks and insure that > they run consecutively. In other words, I need to make sure that > each one completes before the next one starts. > >

Best way to cause scheduled tasks to run consecutively?

2008-05-24 Thread Rick Faircloth
Hi, all... Yes, I'm having to work this Memorial Day weekend to meet some deadlines. I need to set up a series of scheduled tasks and insure that they run consecutively. In other words, I need to make sure that each one completes before the next one starts. What's the best approac

RE: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Rick Faircloth
Thanks, Paul... Rick > -Original Message- > From: Paul Ihrig [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 10, 2008 12:18 PM > To: CF-Talk > Subject: Re: cf8: Scheduled Tasks: cfftp > > sure.. was simple, just had to pass url vars do bypass security. > let me

Re: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
sure.. was simple, just had to pass url vars do bypass security. let me know what you need when you need it... the schedual task thing is pretty simple. the ftp all i am doing is grabbing files nightly renaming then with the date like file.04.10.08.txt and saving then to local server. then using c

RE: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Rick Faircloth
alk > Subject: Re: cf8: Scheduled Tasks: cfftp > > nm.. > found a bit of code i needed. > man coldfusion is great! > ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic relea

Re: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
nm.. found a bit of code i needed. man coldfusion is great! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: ht

Re: cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
ok i just moved the file out of the secured area & it ran just fine which is great, but how do i pass my un/pw in cfadmin, schedualed task... i have my pass in there. ~| Adobe® ColdFusion® 8 software 8 is the most important an

cf8: Scheduled Tasks: cfftp

2008-04-10 Thread Paul Ihrig
i have a page using cfftp to move files from one server to another. if i open the file in the browser it loads & moves the file just fine. but if i put the url, in a Scheduled Tasks on the CF8 server, it says it ran. but the file never shows up on our server. the file being run is behi

Re: CF and Scheduled Tasks...

2008-02-06 Thread Claude Schneegans
>>Is there anyway to configure the CF to run a scheduled task every M-W-F at a specified time? Schedule the task for everyday, and have the task check for the day and CFABORT on bad days. ~| Adobe® ColdFusion® 8 software 8 is

Re: CF and Scheduled Tasks...

2008-02-05 Thread Gerald Guido
>>What is a BAT file? I think it has something to do with the opening scene of "Fear and Loathing in Las Vegas". On Feb 5, 2008 12:54 PM, Nate Willard <[EMAIL PROTECTED]> wrote: > What is a BAT file? > --- Ian Skinner <[EMAIL PROTECTED]> wrote: > > > Possible to meet this requirement: YES. Sch

RE: CF and Scheduled Tasks...

2008-02-05 Thread Russ
bruary 05, 2008 12:55 PM > To: CF-Talk > Subject: Re: CF and Scheduled Tasks... > > What is a BAT file? > --- Ian Skinner <[EMAIL PROTECTED]> wrote: > > > Possible to meet this requirement: YES. Schedule a > > task that only runs > > on M-W-F: NO. >

RE: CF and Scheduled Tasks...

2008-02-05 Thread Che Vilnonis
Windows scheduled task manager uses .bat (or batch) files to auto run tasks on a schedule. -Original Message- From: Nate Willard [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 05, 2008 12:55 PM To: CF-Talk Subject: Re: CF and Scheduled Tasks... What is a BAT file? --- Ian Skinner

Re: CF and Scheduled Tasks...

2008-02-05 Thread Nate Willard
What is a BAT file? --- Ian Skinner <[EMAIL PROTECTED]> wrote: > Possible to meet this requirement: YES. Schedule a > task that only runs > on M-W-F: NO. > > The way to work this is to schedule a task that runs > every day. The > first thing the scheduled template does is use date > functions

Re: CF and Scheduled Tasks...

2008-02-05 Thread Tom Chiverton
On Tuesday 05 Feb 2008, Che Vilnonis wrote: > Is there anyway to configure the CF to run a scheduled task every M-W-F at > a specified time? You can always schedule it in CF for daily, and have the code check the day of week. -- Tom Chiverton Helping to collaboratively grow fourth-generation ac

RE: CF and Scheduled Tasks...

2008-02-05 Thread Che Vilnonis
Thanks. That'll do it. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 05, 2008 11:15 AM To: CF-Talk Subject: Re: CF and Scheduled Tasks... Possible to meet this requirement: YES. Schedule a task that only runs on M-W-F: NO. The way to work

Re: CF and Scheduled Tasks...

2008-02-05 Thread Ian Skinner
Possible to meet this requirement: YES. Schedule a task that only runs on M-W-F: NO. The way to work this is to schedule a task that runs every day. The first thing the scheduled template does is use date functions to see what day it is. Then if the day is a Monday, Wendsday or Friday do wha

Re: CF and Scheduled Tasks...

2008-02-05 Thread Don
You could point the task at a template that figures out what day it is and then run the task on M-W-F. >Is there anyway to configure the CF to run a scheduled task every M-W-F at a >specified time? >I'm looking for a way of doing it w/o creating a BAT file. Possible? > >Thanks, Che ~~

CF and Scheduled Tasks...

2008-02-05 Thread Che Vilnonis
Is there anyway to configure the CF to run a scheduled task every M-W-F at a specified time? I'm looking for a way of doing it w/o creating a BAT file. Possible? Thanks, Che ~| Adobe® ColdFusion® 8 software 8 is the most import

Re: Users setting up Scheduled Tasks

2008-01-24 Thread Andrew Scott
a user to be able to > configure what they want to send (file/text/etc) and then schedule WHEN to > send, so that it can be done at a time when the e-mail server will be less > busy. > > Is there a way to allow the user to update/change/create their own s

Re: Users setting up Scheduled Tasks

2008-01-24 Thread Mike Chabot
HEN to > send, so that it can be done at a time when the e-mail server will be less > busy. > > Is there a way to allow the user to update/change/create their own scheduled > tasks? > > TIA, > > Rob > > ~~

Users setting up Scheduled Tasks

2008-01-23 Thread Rob Parkhill
update/change/create their own scheduled tasks? TIA, Rob ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive

RE: Keeping Anon access off & turning on Scheduled Tasks

2007-12-31 Thread Dave Watts
> Barring that you can set up a site that mirrors your web site > but does allow anon access and have it respond only to > 127.0.0.1. That would allow your tasks to run but not expose > the content to the outside world. This is the approach I'd recommend, although I probably wouldn't have it mi

Re: Keeping Anon access off & turning on Scheduled Tasks

2007-12-31 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
don't need to be secured. You could also add code in the page >to ensure that the remote_addr was the ip of your server. >That way you only run the page if it is the server requesting it. That means >you'd have to use the run command from the CFA Scheduled Tasks and couldn't

RE: Keeping Anon access off & turning on Scheduled Tasks

2007-12-31 Thread Mark Kruger
e secured. You could also add code in the page to ensure that the remote_addr was the ip of your server. That way you only run the page if it is the server requesting it. That means you'd have to use the run command from the CFA Scheduled Tasks and couldn't hit it from your local machine. A

RE: Keeping Anon access off & turning on Scheduled Tasks

2007-12-31 Thread DURETTE, STEVEN J (ATTASIAIT)
. You could also add code in the page to ensure that the remote_addr was the ip of your server. That way you only run the page if it is the server requesting it. That means you'd have to use the run command from the CFA Scheduled Tasks and couldn't hit it from your local machine. At le

RE: Keeping Anon access off & turning on Scheduled Tasks

2007-12-31 Thread Mark Kruger
There is a username and password attribute for scheduled tasks. It requires that you allow the "plain text" option I believe. Barring that you can set up a site that mirrors your web site but does allow anon access and have it respond only to 127.0.0.1. That would allow your tasks to r

Keeping Anon access off & turning on Scheduled Tasks

2007-12-31 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
info to be passed and processed (display name, set up security, etc). Now I am trying to get Scheduled Tasks to run properly. But everytime I do it, I get the following message: (I stripped out the HTML code) ___ You ar

Re: Recovering scheduled tasks after upgrade?

2007-09-26 Thread Scott Weikert
Tom Chiverton wrote: > On Wednesday 26 Sep 2007, [EMAIL PROTECTED] wrote: > >> Sack your server guy. He should know better to back things up, because >> if something goes wrong how does he expect to roll back? >> > Second that. > He performed an unannounced upgrade to a live server, without

Re: Recovering scheduled tasks after upgrade?

2007-09-26 Thread Tom Chiverton
On Wednesday 26 Sep 2007, [EMAIL PROTECTED] wrote: > Sack your server guy. He should know better to back things up, because > if something goes wrong how does he expect to roll back? Second that. He performed an unannounced upgrade to a live server, without taking a backup. Two strikes :-) -- To

Re: Recovering scheduled tasks after upgrade?

2007-09-26 Thread Andrew Scott
Sack your server guy. He should know better to back things up, because if something goes wrong how does he expect to roll back? BTW I find the deployment packager very good for backing up all things Datasources, settings etc. Even folders you want / need too. But I guess it is a bit late in preac

Re: Recovering scheduled tasks after upgrade?

2007-09-26 Thread James Holmes
I think the technical term for this is "you're boned." Try a search on all neo-cron.xml files, just to make sure it hasn't moved around. On 9/26/07, Scott Weikert wrote: > I should clarify - on my dev server, there's still the old "CFusionMX" > folder on the C drive, along with the newer "ColdFus

Re: Recovering scheduled tasks after upgrade?

2007-09-25 Thread Scott Weikert
Scott Weikert wrote: > Brad Wood wrote: > >> Those are stored in \lib\neo-cron.xml >> >> > That's where they're stored in CF 8. I'm asking where they were stored > in CF 6.1. > > I should clarify - on my dev server, there's still the old "CFusionMX" folder on the C drive, along with th

Re: Recovering scheduled tasks after upgrade?

2007-09-25 Thread Scott Weikert
Brad Wood wrote: > Those are stored in \lib\neo-cron.xml > > That's where they're stored in CF 8. I'm asking where they were stored in CF 6.1. Fortunately, the CF6.1 files are still there - so if I can figure out where to look in THOSE, I should be good. > You made a backup the coldfusion fol

RE: Recovering scheduled tasks after upgrade?

2007-09-25 Thread Dave Watts
> Is there anywhere one might recover that info > (file system, registry, etc)? That information is stored in \cfusion\lib\neo-cron.xml, if you backed that up. Dave Watts, CTO, Fig Leaf Software ~| ColdFusion 8 - Build next

RE: Recovering scheduled tasks after upgrade?

2007-09-25 Thread Brad Wood
Those are stored in \lib\neo-cron.xml You made a backup the coldfusion folder before upgrading, right? :) ~Brad -Original Message- From: Scott Weikert [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 25, 2007 3:54 PM To: CF-Talk Subject: Recovering scheduled tasks after upgrade? My

Recovering scheduled tasks after upgrade?

2007-09-25 Thread Scott Weikert
My server guy upgraded my development server from CF 6.1 to CF 8 earlier today. Yay. In doing so, he blew away all my scheduled task info. Grr. Is there anywhere one might recover that info (file system, registry, etc)? Enough info to reset them manually? Talking about a Win2k server environme

Scheduled Tasks, IIS and 401.3 error

2007-05-16 Thread DURETTE, STEVEN J (ATTASIAIT)
Hi all, Recently we moved to a new web server (old one lease rolled). Now all of the scheduled tasks are getting a 401.3 error. I have added the IUSR_servername user to have access (right click the file -> properties -> sharing and security). I have also set the directory that all of th

Re: Scheduled Tasks...

2007-03-07 Thread Robertson-Ravo, Neil (RX)
Visit our website at http://www.reedexpo.com -Original Message- From: Scott Weikert To: CF-Talk Sent: Wed Mar 07 17:38:40 2007 Subject: Re: Scheduled Tasks... Brian McGarvie wrote: > Is it possible to run a scheduled task for a PATH not a url? > > I.e. if i want to schedules something s

RE: Scheduled Tasks...

2007-03-07 Thread Ian Skinner
Yep, thought about that a little while after I sent it - I'd add an IP check as well. That's what I do, but I do it in the IIS administration, rather then the code. Only allow a given IP address permission to access the given resource(s). Assuming you have control of the IIS; obviously not s

Re: Scheduled Tasks...

2007-03-07 Thread Scott Weikert
Ian Skinner wrote: > > > > > Just for an FYI, user agents can be modified from client systems, with some > browsers - very easily. Thus this could be bypassed by somebody in the know, > if they wanted to do so. > > Yep, thought about that a little while after I sent it - I'd add an IP

RE: Scheduled Tasks...

2007-03-07 Thread Ian Skinner
What do you mean by 'sensitive'? If you mean, you don't want the script to be able to be run from the outside - Just for an FYI, user agents can be modified from client systems, with some browsers - very easily. Thus this could be bypassed by somebody in the know, if they wanted to do

Re: Scheduled Tasks...

2007-03-07 Thread Scott Weikert
Brian McGarvie wrote: > Is it possible to run a scheduled task for a PATH not a url? > > I.e. if i want to schedules something sensitive what's the best way to do > this? > What do you mean by 'sensitive'? If you mean, you don't want the script to be able to be run from the outside -

RE: Scheduled Tasks...

2007-03-07 Thread Ian Skinner
Is it possible to run a scheduled task for a PATH not a url? I.e. if i want to schedules something sensitive what's the best way to do this? Thanks in advance. - Brian Not that I am aware of, but that does not exclude the possibility by any means. But you could use some security on the URL if

RE: Scheduled Tasks...

2007-03-07 Thread Dave Watts
> Is it possible to run a scheduled task for a PATH not a url? Not with CF's scheduler. > I.e. if i want to schedules something sensitive what's the > best way to do this? You could use your OS scheduler, or you could configure your web server to only allow certain requests from the server itse

<    1   2   3   4   >