Automated Scripts?

2004-08-23 Thread Richard Crawford
I'm trying to figure out how to run some Cold Fusion scripts automatically.

For example: our users have logins that expire every three months.I'd 
like to set up a script which would run each morning to scan all of the 
users in the database, and send an e-mail to those users whose logins 
will be expiring in a week.

I've looked through the CF Admin page, and haven't found any settings or 
anything which would set this up.

-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Automated Scripts?

2004-08-23 Thread Lofback, Chris
Use the Scheduler in the CF Admin.Write a CF template to handle the logic and schedule it to run each morning.

 
Chris

-Original Message-
From: Richard Crawford [mailto:[EMAIL PROTECTED]
Sent: Monday, August 23, 2004 12:39 PM
To: CF-Talk
Subject: Automated Scripts?

I'm trying to figure out how to run some Cold Fusion scripts automatically.

For example: our users have logins that expire every three months.I'd 
like to set up a script which would run each morning to scan all of the 
users in the database, and send an e-mail to those users whose logins 
will be expiring in a week.

I've looked through the CF Admin page, and haven't found any settings or 
anything which would set this up.

-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Bryan Stevenson
ummm...scheduled tasks in CF Adminbeen there for ever!!

You write the code to be run...setup a task to run it when you want.

That's it...easy like pie ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

- Original Message - 
From: Richard Crawford 
To: CF-Talk 
Sent: Monday, August 23, 2004 9:39 AM
Subject: Automated Scripts?

I'm trying to figure out how to run some Cold Fusion scripts automatically.

For example: our users have logins that expire every three months.I'd 
like to set up a script which would run each morning to scan all of the 
users in the database, and send an e-mail to those users whose logins 
will be expiring in a week.

I've looked through the CF Admin page, and haven't found any settings or 
anything which would set this up.

-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Marco Antonio C. Santos
Create your CF script(search users in database, format email, bla,
bla) and after setting your CF Admin Scheduler Tasks...

will run fine

On Mon, 23 Aug 2004 09:39:27 -0700, Richard Crawford
[EMAIL PROTECTED] wrote:
 I'm trying to figure out how to run some Cold Fusion scripts automatically.
 
 For example: our users have logins that expire every three months.I'd
 like to set up a script which would run each morning to scan all of the
 users in the database, and send an e-mail to those users whose logins
 will be expiring in a week.
 
 I've looked through the CF Admin page, and haven't found any settings or
 anything which would set this up.
 
 --
 Richard S. Crawford
 Programmer III: Oracle/Solaris Wrangler
 UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
 2901 K Street, Suite 200C
 Sacramento, CA95816
 (916)327-7793
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Automated Scripts?

2004-08-23 Thread Mark A. Kruger - CFG
Richard,

Write your script - then use the cf admin scheduled tasks to make it run each
morning. If you don't have access to admin but cfschedule is enabled you can use
that tag to create a reoccuring task.

-mark

-Original Message-
From: Richard Crawford [mailto:[EMAIL PROTECTED]
Sent: Monday, August 23, 2004 11:39 AM
To: CF-Talk
Subject: Automated Scripts?

I'm trying to figure out how to run some Cold Fusion scripts automatically.

For example: our users have logins that expire every three months.I'd
like to set up a script which would run each morning to scan all of the
users in the database, and send an e-mail to those users whose logins
will be expiring in a week.

I've looked through the CF Admin page, and haven't found any settings or
anything which would set this up.

--
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Mark Drew
Schedule Tasks under CFIDE./administrator

create your script that will do what you want it to do and then setup
a scheduled task for it to run whenever youlike

regards

Mark Drew

On Mon, 23 Aug 2004 09:39:27 -0700, Richard Crawford
[EMAIL PROTECTED] wrote:
 I'm trying to figure out how to run some Cold Fusion scripts automatically.
 
 For example: our users have logins that expire every three months.I'd
 like to set up a script which would run each morning to scan all of the
 users in the database, and send an e-mail to those users whose logins
 will be expiring in a week.
 
 I've looked through the CF Admin page, and haven't found any settings or
 anything which would set this up.
 
 --
 Richard S. Crawford
 Programmer III: Oracle/Solaris Wrangler
 UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
 2901 K Street, Suite 200C
 Sacramento, CA95816
 (916)327-7793
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Richard Crawford
Ah.Okay.

Looks like I picked the wrong week to give up coffee.;-)

Bryan Stevenson wrote:

 ummm...scheduled tasks in CF Adminbeen there for ever!!
 
 You write the code to be run...setup a task to run it when you want.
 
 That's it...easy like pie ;-)
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com
 
- Original Message - 
From: Richard Crawford 
To: CF-Talk 
Sent: Monday, August 23, 2004 9:39 AM
Subject: Automated Scripts?
 
 
I'm trying to figure out how to run some Cold Fusion scripts automatically.
 
For example: our users have logins that expire every three months.I'd 
like to set up a script which would run each morning to scan all of the 
users in the database, and send an e-mail to those users whose logins 
will be expiring in a week.
 
I've looked through the CF Admin page, and haven't found any settings or 
anything which would set this up.
 
-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793

-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Mike Soultanian
try the coldfusion scheduler

Richard Crawford wrote:

 I'm trying to figure out how to run some Cold Fusion scripts automatically.
 
 For example: our users have logins that expire every three months.I'd 
 like to set up a script which would run each morning to scan all of the 
 users in the database, and send an e-mail to those users whose logins 
 will be expiring in a week.
 
 I've looked through the CF Admin page, and haven't found any settings or 
 anything which would set this up.

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Mark Drew
echo

On Mon, 23 Aug 2004 09:44:43 -0700, Mike Soultanian [EMAIL PROTECTED] wrote:
 try the coldfusion scheduler
 
 
 Richard Crawford wrote:
 
  I'm trying to figure out how to run some Cold Fusion scripts automatically.
 
  For example: our users have logins that expire every three months.I'd
  like to set up a script which would run each morning to scan all of the
  users in the database, and send an e-mail to those users whose logins
  will be expiring in a week.
 
  I've looked through the CF Admin page, and haven't found any settings or
  anything which would set this up.
 
 
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Automated Scripts?

2004-08-23 Thread Bryan Stevenson
LOL...Good Day...and welcome to Monday ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

- Original Message - 
From: Richard Crawford 
To: CF-Talk 
Sent: Monday, August 23, 2004 9:46 AM
Subject: Re: Automated Scripts?

Ah.Okay.

Looks like I picked the wrong week to give up coffee.;-)

Bryan Stevenson wrote:

 ummm...scheduled tasks in CF Adminbeen there for ever!!
 
 You write the code to be run...setup a task to run it when you want.
 
 That's it...easy like pie ;-)
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com
 
- Original Message - 
From: Richard Crawford 
To: CF-Talk 
Sent: Monday, August 23, 2004 9:39 AM
Subject: Automated Scripts?
 
 
I'm trying to figure out how to run some Cold Fusion scripts automatically.
 
For example: our users have logins that expire every three months.I'd 
like to set up a script which would run each morning to scan all of the 
users in the database, and send an e-mail to those users whose logins 
will be expiring in a week.
 
I've looked through the CF Admin page, and haven't found any settings or 
anything which would set this up.
 
-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793

-- 
Richard S. Crawford
Programmer III: Oracle/Solaris Wrangler
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA95816
(916)327-7793
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]