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

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235586
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


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 template that runs is send_email.cfm - what is the best way to
> protect this template from being executed by mistake - as we only want
> one followup email sent to customers.
>
> Regards
> Mike
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235480
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


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 there a better way?
>
>
>thanks,
>
>Luis R. Lebron
>Project Manager
>Sigmatech, Inc
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




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 this

{ts '2004-09-20 12:00:00'},weekly

Where the timestamp is the start of the event and second item in the list the schedule repeat period (once, weekly etc.).

You give the text file a unique name - say using a UUID tied to the name of the site/event = event1_#mySiteUUID#.txt - then to list a specific sites events you use 

Johan

www.assetnow.com
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




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 elements/nodes of the cronservice e.g. cronservice[1].task, cronservice[4].interval, etc.

> 
> What you need to have is the cronservice and then listAll().
> 
  
> 
    
> factory = CreateObject("java", "coldfusion.server.ServiceFactory");
    
> cronservice = factory.cronservice;
    
> tasks = cronservice.listAll();
  
>  
  
>  
> 
> 
> This will return a complete list of all the scheduled tasks defined on 
> the system. To make sure you can always identify which task belongs to 
> who you should stick to some convention for the name. The actual 
> changing of tasks can be done using cfschedule (be sure to revoke 
> cfschedule permissions for your clients).
> Make sure your clients don't schedule anything between 02:00 and 03:00 
> because of DST issues.
> 
Jochem
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




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!

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, January 19, 2003 6:08 PM
To: CF-Talk
Subject: cfschedule question


Dave Watts wrote:
>
>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 use the appropriate API. Jochem van Dieten's site has
>information on that; I don't remember the URL offhand, but I'm sure
it's
>in the list archives somewhere.

What you need to have is the cronservice and then listAll().

  
factory = CreateObject("java", "coldfusion.server.ServiceFactory");
cronservice = factory.cronservice;
tasks = cronservice.listAll();
   
   


This will return a complete list of all the scheduled tasks defined on
the system. To make sure you can always identify which task belongs to
who you should stick to some convention for the name. The actual
changing of tasks can be done using cfschedule (be sure to revoke
cfschedule permissions for your clients).
Make sure your clients don't schedule anything between 02:00 and 03:00
because of DST issues.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Tony Weeg
ok, thank dave.

yeah, I do see those in the neo-cron.xml
file...so, the question now, maybe for christian
is, how the heck can I tap into that? manage the
schedule, etc...what I don't want to do I just blind
updating of events.

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced 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, 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 use the appropriate API. Jochem van Dieten's site has
information on that; I don't remember the URL offhand, but I'm sure it's
in
the list archives somewhere.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 use the appropriate API. Jochem van Dieten's site has
information on that; I don't remember the URL offhand, but I'm sure it's in
the list archives somewhere.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Tony Weeg
or are they stored in like some sort
of xml file that I could tap into?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
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 System Design
Navtrak, Inc.
Mobile workforce 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
function, you can get a listing from there.

If I am not mistaken, it is located:
HKEY_LOCAL_MACHINE\MACROMEDIA\ColdFusion\Schedule

Something like that

>>> [EMAIL PROTECTED] 01/16/03 09:33AM >>>
so yeah, to update, I guess you update, based on the name of the
event?  so how do I get the events that are there, lets say I make a
change
to an event in the admin, and the user wasn't expecting it, is there a
way
to get that data, the scheduled events that are already there, to show
whats
available to change?

otherwise, I got what ur saying, and that's what I was figuring, just
wondering if
I can get that data, the data to know what I getting ready to update,
before updating?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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 the cfschedule tag to
create,update, and delete a scheduled event.

So I would say that you would need to have 2 tables, a client table
and
a
schedule table. Store tha params of the scheduled event and just
update
or
delete the event using the cfschedule 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, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row,
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net 
410.548.2337








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Tony Weeg
nope, anyone know the cfmx reg keys that this might be stored in?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce 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
function, you can get a listing from there.

If I am not mistaken, it is located:
HKEY_LOCAL_MACHINE\MACROMEDIA\ColdFusion\Schedule

Something like that

>>> [EMAIL PROTECTED] 01/16/03 09:33AM >>>
so yeah, to update, I guess you update, based on the name of the
event?  so how do I get the events that are there, lets say I make a
change
to an event in the admin, and the user wasn't expecting it, is there a
way
to get that data, the scheduled events that are already there, to show
whats
available to change?

otherwise, I got what ur saying, and that's what I was figuring, just
wondering if
I can get that data, the data to know what I getting ready to update,
before updating?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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 the cfschedule tag to
create,update, and delete a scheduled event.

So I would say that you would need to have 2 tables, a client table
and
a
schedule table. Store tha params of the scheduled event and just
update
or
delete the event using the cfschedule 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, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row,
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net 
410.548.2337







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Tony Weeg
oh yeah, I have access, I host the servers, and they are mine :)
so, cool, but not...i have cfmxi wonder can I get it from there...
let me check!

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce 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
function, you can get a listing from there.

