[KCFusion] ColdFusion Certification

2001-05-15 Thread Sheeran, Jean

Has anyone taken the Allaire CF exam?  Has anyone passed it?  At a price of
$150 it is not very expensive compared to some other 'certifications' out
there, but I am still curious about whether or not this exam has any impact.
Does it really mean enough for it to be worth preparing for it?

Jean Sheeran
remel Laboratory Products
EDI Analyst/Web Designer
913-895-4242
-
If Microsoft has enough clout to get their own Windows Key on every new
keyboard, isn't it about time for them to condense CTRL, ALT, and DELETE
into one easy key?

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



[KCFusion] FW: CFFILE

2001-05-09 Thread Sheeran, Jean

 Would it be easy to loop through each file in a directory, and if its a
 .htm or .html file, slap a line of code at the beginning, a line of code
 at the end, then make it a .cfm file?
 
 I have an old support manual that is all .htm and .html, and I would like
 to put it in our new interface by means of cfinclude
 template=header.cfm at the top and cfinclude template=footer.cfm at
 the bottom.  I COULD do this all by hand, but ColdFusion isn't all about
 doing things by hand now is it?   :-)
 
 Jean Sheeran
 remel Laboratory Products
 EDI Analyst/Web Designer
 913-895-4242
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



RE: [KCFusion] CF 5.0-- test it while you can!

2001-05-04 Thread Sheeran, Jean

I would love to test the RC, but I get a message whenever I try to log on
from another computer that its a Single User License and that I have to stop
and restart CF services before I can view content from another page.

??
What am I missing?

Jean Sheeran
remel Laboratory Products
EDI Analyst/Web Designer
913-895-4242


