Re: cfschedule - retrieve properties

2014-10-23 Thread AJ Mercer
I had to go to the 2nd page off google results - What? http://www.thecfguy.com/blog/listing-scheduled-task/ findTask() On 23 October 2014 18:09, AJ Mercer ajmer...@gmail.com wrote: with coldfusion (8) is there a way to retrieve the properties of an existing schedule? I want to get the

Re: CFSchedule runs 2nd task on its own

2013-05-10 Thread Russ Michaels
Are you saying you want it to time-out but it isn't? Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On 10 May 2013 21:13, Chris 0404tow...@gmail.com wrote: We have a client's CFSchedule task with a 4 minute

Re: CFSchedule runs 2nd task on its own

2013-05-10 Thread Chris
Thanks Russ. No, I know 'requesttimeout doesn't actual time it out. My real concern is why CFSchedule appears to be starting a second task on its own. It's bad enough one of these long-running tasks runs so long ... but two of them is ... uh ... twice as bad. Chris On Fri, May 10, 2013 at

Re: CFSchedule runs 2nd task on its own

2013-05-10 Thread Russ Michaels
try deleting task, restart cf, re-creating the task, the sometimes fixes such issues. Are you on an old version of cf by any chance, I think this was a known issue on cf7/8 The most common reason I find for tasks running twice is where people have changed hosts and they have left the scheduled

Re: CFSchedule

2011-03-11 Thread Russ Michaels
You have a form based login on that url, thus why the scheduled task wont run.The username/password fields in the cfschedule tag are for web server authentication. You need to exclude the scheduled task outside of your login routine or use webserver authentication instead. On Fri, Mar 11, 2011

Re: CFSchedule

2011-03-11 Thread Scott Williams
Message From: Russ Michaels r...@michaels.me.uk To: cf-talk cf-talk@houseoffusion.com Sent: Fri, March 11, 2011 6:44:36 PM Subject: Re: CFSchedule You have a form based login on that url, thus why the scheduled task wont run.The username/password fields in the cfschedule tag are for web

Re: CFSchedule

2011-03-11 Thread Phillip Vector
to a directory with its own Application.cfm file, which contained no content, and now it's working just fine.  Scott - Original Message From: Russ Michaels r...@michaels.me.uk To: cf-talk cf-talk@houseoffusion.com Sent: Fri, March 11, 2011 6:44:36 PM Subject: Re: CFSchedule

Re: CFSchedule

2011-03-11 Thread Scott Williams
Me likee... How do I check to see if the IP is coming from the server? Scott - Original Message From: Phillip Vector vec...@mostdeadlygame.com To: cf-talk cf-talk@houseoffusion.com Sent: Fri, March 11, 2011 7:01:56 PM Subject: Re: CFSchedule As a side note, instead of putting

RE: CFSchedule

2011-03-11 Thread Bobby Hartsfield
Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Scott Williams [mailto:myscottwilli...@yahoo.com] Sent: Friday, March 11, 2011 11:05 PM To: cf-talk Subject: Re: CFSchedule Me likee... How do I check to see if the IP is coming from the server? Scott

RE: CFSchedule

2011-03-11 Thread Bobby Hartsfield
: Friday, March 11, 2011 11:19 PM To: cf-talk Subject: RE: CFSchedule If it is internal traffic, compare cgi.remote_addr to #createObject(java, java.net.InetAddress).getLocalHost().getHostAddress()# Otherwise, you can restrict directory access to IP in all web servers. Just restrict yours

Re: cfschedule tasks

2010-04-21 Thread daniel kessler
These all worked great. Thanks! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: cfschedule tasks

2010-04-21 Thread daniel kessler
Those were both very interesting. Thank you. They will help alot. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: cfschedule tasks

2010-04-19 Thread M
Daniel: We have the same 'relationship' with your servers, and although it is kludgy, we manage to get by using the following code (just place it in a file and visit it online to see what is scheduled): cfschedule action=run task=__list hope this helps m On Mon, Apr 19, 2010 at 1:00 PM,