If I am not mistaken, it is located:
HKEY_LOCAL_MACHINE\MACROMEDIA\ColdFusion\Schedule

Something like that

>>> [EMAIL PROTECTED] 01/16/03 09:33AM >>>
so yeah, to update, I guess you update, based on the name of the
event?  so how do I get the events that are there, lets say I make a
change
to an event in the admin, and the user wasn't expecting it, is there a
way
to get that data, the scheduled events that are already there, to show
whats
available to change?

otherwise, I got what ur saying, and that's what I was figuring, just
wondering if
I can get that data, the data to know what I getting ready to update,
before updating?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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 the cfschedule tag to
create,update, and delete a scheduled event.

So I would say that you would need to have 2 tables, a client table
and
a
schedule table. Store tha params of the scheduled event and just
update
or
delete the event using the cfschedule 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, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row,
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net 
410.548.2337







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Randell B Adkins
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:
HKEY_LOCAL_MACHINE\MACROMEDIA\ColdFusion\Schedule

Something like that

>>> [EMAIL PROTECTED] 01/16/03 09:33AM >>>
so yeah, to update, I guess you update, based on the name of the
event?  so how do I get the events that are there, lets say I make a
change
to an event in the admin, and the user wasn't expecting it, is there a
way
to get that data, the scheduled events that are already there, to show
whats
available to change?

otherwise, I got what ur saying, and that's what I was figuring, just
wondering if
I can get that data, the data to know what I getting ready to update,
before updating?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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 the cfschedule tag to
create,update, and delete a scheduled event.

So I would say that you would need to have 2 tables, a client table
and
a
schedule table. Store tha params of the scheduled event and just
update
or
delete the event using the cfschedule 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, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row,
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net 
410.548.2337






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Tony Weeg
so yeah, to update, I guess you update, based on the name of the
event?  so how do I get the events that are there, lets say I make a
change
to an event in the admin, and the user wasn't expecting it, is there a
way
to get that data, the scheduled events that are already there, to show
whats
available to change?

otherwise, I got what ur saying, and that's what I was figuring, just
wondering if
I can get that data, the data to know what I getting ready to update,
before updating?

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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 the cfschedule tag to
create,update, and delete a scheduled event.

So I would say that you would need to have 2 tables, a client table and
a
schedule table. Store tha params of the scheduled event and just update
or
delete the event using the cfschedule 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, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row,
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Clint Tredway
According to the refernce book, you can use the cfschedule tag to
create,update, and delete a scheduled event.

So I would say that you would need to have 2 tables, a client table and a
schedule table. Store tha params of the scheduled event and just update or
delete the event using the cfschedule 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, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row,
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2003-01-16 Thread Tony Weeg
that's fine, a db to handle that, but is there any
way to expose whats in the scheduler?  for them 
tomodify, and then update, and expect the results
to happen next scheduled run?

I mean, I could easily create a db table that has some
parameter info in it, and then have a scheduled page run
that would hit the db, get the parameters, row by row, 
parse the parameters, execute the reports that are generated
and go from there, but wanted to tap the scheduler more than
sql, but I wasnt sure if that info from the scheduler's schedule
of events was exposable?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
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:06 AM
To: CF-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 there...

is there a way with the cfschedule tag and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




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 and the scheduler
to give my clients access to scheduled events that are theirs?

thank you

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: cfschedule question

2001-08-17 Thread Billy Cravens

A number of potential issues.  Does the script rely on user agent?
Permissions perhaps?  How about firewall issues? (I ran into this one
not too long ago - seems that localhost wasn't on the list of acceptable
IP addresses)

---
Billy Cravens
HR Systems, EDS
[EMAIL PROTECTED]


-Original 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 pages direct from the browser then the perl script is
execute, why is that?