-Original Message-
From: Daryl Banttari [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 04, 2001 12:28 AM
To: [EMAIL PROTECTED]
Subject: [KCFusion] CF 5.0-- test it while you can!


OK,

Word from development is that the 5.0 Release Candidate (RC) is very stable
and nearly bug-free (as far as we can tell).  The quote I got is, we can't
get it to crash [unless we use unlocked application and session vars].
Barring a few minor fixes and documentation changes, this looks to be the
finished bits.

Therefore, if you want to test 5.0 while it's still in its development
cycle, you'd better do it now.  What we'd /really/ like to see is for some
of our braver partners to actually run the 5.0 RC in their production
environments to check for any undiscovered issues before we go gold.  There
will not be another Release Candidate for 5.0.

That being said, this is not an official announcement or request of
anything, and all the usual disclaimers about liability apply.

Reports are that 5.0 is as much as 3.5x faster on multiprocessor Win2K than
4.5 was.  CF/Linux is as much as 4.5x faster on multiprocessor systems.
Woohoo!

If you haven't yet been part of the beta process, you can sign up at
http://beta.allaire.com/bart/

Daryl Banttari
Sr. Consultant
Macromedia Consulting

P.S. Some of you may remember me ranting about the beta and RC cycles for
prior releases of CF (perhaps they hired me to shut me up?  Heh.)   I'm
proud to say that they (or rather, we) got it right this time.  The betas
were quite solid, and the RC met my definition for RC, which is it has to
have a double-digit chance of actually being the finished bits.


 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



[KCFusion] looping over form fields

2001-04-30 Thread Sheeran, Jean

I have done this before, so I don't know what my hang-up is here.  The
following code (successfully) loops through and makes an inventory request
form with 10 lines.  First line

cfloop from=1 to=10 index=linenumber step=1
cfoutput
tr
tdinput type=text name=prodnum#linenumber#/td
tdinput type=text name=lot#linenumber#/td
/tr
/cfoutput
/cfloop

Using #form.fieldnames# does show me that the field names were sent over
correctly.  I need to output the results.  The following is the code that
does not work.


cfloop from=1 to=10 index=output step=1
tr
td#form.prodnum#output#/td
td#form.lot#output##/td
/tr
/cfloop

Thanks in advance!

-Jean Sheeran
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



RE: [KCFusion] looping over form fields

2001-04-30 Thread Sheeran, Jean

Thanks much!

Jason's code works as is, and it also works as follows:

cfloop from=1 to=10 index=output step=1
tr
td#Evaluate(form.prodnum#output#)#/td
td#Evaluate(form.lot#output#)#/td
/tr
/cfloop
-Original Message-
From: Jason Nokes [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 30, 2001 2:24 PM
To: '[EMAIL PROTECTED]'
Subject: RE: [KCFusion] looping over form fields


This should work:

cfloop from=1 to=10 index=output step=1
CFSET locProdNum=form.prodnum#output#
CFSET locLot=form.lot#output#
tr
td#Evaluate(locProdNum)#/td
td#Evaluate(locLot)#/td
/tr
/cfloop

-Original Message-
From: Sheeran, Jean [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 30, 2001 2:18 PM
To: '[EMAIL PROTECTED]'
Subject: [KCFusion] looping over form fields


I have done this before, so I don't know what my hang-up is here.  The
following code (successfully) loops through and makes an inventory request
form with 10 lines.  First line

cfloop from=1 to=10 index=linenumber step=1
cfoutput
tr
tdinput type=text name=prodnum#linenumber#/td
tdinput type=text name=lot#linenumber#/td
/tr
/cfoutput
/cfloop

Using #form.fieldnames# does show me that the field names were sent over
correctly.  I need to output the results.  The following is the code that
does not work.


cfloop from=1 to=10 index=output step=1
tr
td#form.prodnum#output#/td
td#form.lot#output##/td
/tr
/cfloop

Thanks in advance!

-Jean Sheeran
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



Fwd: [KCFusion] displaying a message to the user

2001-04-24 Thread Jean

Jered, the following is a working example from one of our
application.cfm pages that submits to itself.  If the form.username is
not defined, it sets showUNameHelp to yes, then in the html part of the
template it points to an invalid username error.  Same thing for
invalid password error.  If you have any questoins after digging
through this, let me know.


cfif not IsAuthenticated() !--- User is not authenticated ---
  cfset showLogin = No
  cfset showHelp = No
  cfif IsDefined(form.username) and IsDefined(form.password) 
  !--- The Login Form was submitted ---
CFPARAM NAME=Client.username DEFAULT=#form.username#
  cftry
!--- Try to authenticate the user ---
cfif form.login is ''
  cfset showUNameHelp = Yes
cfelse form.password is ''
  cfset showPassHelp =Yes
/cfif
cfauthenticate setcookie=Yes
 throwonfailure=Yes
 securitycontext=blah
 username=#form.username#
 password=#form.password#
cfcatch type=Security
cfset showLogin = Yes
cfset showHelp = Yes
  /cfcatch
/cftry
cfelse !--- The Login Form was not submitted ---
  cfset showLoginHelp = Yes
/cfif

cfif showLogin
  cfset url = #cgi.script_name#  
 !--- Store the page they are on to return to it after
authentication ---
  cfif cgi.query_string is not 
  cfset url = url  ?#cgi.query_string#
/cfif
cfoutput
  html
  head
  /head
  body
  cfif showUNameHelp
fontInvalid Username/fontbrbr
  cfelseif showPassHelp
   fontInvalid Password/fontbrbr
  /cfif

form action=#url# Method=post
  table
  tr
td class=nameUsername:/td
tdinput type=Text name=username/td
  /tr
  tr
td class=namePassword:/td
tdinput type=Password name=password/td
  /tr
  tr
td colspan=2 align=centerbrinput type=submit
value=Loginbrbrbr/td
  /tr
/form
/table
/cfoutput
cfabort
/body
/html
/cfif
/cfif



--- [EMAIL PROTECTED] wrote:
 From: [EMAIL PROTECTED]
 Date: Tue, 24 Apr 2001 12:40:33 -0500
 To: [EMAIL PROTECTED]
 Subject: [KCFusion] displaying a message to the user
 Reply-to: [EMAIL PROTECTED]
 
 Hi all.  Here's my latest trial.  I feel like I am so close, but I
 just can't quite figure it out.  I have a login prompt.  When the use
 does not log in properly, the action page directs the browser back to
 the login prompt.  I want to display a message to the user based on
 what they did wrong.  For example, if the user left the password
 field blank, I want the message to say, No password supplied.  I
 expect that I would want to populate a variable within CFIF statement
 that evaluates what the user did incorrect and reference that value
 on the calling page so that when it is reloaded, if it is defined,
 the message is displayed.  I just can't seem to figure out what type
 of variable can be populated by an action page and returned to a
 calling page.  Do I have to use session variables?  Thank you so
 much.
  Jered
 
 

__
 The KCFusion.org list and website is hosted by Humankind Systems,
 Inc.
 List Archives
 http://www.mail-archive.com/cf-list@kcfusion.org
 Questions, Comments or Glowing Praise..
 mailto:[EMAIL PROTECTED]
 To Subscribe
 mailto:[EMAIL PROTECTED]
 To Unsubscribe
 mailto:[EMAIL PROTECTED]
  


=
Rooms with angular corners will only encourage you to be cornered in life.  Lessen the 
danger by stapling pickled beets or meringue to the apex of the corner.
-from the Little Book of Wrong Shui

__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



[KCFusion] When/Where?

2001-04-12 Thread Jean

What time/what location is the meeting?  It is tonight correct?

=
Veni, Vedi, Velcro.
I came, I saw, I stuck with it.

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



Re: [KCFusion] Notes from the Austin CFUG Managers meeting...

2001-03-30 Thread Jean

Will the April 25th metting be taking the place of the normal April
10th meeting this month?  Do we have any sponsors for this meeting with
Ben Forta?  With over 100 people expected, that is good advertising for
just paying for a room for the meeting. (IMO)

=
Veni, Vedi, Velcro.
I came, I saw, I stuck with it.

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/?.refer=text
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



RE: [KCFusion] Meeting next week

2000-12-06 Thread Jean

does anyone have experience intigration flash with cold fusion?  I
would be interested in learning more about this...

=
Veni, Vedi, Velcro.
I came, I saw, I stuck with it.

__
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.com/
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]