Re: cfschedule tasks

2010-04-19 Thread Craigsell
I'm in the same boat. Here's a little code I knowkced to gether to tell me waht was going on for my CFMX8 instance !-- put in server root -- ColdFusion Information - click on struct for infomationbr cfoutput brBase Template Path = #GetBaseTemplatePath()#p cfdump var=#server#expand=no

Re: cfschedule help

2010-03-26 Thread Mike Chabot
Are you aware that you can schedule tasks using a nice GUI from inside of ColdFusion Administrator? The problem might be related to setting the start time to now(), since the CF scheduler is checked for new jobs to process on an interval basis, not on a continual basis. Try scheduling the

Re: cfschedule help

2010-03-26 Thread Casey Dougall
On Fri, Mar 26, 2010 at 11:53 AM, daniel kessler dani...@umd.edu wrote: I'm trying to get cfschedule to send out an email. I've checked out a few tutorials and I don't see the problem I'm having. I have a page to set the cfschedule and it contains: cfschedule action=update

Re: cfschedule help

2010-03-26 Thread daniel kessler
Are you aware that you can schedule tasks using a nice GUI from inside of ColdFusion Administrator? It's a centralized server so I don't have access to the Administrator. The problem might be related to setting the start time to now(), since the CF scheduler is checked for new jobs to process

Re: cfschedule help

2010-03-26 Thread daniel kessler
Try 61 seconds... You can't set a schedule to run every 60 seconds. good to know, thanks. I set it to 120 with no effect. See my reply above, please, for the full code. ~| Want to reach the ColdFusion community with

Re: cfschedule help

2010-03-26 Thread daniel kessler
Maybe the problem is the way that I'm designating start-date and start time. This code: cfset start_date = createDate(year(now()),month(now()),day(now())) cfset start_time = createTime(hour(now()),minute(now())+10,second(now())) produces: {ts '2010-03-26 00:00:00'} {ts '1899-12-30 14:28:29'}

Re: cfschedule help

2010-03-26 Thread Mike Chabot
If there was an error being thrown by your scheduled task, would you have any way of finding out? Do you get E-mailed with the error details? Not having access to the log files makes troubleshooting scheduled tasks more challenging. Often the error jumps right out at you by viewing the error log.

Re: cfschedule task runs serially

2009-10-05 Thread Kevin Pepperman
I saw an issue like this once. If I recall correct, it does have to wait for 1 process to finish to begin the next, and our solution was to wrap each iteration with cfthread so it spawned separate processed for each iteration. cfthread action=run name=myThread /K

Re: cfschedule action=run .... asynchronous or not?

2008-10-03 Thread Mike Chabot
If you are trying to run a scheduled task immediately as opposed to on a schedule, I believe that it is not asynchronous. This would be similar to pressing the execute button next to the scheduled task in CF Admin, which makes you wait. -Mike Chabot On Fri, Oct 3, 2008 at 8:56 AM, Dave Phillips

RE: cfschedule delete work around??