- Original Message -
From: "Howie Hamlin" <[EMAIL 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-737-4668 x101
> inFusion Mail Server (iMS) - The Intelligent Mail Server
> Join the DevCon community at www.coolfusion.com/devcon
>
> - Original Message -
> From: "Mak Wing Lok" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, August 16, 2001 4:05 AM
> Subject: cfschedule question
>
>
> > hi, just curious, is cfschedule able to schdule-call pages from 
> > .asp,
.php
> > or any other valid http pages?
> >
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cfschedule question

2001-08-16 Thread Mak Wing Lok

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 pages direct from the browser then the perl script is execute, why is
that?




- Original Message -
From: "Howie Hamlin" <[EMAIL 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-737-4668 x101
> inFusion Mail Server (iMS) - The Intelligent Mail Server
> Join the DevCon community at www.coolfusion.com/devcon
>
> - Original Message -
> From: "Mak Wing Lok" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, August 16, 2001 4:05 AM
> Subject: cfschedule question
>
>
> > hi, just curious, is cfschedule able to schdule-call pages from .asp,
.php
> > or any other valid http pages?
> >
> >
> >
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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 www.coolfusion.com/devcon

- Original Message - 
From: "Mak Wing Lok" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, August 16, 2001 4:05 AM
Subject: cfschedule question


> hi, just curious, is cfschedule able to schdule-call pages from .asp, .php
> or any other valid http pages?
> 
> 
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFSCHEDULE QUESTION

2000-04-26 Thread Talha Rizvi



I had the same exact problem. Our scheduler was working unexpectedly if at all
(it didn't matter if we were using the administrator panel or the cfschedule
tag). Since we upgraded to CF 4.5 everything seems to work fine. Maybe that's
also your problem, check what version your CF Server is. Allaire has fixed some
of the bugs in CF 4.0.

If all else fails, try this http://www.crt.net/cfx_crt_schedule/ (it didn't work
for us, but it might work for you).

Good luck,
Talha


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFSCHEDULE QUESTION

2000-04-26 Thread Randy Adkins

Make sure that your scheduled templates are running on a normal PORT 80.
CFSCHEDULER does not work on odd ports.

But yes, our cfschedule working perfectly fine.


- Original Message -
From: "Double Down, Inc" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 26, 2000 2:23 PM
Subject: CFSCHEDULE QUESTION


> This is a multi-part message in MIME format.
>
> --=_NextPart_000__01BFAF71.C798AC20
> Content-Type: text/plain;
> charset="Windows-1252"
> Content-Transfer-Encoding: 7bit
>
>
>
> I have several sites that require daily, weekly and monthly updates. I
have
> written the code to be executed and it works. The problem is I cannot get
> CFSCHEDULE to work. I have tired going into the administrator to set the
> schedule and it has not worked.
>
> Can anyone help me out with this problem? Has anyone gotten CFSCHEDULE to
> work? I know that there is a way to schedule items in NT, can anyone help
me
> with that.
>
> TIA
>
> DDINC
>
>
>
> --=_NextPart_000__01BFAF71.C798AC20
> Content-Type: text/html;
> charset="Windows-1252"
> Content-Transfer-Encoding: quoted-printable
>
>  xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
> xmlns=3D"http://www.w3.org/TR/REC-html40">
>
> 
>  charset=3Dwindows-1252">
> 
> 
> 
> cid:[EMAIL PROTECTED]">
> 
> 
> 
> 
> 
>
> 
>
> 
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  pan
> class=3DEmailStyle17> style=3D'font-size:
> 10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial'>I have several sites =
> that
> require daily, weekly and monthly updates. I have written the code to be
> executed and it works. The problem is I cannot get CFSCHEDULE to work. I =
> have
> tired going into the administrator to set the schedule and it has not =
> worked.
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'>Can anyone help me out with this problem? Has anyone gotten =
> CFSCHEDULE
> to work? I know that there is a way to schedule items in NT, can anyone =
> help me
> with that.
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  style=3D'font-size:
> 10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso-bidi-font-family:A=
> rial;
> color:black'>TIA face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso=
> -bidi-font-family:
> Arial;color:black;mso-color-alt:windowtext'>=
>
>
>  Roman"> style=3D'font-size:12.0pt;color:black'>  color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
>  style=3D'font-size:
> 10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso-bidi-font-family:A=
> rial;
> color:black'>DDINC style=3D'color:black;
> mso-color-alt:windowtext'>
>
>  Roman"> style=3D'font-size:12.0pt;color:black;font-weight:bold'>  color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /b>
>
>  color=3Dblack>  color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
> 
>
> 
>
> 
>
> --=_NextPart_000__01BFAF71.C798AC20--
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMA

RE: CFSCHEDULE QUESTION

2000-04-26 Thread Jay Wigginton

Hey,

I have found to get the scheduler to work fro us that we have had to use the
interval for execute and event every X number of minutes... every day - 1440
minutes, etc...

Jay

-Original Message-
From: Double Down, Inc [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 26, 2000 2:23 PM
To: [EMAIL PROTECTED]
Subject: CFSCHEDULE QUESTION


This is a multi-part message in MIME format.

--=_NextPart_000__01BFAF71.C798AC20
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit



I have several sites that require daily, weekly and monthly updates. I have
written the code to be executed and it works. The problem is I cannot get
CFSCHEDULE to work. I have tired going into the administrator to set the
schedule and it has not worked.

Can anyone help me out with this problem? Has anyone gotten CFSCHEDULE to
work? I know that there is a way to schedule items in NT, can anyone help me
with that.

TIA

DDINC



--=_NextPart_000__01BFAF71.C798AC20
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

http://www.w3.org/TR/REC-html40">






cid:[EMAIL PROTECTED]">










 

 

I have several sites =
that
require daily, weekly and monthly updates. I have written the code to be
executed and it works. The problem is I cannot get CFSCHEDULE to work. I =
have
tired going into the administrator to set the schedule and it has not =
worked.

 

Can anyone help me out with this problem? Has anyone gotten =
CFSCHEDULE
to work? I know that there is a way to schedule items in NT, can anyone =
help me
with that.

 

TIA=


 <=
/p>

DDINC

 <=
/b>

 <=
/p>







--=_NextPart_000__01BFAF71.C798AC20--


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.