2006-05-02 Thread Peterson, Chris
Or you could just use the AdminAPI, I thought you could plug into that directly? From the site notes, it only needs to be restarted if you use the cfschedule tag. If you do it from the Admin, no need to re-start. Chris -Original Message- From: Jim Priest [mailto:[EMAIL PROTECTED]

Re: cfschedule delete work around??

2006-05-02 Thread Ken Ferguson
After several attempts to rely upon scheduled tasks in CF blew up in my face, I realized that it just wasn't ever really going to work for me. I abandoned it completely and run all of my scheduled tasks from the OS. It seems to be infinitely more dependable. --Ferg Jim Priest wrote: I don't

RE: cfschedule delete work around??

2006-05-02 Thread Snake
Presuming it's his own server and he has access to do that. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: 02 May 2006 15:52 To: CF-Talk Subject: RE: cfschedule delete work around?? Or you could just use the AdminAPI, I thought you could plug

Re: cfschedule delete work around??

2006-05-02 Thread Denny Valliant
I've had pretty good luck with scheduled tasks. I'm not adding or removing them very often, but they've generally run when I wanted them to, etc.. :den On 5/2/06, Ken Ferguson [EMAIL PROTECTED] wrote: After several attempts to rely upon scheduled tasks in CF blew up in my face, I realized

Re: Cfschedule question

2006-03-16 Thread Mike Little
hi guys, is it possible to include a URL variable when specifying the template to run eg. send_email.cfm?run_script=1 i thought i could maybe(?) wrap the code that runs in an if statement to see if URL variable is present. i sort of want to avoid creating a new db column if i can. mike

Re: Cfschedule question

2006-03-15 Thread Ryan Guill
Set a flag in the database when you send them the email, then only check for customers without that flag. On 3/15/06, Mike | NZSolutions Ltd [EMAIL PROTECTED] wrote: Hi there, I have created a cfschedule that runs daily. It queries a list of customers and sends them a followup email. The

RE: cfschedule

2005-11-14 Thread Dawson, Michael
Run the schedule every hour and have the script check the correct time. If the time is correct, then continue processing. Otherwise, abort and wait for later. M!ke -Original Message- From: Sam Komo_ITS [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 4:26 PM To: CF-Talk

RE: cfschedule

2005-11-14 Thread Dawson, Michael
Make sure you have all the updaters installed. M!ke -Original Message- From: Sam Komo_ITS [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 4:26 PM To: CF-Talk Subject: cfschedule Hi Guys, I have a scheduled job that runs every 8 hrs [7AM, 3PM, 11PM]. The job now runs one

RE: cfschedule tag problem.

2005-08-15 Thread Micha Schopman
Jeff, You might try disabling friendly error messages to get a more useful message from IE. You'll find it in the IE options dialog. Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

Re: cfschedule tag problem.

2005-08-15 Thread Jeff W
I put it in a Try/Catch These were the cfcatch variables I got back.. message=500 Internal Server Error type =coldfusion.server.ServiceException Odd thing is it appears that the task ran, but just errored at the end Weird.. Anyone with ideas? Jeff On 8/15/05, Micha Schopman [EMAIL

RE: cfschedule tag problem.

2005-08-15 Thread Robertson-Ravo, Neil (RX)
/knowledgebase/index.cfm?id=24039877 (could be a shot in the dark..) -Original Message- From: Jeff W [mailto:[EMAIL PROTECTED] Sent: 15 August 2005 16:18 To: CF-Talk Subject: Re: cfschedule tag problem. I put it in a Try/Catch These were the cfcatch variables I got back.. message

RE: cfschedule tag problem.

2005-08-15 Thread Dave.Phillips
: Jeff W [mailto:[EMAIL PROTECTED] Sent: Monday, August 15, 2005 11:18 AM To: CF-Talk Subject: Re: cfschedule tag problem. I put it in a Try/Catch These were the cfcatch variables I got back.. message=500 Internal Server Error type =coldfusion.server.ServiceException Odd thing is it appears

Re: cfschedule ghost threads

2005-07-26 Thread Paul Stewart
I also got this problem with BlueDragon Paul Stewart Site Developer [EMAIL PROTECTED] www.whichfranchise.com - Original Message - From: Micha Schopman [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, July 25, 2005 3:49 PM Subject: cfschedule ghost threads I hoped

RE: cfschedule ghost threads

2005-07-26 Thread Micha Schopman
26 juli 2005 9:37 To: CF-Talk Subject: Re: cfschedule ghost threads I also got this problem with BlueDragon Paul Stewart Site Developer [EMAIL PROTECTED] www.whichfranchise.com - Original Message - From: Micha Schopman [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday

Re: cfschedule ghost threads

2005-07-26 Thread Dave Phipps
- -Original Message- From: Paul Stewart [mailto:[EMAIL PROTECTED] Sent: dinsdag 26 juli 2005 9:37 To: CF-Talk Subject: Re: cfschedule ghost threads I also got this problem

Re: cfschedule ghost threads

2005-07-26 Thread Dave Phipps
Have you tried updating the schedule so that the start and end dates are in the past? I have a similar system for mass mailing that I am just putting together and I seem to have the same scheduler problem. I have tried using cfschedule to update the task but I am not sure that even this is

RE: cfschedule ghost threads

2005-07-26 Thread Micha Schopman
- -Original Message- From: Dave Phipps [mailto:[EMAIL PROTECTED] Sent: dinsdag 26 juli 2005 12:17 To: CF-Talk Subject: Re: cfschedule ghost threads Have you tried updating the schedule so that the start

RE: cfschedule ghost threads

2005-07-25 Thread Micha Schopman
As a follow up, I found a technote about this issue. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18361 Luckily it is only there since 2003 ... Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort

RE: cfschedule ghost threads

2005-07-25 Thread Dave.Phillips
Micha, I experienced the same thing and only a CF service restart cleared them. It's gotta be a bug, but I haven't ever researched it to see if there is a fix for it. Are the jobs you're adding/deleting using the same task name? Have you experienced trying to use either the same task name

RE: cfschedule ghost threads

2005-07-25 Thread Micha Schopman
] [mailto:[EMAIL PROTECTED] Sent: maandag 25 juli 2005 16:00 To: CF-Talk Subject: RE: cfschedule ghost threads Micha, I experienced the same thing and only a CF service restart cleared them. It's gotta be a bug, but I haven't ever researched it to see if there is a fix for it. Are the jobs you're

RE: cfschedule ghost threads

2005-07-25 Thread Dave.Phillips
How did this get missed in MX 7 ? Unbelievable. Dave -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: Monday, July 25, 2005 11:06 AM To: CF-Talk Subject: RE: cfschedule ghost threads Dave, It is a bug ... I am really astonished that such a mayor bug from 2003

RE: cfschedule task won't run

2005-07-13 Thread Dan G. Switzer, II
Jamie, (CFMX 6.1 / Linux) I set up a scheduled task (in the CF admin) to hit Google. It will run the task if I hit the run now icon (next to the task in the CF admin, and the execution gets logged in the scheduler.log, as expected. However, it does not run automatically, and there are no

RE: cfschedule task won't run

2005-07-13 Thread jacksonj
Are you sure cron is set up to run? As a matter of fact, I'm not; so I'll go figure that out. Thanks, Jamie ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: CFSCHEDULE ability to log in

2005-05-05 Thread Thomas Chiverton
On Tuesday 03 May 2005 00:03, Jim McAtee wrote: Can CFSCHEDULE login to this site properly using the username and password tag attributes or is it a bit more involved? IIRC, if Windows can't auto locate your domain details, if falls back to the normal security method of prompting for them, so

Re: cfschedule and daylight savings bug

2005-04-08 Thread Jeff Congdon
Follow up: Restarting services and rebooting the server did _not_ fix this. It _did_ fix it for newly created jobs, but not for the existing run daily job. No matter what I did, my existing daily job ran @ t-1 hour until I deleted the job and recreated it. I tried restarting, recycling, and

RE: CFSCHEDULE RSS into DB

2005-01-30 Thread Russ Unger
Ahh... Scrap this one. Funny thing about sending something to a list--seem to find answers on my own quicker that way. Sorry for the noise. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

Re: CFSCHEDULE and https..PLEASE HELP URGENT

2004-12-01 Thread Nick Cabell
What is the normal URL you would enter to ecxecute this page, if you were not using the scheduler. What happens when you enter this in the browser? ~| Special thanks to the CF Community Suite Silver Sponsor - RUWebby

Re: cfschedule question

2004-09-19 Thread Nick Cabell
This could really save me. My hosting company is threatening to turn off read access to neo-cron.xml after I rolled out my app assuming I could read it. They do seem to allow CreateObject. I am not a java programmer, but can you tell me if there is a not-too-hard way to read the individual

Re: cfschedule question

2004-09-19 Thread Johan Steenkamp
Tony May have been convered already but in my experience all you can really do it update or delete a scheduled event based on its name. So you cannot get any other details about it. In practise all you need to store - a simple text file is sufficient so no need to use a database is something like

Re: cfschedule question

2004-09-19 Thread Andrew Grosset
use the interval attribute like this: interval=once ( CFMX Docs: Interval at which task is scheduled. * number of seconds (minimum is 60) * once * daily * weekly * monthly ) How do I schedule a one time task with cfschedule. I get I can set the start and end date to the same one or is

Re: cfschedule error

2004-08-06 Thread Ubqtous
On Fri, 06 Aug 2004 19:02:13 -0400, Andrew Grosset [EMAIL PROTECTED] wrote: I havn't had to run cfschedule before so this is a bit new to me Does the task have to be registered in administrator before it can be run? I looked at the 6.1 docs and it doesn't mention it. Yes, you need to

Re: cfschedule error

2004-08-06 Thread Barney Boisvert
I've never used CFSCHEDULE, but i'd imagine you can only run registered scheduled tasks.If you just want to request a URL one time, use CFHTTP.That's all scheduled tasks are, except CF runs them on a schedule. cheers, barneyb On Fri, 06 Aug 2004 19:02:13 -0400, Andrew Grosset [EMAIL PROTECTED]

Re: cfschedule error

2004-08-06 Thread Ubqtous
On Fri, 6 Aug 2004 16:36:41 -0700, Barney Boisvert [EMAIL PROTECTED] wrote: I've never used CFSCHEDULE, but i'd imagine you can only run registered scheduled tasks. If the tag is enabled in CF Admin, you can use CFSCHEDULE to create schedule items. I believe MX is the first release to allow

Re: cfschedule error

2004-08-06 Thread Andrew Grosset
Thanks Ubqtous, It now looks so obvious! I created it using an update: cfschedule action=""> operation=HTTPRequest task=appcheck url=""> startDate=8/6/04 startTime=2:35 PM interval=60 and now I can run it: cfschedule action=""> task=appcheck many thanks, Andrew. Yes, you need to create a

Re: Cfschedule tasks list

2004-07-14 Thread Kay Smoljak
On Tue, 13 Jul 2004 14:35:32 -0700 (PDT), John Elder [EMAIL PROTECTED] wrote: Is there any way to display the list of scheduled tasks on a page without using the administrator? Does this help? http://www.anticlue.net/archives/000303.htm -- Kay Smoljak http://kay.smoljak.com [Todays Threads]

Re: Cfschedule tasks list

2004-07-14 Thread John Elder
Yes, that's perfect. Thank You, John Elder --- Kay Smoljak [EMAIL PROTECTED] wrote: On Tue, 13 Jul 2004 14:35:32 -0700 (PDT), John Elder [EMAIL PROTECTED] wrote: Is there any way to display the list of scheduled tasks on a page without using the administrator? Does this help?

Re: CFSCHEDULE

2004-03-08 Thread Thomas Chiverton
On Friday 05 Mar 2004 20:56 pm, Matt Robertson wrote: Just as a general FYI, scheduling templates to run thru IE via the Windows task scheduler -- assuming a Win machine of course -- changes this. Indeed - or you can script wget or something similar too. -- Tom Chiverton Advanced ColdFusion

Re: CFSCHEDULE

2004-03-05 Thread Michael Dinowitz
I've used the scheduler since it was first put into CF (even wrote a chapter on it) and I've never had a problem. Other have had problems that have been hard to trace. If your going to use it follow a few simple rules. 1. The template being run should be able to run from an url without a problem.

Re: CFSCHEDULE

2004-03-05 Thread Matt Robertson
Michael Dinowitz wrote: 3. The scheduler is NOT a web browser so things like cookies, _javascript_ actions, etc. will not happen. Be aware. Just as a general FYI, scheduling templates to run thru IE via the Windows task scheduler -- assuming a Win machine of course -- changes this.

RE: CFSCHEDULE and file attribute problem

2003-12-09 Thread Schuster, Steven
Are you talking code or the actual cfschedule block that executes. In your code if you are writing a custom log then just do cffile with att of append. Otherwise you may need to hack into MX to modify the way CFSchedule works?? Steve -Original Message- From: David Adams [mailto:[EMAIL

Re: cfschedule | scheduled tasks

2003-10-01 Thread Randell B Adkins
We run a scheduled process via CFSCHEDULE to send approximately 2,000 emails to members all in one shot. I think we have it set to kickoff at 5AM in the morning. Have had it running for a good while now w/o a problem. [EMAIL PROTECTED] 10/01/03 08:42AM hi there. just thinking about how to

RE: cfschedule | scheduled tasks

2003-10-01 Thread Tony Weeg
navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Randell B Adkins [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 8:47 AM To: CF-Talk Subject: Re: cfschedule | scheduled tasks We run a scheduled process via CFSCHEDULE to send approximately

RE: cfschedule | scheduled tasks

2003-10-01 Thread Randell B Adkins
8:47 AM To: CF-Talk Subject: Re: cfschedule | scheduled tasks We run a scheduled process via CFSCHEDULE to send approximately 2,000 emails to members all in one shot. I think we have it set to kickoff at 5AM in the morning. Have had it running for a good while now w/o a problem. [EMAIL PROTECTED

RE: Cfschedule syntax

2003-08-14 Thread Qasim Rasheed
Here is a working example cfschedule action=UPDATE task=Task_Name operation=HTTPRequest startdate=#start_date# starttime=#start_time# enddate=#end_date# interval=Daily resolveurl=No publish=No

RE: Cfschedule syntax

2003-07-30 Thread Qasim Rasheed
Here is a working example cfschedule action=UPDATE task=Task_Name operation=HTTPRequest startdate=#start_date# starttime=#start_time# enddate=#end_date# interval=Daily resolveurl=No publish=No

RE: Cfschedule syntax

2003-07-30 Thread cfhelp
I run this code every time a major change as taken place to update a static webpage. All you are missing is the interval and operation. cfset StartTime = #DateAdd('n',1,Now())# cfset StartTime = #TimeFormat(StartTime,'HH:MM:SS')# cfschedule interval=Once action=UPDATE

RE: cfschedule question

2003-01-19 Thread Tony Weeg
jochem, thank you!! it will be wholly used by me and my company for our internal stuff and I have complete control over all aspects, so yeah...naming conventions not an issue, but thanks for the heads up! ill be playing with it tomorrow, and ill let u know how it all goes :) later man!

RE: cfschedule question

2003-01-16 Thread Clint Tredway
Not without you building an application that can track what schedules are whos. HTH, Clint -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 8:00 AM To: CF-Talk Subject: cfschedule question hi there... is there a way with the cfschedule tag

RE: cfschedule question

2003-01-16 Thread Tony Weeg
-Talk Subject: RE: cfschedule question Not without you building an application that can track what schedules are whos. HTH, Clint -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 8:00 AM To: CF-Talk Subject: cfschedule question hi

RE: cfschedule question

2003-01-16 Thread Clint Tredway
tag. HTH, Clint -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 8:12 AM To: CF-Talk Subject: RE: cfschedule question that's fine, a db to handle that, but is there any way to expose whats in the scheduler? for them tomodify

RE: cfschedule question

2003-01-16 Thread Tony Weeg
Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:29 AM To: CF-Talk Subject: RE: cfschedule question According to the refernce book, you can use

RE: cfschedule question

2003-01-16 Thread Randell B Adkins
monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:29 AM To: CF-Talk Subject: RE: cfschedule question According to the refernce book, you can use the cfschedule tag to create,update

RE: cfschedule question

2003-01-16 Thread Tony Weeg
monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Randell B Adkins [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:36 AM To: CF-Talk Subject: RE: cfschedule question If your running CF5 depending on you havign access to use the CFRegistry

RE: cfschedule question

2003-01-16 Thread Tony Weeg
- From: Randell B Adkins [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:36 AM To: CF-Talk Subject: RE: cfschedule question If your running CF5 depending on you havign access to use the CFRegistry function, you can get a listing from there. If I am not mistaken, it is located

RE: cfschedule question

2003-01-16 Thread Tony Weeg
- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:41 AM To: CF-Talk Subject: RE: cfschedule question nope, anyone know the cfmx reg keys that this might be stored in? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information

RE: cfschedule question

2003-01-16 Thread Dave Watts
nope, anyone know the cfmx reg keys that this might be stored in? CFMX doesn't store any configuration information in the registry. I think that scheduled events are stored in \CFusionMX\lib\neo-cron.xml. But, rather than edit that file directly while CF is running, you might instead want to

RE: cfschedule question

2003-01-16 Thread Tony Weeg
ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:44 AM To: CF-Talk Subject: RE: cfschedule question nope

RE: CFSCHEDULE - unknown exception condition (more details)

2002-08-27 Thread Dave Watts
Some further analysis shows that at the same time that the error was logged in my coldfusion server application.log file, there was also an entry in my Win 2K server's event viewer application.log file : Event Type: Information Event Source: DrWatson Event Category: None

Re: CFSCHEDULE - unknown exception condition (more details)

2002-08-27 Thread novakbanda
Maybe this could help you narrow down your problem... ...This error indicates that the internal error handling for MTS or COM+, which is known as Failfast, caught a potentially fatal exception. There are a wide variety of causes, and the event description includes specific error information

RE: CFSchedule Private SSL certificate

2002-07-24 Thread Stacy Young
Is this on CFMX? If so you have to manually import the certificate using the keytool utility... Instructions: (scroll down to Secure LDAP connections) http://www.macromedia.com/v1/handlers/index.cfm?ID=22993Method=Full Setting up a private cert:

Re: CFSchedule Private SSL certificate

2002-07-24 Thread Marlon Moyer
Have you installed the CA onto the server as a trused root authority? Jesse Houwing wrote: I've got a little problem. I've got a site that is using a private SSL certificate (generated on the same server on which coldfusion is running). But this certificate doesn't pass as correct SSL cert,

Re: CFSchedule Private SSL certificate

2002-07-24 Thread Jesse Houwing
Marlon Moyer wrote: Have you installed the CA onto the server as a trused root authority? It is installed in IIS as trusted root authority. And I've since added the certificate to the certificate store. I've got a little problem. I've got a site that is using a private SSL certificate

Re: CFSchedule Private SSL certificate

2002-07-24 Thread Jesse Houwing
Stacy Young wrote: Is this on CFMX? If so you have to manually import the certificate using the keytool utility... Instructions: (scroll down to Secure LDAP connections) http://www.macromedia.com/v1/handlers/index.cfm?ID=22993Method=Full I tried this, but it still doesn't work. Java did

Re: CFSchedule

2002-01-25 Thread Chris Giminez
Nothing too difficult about CF schedule, just point it to a page that runs normally. I see your url is under /admin. If you have security built in to application.cfm of that directory, you won't be able to get in with your scheduled tag as far as I know. I had to do something like this with

Re: cfSchedule is not doing anything

2001-11-13 Thread Don Vawter
grasping at straws but does administrator use dates in dd/mm/ format or is it provincial ;) and take only mm/dd/ format? - Original Message - From: John McCosker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, November 13, 2001 9:03 AM Subject: cfSchedule is not

RE: cfSchedule is not doing anything

2001-11-13 Thread John McCosker
Do I have to have the coldfusion executive running for CFShedule to work on an NT server or Just when using LocalHost. Ahh just as I am writing a reply to myself, incoming mail. grasping at straws but does administrator use dates in dd/mm/ format or is it provincial ;) and take only

RE: cfSchedule is not doing anything

2001-11-13 Thread Dave Watts
Do I have to have the coldfusion executive running for CFSchedule to work on an NT server or Just when using LocalHost. Yes, the CF Executive service must be running to use CFSCHEDULE or the scheduling options in CF Admin. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone:

Re: CFSchedule

2001-10-29 Thread Bud
On 10/29/01, [EMAIL PROTECTED] penned: Quick question for you, I ran into an interesting note when reading through the documentation for this tag. Note You cannot use CFSCHEDULE and apply the Secure Sockets Layer (SSL) to your application. Do I take this to mean I

RE: cfschedule question

2001-08-17 Thread Billy Cravens
Message- From: Mak Wing Lok [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 7:44 PM To: CF-Talk Subject: Re: cfschedule question i use cfschedule to make http call on other pages that run some perl script the problem is that the perl script has not been run at all, but if i run those

Re: cfschedule question

2001-08-16 Thread Howie Hamlin
CFSchedule calls pages via http so it should be able to do what you're looking for. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Join the DevCon community at

Re: cfschedule question

2001-08-16 Thread Mak Wing Lok
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 8:37 PM Subject: Re: cfschedule question CFSchedule calls pages via http so it should be able to do what you're looking for. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631

RE: CFSCHEDULE

2001-08-03 Thread Aidan Whitehall
Any comments, experiences that would enlighten me more on this strange semi-documented tag? None other than I've never managed to get the scheduler to work via the ColdFusion Administrator, let alone via the tag. I hope this has been fixed in v5, but I'm not holding my breath... Aidan --

Re: cfschedule not working

2001-07-17 Thread Dick Applebaum
Iuse the following to set and run a scheduled task: cfschedule action=UPDATE task=#FORM.TaskName# operation=HTTPRequest url=#CompleteURL# startdate=#FORM.StartDate#

RE: CFSCHEDULE in background

2001-06-11 Thread James Maltby
There is no way really - unless you upgrade to cf hawaii (5-0h) and use cfflush (or unless you use js to open a remote window that calls the cfschedule page in the background (i.e. under the main window) - then use a close window function at the end of the schdule page - while you also use a

Re: CFSCHEDULE in background

2001-06-11 Thread Andrew Howe
, June 11, 2001 12:56 PM Subject: RE: CFSCHEDULE in background There is no way really - unless you upgrade to cf hawaii (5-0h) and use cfflush (or unless you use js to open a remote window that calls the cfschedule page in the background (i.e. under the main window) - then use a close window

Re: cfschedule behind protected directory

2001-04-19 Thread Michael Lugassy
Run the scheduled script with url params you know they're VALID. - Original Message - From: "Chris Giminez" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, April 19, 2001 9:08 PM Subject: cfschedule behind protected directory I am using cf security to protect a

Re: cfschedule rerun if fails?

2001-03-27 Thread Peter Theobald
Schedule a wrapper page that calls your page and tests that it ran successfully, re-running it if necessary. At 07:36 PM 3/26/01 -0500, Jack Monteleagre wrote: Hi, I'm trying to come up with a solution where I can use cfschedule to execute a page. If the page fails then cfschedule runs again

Re: cfschedule

2000-12-26 Thread Dylan Bromby
CF runs schedules server-side. They would run if you had zero traffic. If I understand your question correctly, you want the scheduler to run a page that is normally hit by a user and maybe the page requires the session var(?). You can pass variables into the page in the scheduler by placing

  1   2   >