Re: # in variables

2014-02-07 Thread Timothy Heald

There are a few formatting functions in cf you might want to try that
spring top mind.  UrlEncodedFormat, htmlEditFormat I think.  Look at the
string and list functions on live docs.
On Feb 7, 2014 12:29 PM, Rob Parkhill robert.parkh...@gmail.com wrote:


 I thought the #'s were inside the list.  If not and you control the AIR
 app, then just add the replace on the other end, as Russ suggested.


 On Fri, Feb 7, 2014 at 12:20 PM, Bryan Stevenson 
 br...@electricedgesystems.com wrote:

 
  Thanks Robsorry I should have mentioned that was the first thing I
  tried (ye old double up the #), but the issue seems to be that when a
  variable arrives on CF's door with a single # in it, CF bombs when
  attempting to run the replace.  Now I did say seemsthe way my day
  has goneI will re-test that to make dang sure ;-)
 
  Cheers
 
  On 14-02-07 09:08 AM, Rob Parkhill wrote:
   Run a Replace on the string of data, and change the single # to a
 double
  ##
   that then CF would process as a single one?
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357621
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: # in variables

2014-02-07 Thread Timothy Heald

Encode/serialize the data prior to hand off to cf?
On Feb 7, 2014 12:37 PM, Bryan Stevenson br...@electricedgesystems.com
wrote:


 Thanks Rob/Russstarting to think I will either do as you both
 suggested and replace # with ## in the AIR app or do as I also mentioned
 and not allow the few characters I'd have issues with (most users don't
 need ~,|,^, or # in comments# being the most likely, but they can
 use No. or Num or Number or pounds or lbs as acceptable
 replacements).

 Sometimes you just have to back away one step from perfect and become
 practical ;-)

 Cheers

 *Bryan Stevenson*B.Comm.
 President  CEO
 Electric Edge Systems Group Inc. - makers of FACTS^(TM)
 phone: 250.480.0642
 cell: 250.920.8830
 e-mail: br...@electricedgesystems.com mailto:
 br...@electricedgesystems.com
 web: www.electricedgesystems.com http://www.electricedgesystems.com
 and www.fisheryfacts.com http://www.fisheryfacts.com

 

 Please consider the environment before printing this e-mail

 -CONFIDENTIALITY--
 This message, including any attachments, is confidential and may contain
 information that is privileged or exempt from disclosure. It is intended
 only for the person to whom it is addressed unless expressly authorized
 otherwise by the sender. If you are not an authorized recipient, please
 notify the sender immediately and permanently destroy all copies of this
 message and attachments.
 On 14-02-07 09:28 AM, Rob Parkhill wrote:
  I thought the #'s were inside the list.  If not and you control the AIR
  app, then just add the replace on the other end, as Russ suggested.
 
 
  On Fri, Feb 7, 2014 at 12:20 PM, Bryan Stevenson 
  br...@electricedgesystems.com wrote:
 
  Thanks Robsorry I should have mentioned that was the first thing I
  tried (ye old double up the #), but the issue seems to be that when a
  variable arrives on CF's door with a single # in it, CF bombs when
  attempting to run the replace.  Now I did say seemsthe way my day
  has goneI will re-test that to make dang sure ;-)
 
  Cheers
 
  On 14-02-07 09:08 AM, Rob Parkhill wrote:
  Run a Replace on the string of data, and change the single # to a
 double
  ##
  that then CF would process as a single one?
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357622
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

It's no mystery, that's the correct response.  Trap the 404 error for html
files at the web server and handle the cf side through either site wide or
per application error handling.
On Feb 2, 2014 11:42 AM, Rob Voyle robvo...@voyle.com wrote:


 Hi Folks

 I have a basic .html site that I have converted to a coldfusion site.

 since there are many old .html links out there I added the following to my
 notFound.cfm file:

 cfif notFoundUrl contains .html 
 cfset newUrl=http://www.mydomain.com; 
 replace(notFoundUrl,.html,.cfm)
 cfif fileExists(newUrl) is yes
 cflocation url=#newUrl#
 cfelse
 cflocation url=http://www.mydomain.com;
 /cfif
 /cfif

 Works fine if the file exists but throws an error if the file doesn't
 exist rather than
 redirecting.

 Also which log file would have the error in it as I can't find the error
 in any of the
 logs

 What am I missing?

 Thanks
 Rob



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357562
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

And that's not what you're asking at all
On Feb 2, 2014 11:42 AM, Rob Voyle robvo...@voyle.com wrote:


 Hi Folks

 I have a basic .html site that I have converted to a coldfusion site.

 since there are many old .html links out there I added the following to my
 notFound.cfm file:

 cfif notFoundUrl contains .html 
 cfset newUrl=http://www.mydomain.com; 
 replace(notFoundUrl,.html,.cfm)
 cfif fileExists(newUrl) is yes
 cflocation url=#newUrl#
 cfelse
 cflocation url=http://www.mydomain.com;
 /cfif
 /cfif

 Works fine if the file exists but throws an error if the file doesn't
 exist rather than
 redirecting.

 Also which log file would have the error in it as I can't find the error
 in any of the
 logs

 What am I missing?

 Thanks
 Rob



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357563
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

What's the error message?
On Feb 2, 2014 11:42 AM, Rob Voyle robvo...@voyle.com wrote:


 Hi Folks

 I have a basic .html site that I have converted to a coldfusion site.

 since there are many old .html links out there I added the following to my
 notFound.cfm file:

 cfif notFoundUrl contains .html 
 cfset newUrl=http://www.mydomain.com; 
 replace(notFoundUrl,.html,.cfm)
 cfif fileExists(newUrl) is yes
 cflocation url=#newUrl#
 cfelse
 cflocation url=http://www.mydomain.com;
 /cfif
 /cfif

 Works fine if the file exists but throws an error if the file doesn't
 exist rather than
 redirecting.

 Also which log file would have the error in it as I can't find the error
 in any of the
 logs

 What am I missing?

 Thanks
 Rob



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357564
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

What's the error?
On Feb 2, 2014 12:09 PM, Rob Voyle robvo...@voyle.com wrote:


 Hi Timothy
 Instead of redirecting to: mydomain.com
 cflocation url=http://www.mydomain.com;
 It is throwing an error rather than redirecting.

 How do I redirect?

 Rob


 On 2 Feb 2014 at 11:56, Timothy Heald wrote:

 
  It's no mystery, that's the correct response.  Trap the 404 error
  for html
  files at the web server and handle the cf side through either site
  wide or
  per application error handling.
  On Feb 2, 2014 11:42 AM, Rob Voyle robvo...@voyle.com wrote:
 
   cfif notFoundUrl contains .html 
   cfset newUrl=http://www.mydomain.com; 
   replace(notFoundUrl,.html,.cfm)
   cfif fileExists(newUrl) is yes
   cflocation url=#newUrl#
   cfelse
   cflocation url=http://www.mydomain.com;
   /cfif
   /cfif
  



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357566
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

Add the file.  Like index.cfm our what ever
On Feb 2, 2014 12:09 PM, Rob Voyle robvo...@voyle.com wrote:


 Hi Timothy
 Instead of redirecting to: mydomain.com
 cflocation url=http://www.mydomain.com;
 It is throwing an error rather than redirecting.

 How do I redirect?

 Rob


 On 2 Feb 2014 at 11:56, Timothy Heald wrote:

 
  It's no mystery, that's the correct response.  Trap the 404 error
  for html
  files at the web server and handle the cf side through either site
  wide or
  per application error handling.
  On Feb 2, 2014 11:42 AM, Rob Voyle robvo...@voyle.com wrote:
 
   cfif notFoundUrl contains .html 
   cfset newUrl=http://www.mydomain.com; 
   replace(notFoundUrl,.html,.cfm)
   cfif fileExists(newUrl) is yes
   cflocation url=#newUrl#
   cfelse
   cflocation url=http://www.mydomain.com;
   /cfif
   /cfif
  



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357568
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

We don't know what's on the variable, and it's working through the first
half of the condition it sounds like.

Can you cflocate to the tld or do you require a filename?
On Feb 2, 2014 12:12 PM, Russ Michaels r...@michaels.me.uk wrote:


 you firstly are trying to use fileExists on a URL, so it will always fail,
 fileExists requires an absolute path on the server
 see here: https://learn.adobe.com/wiki/display/coldfusionen/fileexists

 secondly an html page will never reach coldfusion, because it is an html
 page, so cfml code will never run.
 You need to setup a 404 handler on the web server or use URL rewriting.





 On Sun, Feb 2, 2014 at 4:41 PM, Rob Voyle robvo...@voyle.com wrote:

 
  Hi Folks
 
  I have a basic .html site that I have converted to a coldfusion site.
 
  since there are many old .html links out there I added the following to
 my
  notFound.cfm file:
 
  cfif notFoundUrl contains .html 
  cfset newUrl=http://www.mydomain.com; 
  replace(notFoundUrl,.html,.cfm)
  cfif fileExists(newUrl) is yes
  cflocation url=#newUrl#
  cfelse
  cflocation url=http://www.mydomain.com;
  /cfif
  /cfif
 
  Works fine if the file exists but throws an error if the file doesn't
  exist rather than
  redirecting.
 
  Also which log file would have the error in it as I can't find the error
  in any of the
  logs
 
  What am I missing?
 
  Thanks
  Rob
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357570
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

What version of cf?
On Feb 2, 2014 12:19 PM, Rob Voyle robvo...@voyle.com wrote:


 Hi Timothy

 Which log would the error be in. I can't find the error in any of the logs.
 The site is public and only displays a generic error template rather than
 the
 specific error.

 Rob

 On 2 Feb 2014 at 11:58, Timothy Heald wrote:

 
  What's the error message?
  On Feb 2, 2014 11:42 AM, Rob Voyle robvo...@voyle.com wrote:



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357571
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

Looks like newurl isn't a url, rather a path, it's appended to the domain
name.
On Feb 2, 2014 12:35 PM, Cameron Childress camer...@gmail.com wrote:


 fileExists() accepts a filename on the filesystem, not a URL.

 -Cameron


 On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle robvo...@voyle.com wrote:

 
  Hi Folks
 
  I have a basic .html site that I have converted to a coldfusion site.
 
  since there are many old .html links out there I added the following to
 my
  notFound.cfm file:
 
  cfif notFoundUrl contains .html 
  cfset newUrl=http://www.mydomain.com; 
  replace(notFoundUrl,.html,.cfm)
  cfif fileExists(newUrl) is yes
  cflocation url=#newUrl#
  cfelse
  cflocation url=http://www.mydomain.com;
  /cfif
  /cfif
 
  Works fine if the file exists but throws an error if the file doesn't
  exist rather than
  redirecting.
 
  Also which log file would have the error in it as I can't find the error
  in any of the
  logs
 
  What am I missing?
 
  Thanks
  Rob
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cflocation mystery

2014-02-02 Thread Timothy Heald

Nope, read that wrong.
On Feb 2, 2014 12:39 PM, timothy.he...@gmail.com wrote:

 Looks like newurl isn't a url, rather a path, it's appended to the domain
 name.
 On Feb 2, 2014 12:35 PM, Cameron Childress camer...@gmail.com wrote:


 fileExists() accepts a filename on the filesystem, not a URL.

 -Cameron


 On Sun, Feb 2, 2014 at 11:41 AM, Rob Voyle robvo...@voyle.com wrote:

 
  Hi Folks
 
  I have a basic .html site that I have converted to a coldfusion site.
 
  since there are many old .html links out there I added the following to
 my
  notFound.cfm file:
 
  cfif notFoundUrl contains .html 
  cfset newUrl=http://www.mydomain.com; 
  replace(notFoundUrl,.html,.cfm)
  cfif fileExists(newUrl) is yes
  cflocation url=#newUrl#
  cfelse
  cflocation url=http://www.mydomain.com;
  /cfif
  /cfif
 
  Works fine if the file exists but throws an error if the file doesn't
  exist rather than
  redirecting.
 
  Also which log file would have the error in it as I can't find the error
  in any of the
  logs
 
  What am I missing?
 
  Thanks
  Rob
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357574
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-31 Thread Timothy Heald

What is and browser?

Do you mean the chrome login?
On Jan 31, 2014 3:57 AM, Mike K afpwebwo...@gmail.com wrote:


 Here's how scary, Jonah.  In an incognito window,  I go to the help file,
  Disabling automatic sign-in  and see up in the top right corner a button
 saying sign in.Good, that would mean that I'm signed out now, so I've
 achieved what I wanted.Right?WRONG!

 I click that Sign in button, and since I unchecked the remember me
 checkbox, I should get a blank login form.   Or so you'd think. Nope.
  I get the same signin as before - with my name,  my email address,   (and
 no way to change them if it's now my client trying to log in to his own
 account) and the field to enter the password.  As far as I can see
 there's no way for the client to get to his own email account now,  and no
 way for me to remove my own.

 Cheers
 Mike Kear


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357543
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-31 Thread Timothy Heald

That's what I'm thinking.

Go to the drop down on the right then settings.

The top item should be about account disconnect and synch.

Click disconnect your Google account.
On Jan 31, 2014 4:10 AM, .jonah jonah@creori.com wrote:


 Are you signed into Chrome itself? Click on the chrome menu and see if
 you can signout.

 On 1/31/14 1:08 AM, Mike K wrote:
  What I'm wondering is,  'why doesnt this happen in public libraries and
  internet cafes and other multiple-use situations?
 
  Cheers
  Mike Kear
 
 
 
  On Fri, Jan 31, 2014 at 8:06 PM, Mike K afpwebwo...@gmail.com wrote:
 
  Yes   its chrome browser and the login hint is in the title,  which
  says: G O O G  L E   - Sign In With your Google Account.
 
  Cheers
  Mike Kear
 
 
 
  On Fri, Jan 31, 2014 at 7:59 PM, Timothy Heald timothy.he...@gmail.com
 wrote:
 
  What is and browser?
 
  Do you mean the chrome login?
  On Jan 31, 2014 3:57 AM, Mike K afpwebwo...@gmail.com wrote:
 
  Here's how scary, Jonah.  In an incognito window,  I go to the help
  file,
Disabling automatic sign-in  and see up in the top right corner a
  button
  saying sign in.Good, that would mean that I'm signed out now, so
  I've
  achieved what I wanted.Right?WRONG!
 
  I click that Sign in button, and since I unchecked the remember me
  checkbox, I should get a blank login form.   Or so you'd think.
  Nope.
I get the same signin as before - with my name,  my email address,
  (and
  no way to change them if it's now my client trying to log in to his
 own
  account) and the field to enter the password.  As far as I can see
  there's no way for the client to get to his own email account now,
  and
  no
  way for me to remove my own.
 
  Cheers
  Mike Kear
 
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357547
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-30 Thread Timothy Heald

There should be a master password list on the preferences/options security
tab.

It's different by browser. Google had nothing to do with it.
On Jan 31, 2014 2:08 AM, Mike K afpwebwo...@gmail.com wrote:


 Sorry for the OT post, but I dont know how to get any help from Google.
  Only boilerplate answers to questions I havent asked.

 Does anyone know how to clear your login details from a browser if you've
 logged into gmail on someone else's computer? As far as I can see it
 'helpfully' remembers your account details so you can log in easily next
 time - but so also can anyone else  leaving only the password as the single
 protection from others getting in.

 --
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-30 Thread Timothy Heald

It's based on your browser.

I just told you what to do.
Under options our preferences for the browser is a tab that has the master
password list.  Drill down and delete it.

What browser?
On Jan 31, 2014 2:33 AM, Mike K afpwebwo...@gmail.com wrote:


 Thanks Timothy.  It's a new behaviour i havent seen before.

 I'm at a client's office.  I look into my gmail,   i sign out,  then just
 to be sure i'm signed out i go to http://mail.google.com  adn there i am -
 ready to log in just add password - it's saying it's remembered my account
 on this computer just in case i want to log in again some time in the
 future.

 It's one thing to do that on my own computers, but how do i stop it doing
 that on my client's computers?

 Cheers
 Mike Kear




 On Fri, Jan 31, 2014 at 6:12 PM, Timothy Heald timothy.he...@gmail.com
 wrote:

 
  There should be a master password list on the preferences/options
 security
  tab.
 
  It's different by browser. Google had nothing to do with it.
  On Jan 31, 2014 2:08 AM, Mike K afpwebwo...@gmail.com wrote:
 
  
   Sorry for the OT post, but I dont know how to get any help from Google.
Only boilerplate answers to questions I havent asked.
  
   Does anyone know how to clear your login details from a browser if
 you've
   logged into gmail on someone else's computer? As far as I can see
 it
   'helpfully' remembers your account details so you can log in easily
 next
   time - but so also can anyone else  leaving only the password as the
  single
   protection from others getting in.
  
   --
   Cheers
   Mike Kear
   Windsor, NSW, Australia
   Adobe Certified Advanced ColdFusion Developer
   AFP Webworks
   http://afpwebworks.com
   ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357534
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: (ot) Anyone know how to clear your google details from a browser?

2014-01-30 Thread Timothy Heald

Oh without the password?

That's auto form fill. Again in browser's options.
On Jan 31, 2014 2:33 AM, Mike K afpwebwo...@gmail.com wrote:


 Thanks Timothy.  It's a new behaviour i havent seen before.

 I'm at a client's office.  I look into my gmail,   i sign out,  then just
 to be sure i'm signed out i go to http://mail.google.com  adn there i am -
 ready to log in just add password - it's saying it's remembered my account
 on this computer just in case i want to log in again some time in the
 future.

 It's one thing to do that on my own computers, but how do i stop it doing
 that on my client's computers?

 Cheers
 Mike Kear




 On Fri, Jan 31, 2014 at 6:12 PM, Timothy Heald timothy.he...@gmail.com
 wrote:

 
  There should be a master password list on the preferences/options
 security
  tab.
 
  It's different by browser. Google had nothing to do with it.
  On Jan 31, 2014 2:08 AM, Mike K afpwebwo...@gmail.com wrote:
 
  
   Sorry for the OT post, but I dont know how to get any help from Google.
Only boilerplate answers to questions I havent asked.
  
   Does anyone know how to clear your login details from a browser if
 you've
   logged into gmail on someone else's computer? As far as I can see
 it
   'helpfully' remembers your account details so you can log in easily
 next
   time - but so also can anyone else  leaving only the password as the
  single
   protection from others getting in.
  
   --
   Cheers
   Mike Kear
   Windsor, NSW, Australia
   Adobe Certified Advanced ColdFusion Developer
   AFP Webworks
   http://afpwebworks.com
   ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357535
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: best way to timeout a page segment

2010-03-28 Thread Timothy Heald

Ajax?

Sent from my MOTOBLUR™ smartphone on ATT

-Original message-
From: Michael Dinowitz mdino...@houseoffusion.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Sun, Mar 28, 2010 12:45:16 GMT+00:00
Subject: best way to timeout a page segment


I just wanted to get people opinion on what they consider the best way
to time out a portion of a page's display without stopping the entire
page from displaying.

Thanks

--
Michael Dinowitz



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332393
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Query Question

2006-09-01 Thread Timothy Heald
Rock :)

Wish this were oracle :)

That solution for Oracle is sweet.

This should help:
http://tinyurl.com/hee59


recursion
 or
 something in order to go lower than that.
 
 I'm beating myself over the head with this one, on a Friday afternoon,
any
 pointers would be much appreciated.
 
 
 


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251809
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: MOD

2005-10-06 Thread Timothy Heald
bad iif, bad
 go to the corner :)

 On 10/6/05, Andy Matthews [EMAIL PROTECTED] wrote:

 Or you could do it in one line with iif.

 cfset color = iif(somequery.CurrentRow mod 2,66,220088)

 Also note that if you choose to use Matthew's way, which works just fine
 too, it's not necessary to pound the somequery.CurrentRow variable.

 !//--
 andy matthews
 web developer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-

 -Original Message-
 From: Matthew Blatchley [mailto:[EMAIL PROTECTED]
 Sent: Thursday, October 06, 2005 8:15 AM
 To: CF-Talk
 Subject: Re: MOD


 cfif #somequery.CurrentRow# mod 2
 cfset color = 66
 cfelse
 cfset color = 220088
 /cfif

 Matt


 - Original Message -
 From: Orlini, Robert [EMAIL PROTECTED]
 To: CF-Talk cf-talk@houseoffusion.com
 Sent: Thursday, October 06, 2005 8:01 AM
 Subject: MOD


 I know this is an old one and very easy one, but I lost the code...how do
 I
 do a dynamic alternate row of color?
 
  I remember it was with the MOD command.
 
  Thanks as always.
 
  Robert O.
  HW
 
 
  --
  No virus found in this outgoing message.
  Checked by AVG Anti-Virus.
  Version: 7.0.344 / Virus Database: 267.11.9/118 - Release Date:
 10/3/2005
 
 
 
 



 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220227
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: cfloop list

2005-10-03 Thread Timothy Heald
Shouldn't that list variable have quotes around it? 

 -Original Message-
 From: Saturday (Stuart Kidd) [mailto:[EMAIL PROTECTED] 
 Sent: Monday, October 03, 2005 5:15 PM
 To: CF-Talk
 Subject: cfloop list
 
 Hi guys,
 
 I've appended a list and on this occasion my list outputs 
 1,3,5 (for instance).
 
  cfloop list=incorrectList index=thisItem
  
 cfoutput#GetQuizQuestions.questionText[thisItem]# this 
 wrong/cfoutput
  /cfloop
 
 The problem i'm coming across an error which says:
 
 The value incorrectList cannot be converted to a number
 
 Does anyone know a way around this?
 
 Thanks,
 
 Saturday
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219978
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: Encrypting Link Information

2005-09-29 Thread Timothy Heald
 Not sure about getting rid of the name of the file, you could probably do
something in IIS or apache to get that working, but if all you need to do is
encrypt the url variables I wrote a pair udfs for this a while ago.  They
should be up on www.cflib.org as urlEncrypt() and urlDecrypt().

If you're in Fusebox 4 I am going to convert it to a plugin, email me off
list and I will send it to you when I am done.

Tim Heald
Senior Web Developer
TeraTech, Inc.
2003 Winner CFDJ awards Best Consulting Service

Email: [EMAIL PROTECTED]
Voice: 1-301-424-3903 x111
Web:   http://www.teratech.com

 -Original Message-
 From: David Reeves [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, September 29, 2005 2:36 PM
 To: CF-Talk
 Subject: Encrypting Link Information
 
 I would like to encrypt the link information that is shown 
 when browsing one of my webpages.  For instance instead of 
 showing index.cfm i would like it to show 3227k2725626 or 
 something like that.  I hope this makes sence to you.
 
 Thanks in advance!
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219678
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


Car file won't create in 6.1 on win 2003

2005-09-27 Thread Timothy Heald
Anyone ever run into this before?

When you pop up the window to build the archive the next button on the
bottom doesn't do anything.  Really weird behavior.

Any ideas?

Tim


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219346
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


cfcatch/cfdump weirdness

2005-09-08 Thread Timothy Heald
Afternoon folks!

We have run into some really strange problems with cfdump-ing a cfcatch 
structure.  It is almost as though at the end of cfdump var=#cfcatch# is 
cfsetiing enablecfoutputonly=yes.

We are running this and getting the same results on 2 different servers.  Both 
are on CFMX 6.1, one is windows 2000, one is 2003.  Here are three test cases:

Test1.cfm
!--- 

start test1.cfm

This will not render anything below the cfdump outside of a cf tag or cfoutput 
block
---

div
Stuff in the div top
/div


cftry
cfthrow type=application message=stuff happens
cfcatch type=application
cfdump var=#cfcatch#
cfdump var=#server#
/cfcatch
/cftry

div
Stuff in the div bottom
/div

!--- end test1.cfm ---

test2.cfm
!---
start test2.cfm

This test has cfsetting enablecfoutputonly set to no.  It will allow content to 
be rendered
---


div
Stuff in the div top
/div


cftry
cfthrow type=application message=stuff happens
cfcatch type=application
cfdump var=#cfcatch#
cfsetting enablecfoutputonly=no
cfdump var=#server#
/cfcatch
/cftry

div
Stuff in the div bottom
/div

!--- end test2.cfm ---

test3.cfm
!---
test3.cfm

This one has the dump of the cfcatch structure removed.  You can see the 
content at the bottom of the page is rendered
---


div
Stuff in the div top
/div


cftry
cfthrow type=application message=stuff happens
cfcatch type=application
!--- 
cfdump var=#cfcatch#
cfsetting enablecfoutputonly=no
---
cfdump var=#server#
/cfcatch
/cftry

div
Stuff in the div bottom
/div

!--- end test3.cfm ---

Tim

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:217681
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: (admin) test

2003-01-22 Thread Timothy Heald
O O O 

Me 2 Me 2

-Original Message-
From: Jeffry Houser [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 22, 2003 12:48 PM
To: CF-Talk
Subject: RE: (admin) test


  I think that Michael can do whatever he pleases.  It is his list.  ;)
  You and I on the other hand are probably out of line for our respective 
posts.

At 08:48 AM 1/22/2003 -0800, you wrote:

This is an off-topic post.  If you continue to post off-topic, we will be
force to strap you to a wooden board, remove all your fingernails in a
dreadfully painful manner, all while chanting lessons from the latest ASP
users manual at you through a loudspeaker.


| -Original Message-
| From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
| Sent: Wednesday, January 22, 2003 8:43 AM
| To: CF-Talk
| Subject: (admin) test
|
|
| People on CF-Community are getting bouncebacks from
| experthost.com and I'm trying to trackdown what address is
| throwing the problem. Please ignore this message.
|
| Michael Dinowitz
| Master of the House of Fusion
| http://www.houseoffusion.com
|



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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




Delphi Web vs. CF (5.0)

2003-01-17 Thread Timothy Heald
Hey,
A senior manager here at the State Department recently read an article from 2 
years ago that said that CF 4.5.2 wasn't a serious development tool.  The guy is now 
pushing for Delphi Web as the primary language around these parts.  I was wondering if 
anyone had any experience with Delphi Web. If so any bench mark info, and comparisons 
would be very helpful.

TIA 

Tim
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: Delphi Web vs. CF (5.0)

2003-01-17 Thread Timothy Heald
Ok,
I have more targeted directions now.

We have 3 different languages we are primarily developing right now. A lot of people 
are using Delphi for client and server applications.   Then we have web teams working 
in ASP and in CF.  Now with Delphi adding web components there is a push to have the 
existing Delphi developers learn the web components that were recently added.  The 
systems manager just came down ad spoke with us about it.  I guess that the web 
components are not intuitive to use, and he is looking for information on performance, 
development time and such, contrasting to CF and ASP.

Now I am not sure why it's a .Net vs. CF thing at all.  Delphi is a Borland product 
isn't it?  Does it (not sure about the terminology here) compile into something that 
deals with the CLR?  I know there are many different languages you can develop .Net 
apps with, is Delphi one of them?

Also I just heard that CFMX will be authorized in the next few months (we have a long 
security vetting process which an application must go through prior to approval).  Now 
if we are able to go to MX then we get many of the buzz word abilities that people 
keep praising in .Net, web services, xml integration and so forth.

Anyone know of an update ASP vs. CF white paper?  I remember seeing one a while ago 
that showed how you would need to build a $60,000 ASP/IIS server in order to get all 
the equal functionality you get from CF Ent.  Is this true?

Anyway I have a bunch of research to do.

TIA

Tim

-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 17, 2003 8:08 AM
To: CF-Talk
Subject: RE: Delphi Web vs. CF (5.0)


Delphi web - wow! Think that the first time I've heard for Delphi v's CF !!!

Well it's essentially a .NET v's CF. To be honest, with CF5- v's .NET , .NET
probably wins overall. CF MX is a different matter

WG

 -Original Message-
 From: Timothy Heald [mailto:[EMAIL PROTECTED]]
 Sent: 17 January 2003 12:42
 To: CF-Talk
 Subject: Delphi Web vs. CF (5.0)


 Hey,
   A senior manager here at the State Department recently read
 an article from 2 years ago that said that CF 4.5.2 wasn't a
 serious development tool.  The guy is now pushing for Delphi Web
 as the primary language around these parts.  I was wondering if
 anyone had any experience with Delphi Web. If so any bench mark
 info, and comparisons would be very helpful.

 TIA

 Tim
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: -OT- Javascript and lists

2003-01-17 Thread Timothy Heald
I would split the list into an array then loop through like so:

function testField(thisField){
myString = o,b/o,s,h;

myArray = myString.split(,);

for(i = 0; i  myArray.length; i++){
if(thisField.value == myArray[i]){
break
}

alert('String not in list');
}
}


That should do something like it.

Tim
-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 17, 2003 1:55 PM
To: CF-Talk
Subject: -OT- Javascript and lists


How do I look through a list of strings in Javascript and compare each to a 
variable?  I'm trying to do the following:

Set up a list like this O,B/O,S,H

And then loop through and compare each the data in a form field and if the 
form field doesn't match any of the choices, have it throw an alert.

T


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: -OT- Javascript and lists

2003-01-17 Thread Timothy Heald
That's off a bit.

function testField(thisField){
myString = o,b/o,s,h;

myArray = myString.split(,);

for(i = 0; i  myArray.length; i++){
if(thisField.value == myArray[i]){
break
}else

if(myArray.length == (i-1)){
alert('String not in list');
}

}
}

That should be closer.

-Original Message-
From: Timothy Heald 
Sent: Friday, January 17, 2003 2:04 PM
To: CF-Talk
Subject: RE: -OT- Javascript and lists


I would split the list into an array then loop through like so:

function testField(thisField){
myString = o,b/o,s,h;

myArray = myString.split(,);

for(i = 0; i  myArray.length; i++){
if(thisField.value == myArray[i]){
break
}

alert('String not in list');
}
}


That should do something like it.

Tim
-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 17, 2003 1:55 PM
To: CF-Talk
Subject: -OT- Javascript and lists


How do I look through a list of strings in Javascript and compare each to a 
variable?  I'm trying to do the following:

Set up a list like this O,B/O,S,H

And then loop through and compare each the data in a form field and if the 
form field doesn't match any of the choices, have it throw an alert.

T



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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




Large scale ColdFusion Case studies

2003-01-17 Thread Timothy Heald
Hi,
Anyone have any large scale case studies done on CF 5 and CFMX with benchmark 
information like number of requests, hardware architecture, clustering and such?

TIA

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: -OT- Javascript Question

2003-01-16 Thread Timothy Heald
say your What do you name the variable in your function definition?

function VerifyCode(thisField){
alert(thisField.name);
}

That should work.

Tim

-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 16, 2003 9:13 AM
To: CF-Talk
Subject: -OT- Javascript Question


I'm passing a field name to a javascript function like this:
onchange=VerifyCode(this);

And I want to display the name of the field in the function, like this:

var ErrorMsg=Code is wrong in+PassedFieldName;
Alert(ErrorMsg);

But when I do that, I get [object] instead of the fieldname.  Is there a 
way to do this?

T 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: Passing URL vars between pages

2003-01-16 Thread Timothy Heald
I think I would need more info.  Are you getting the info from a form on a previous 
page?

If so  you should go look at the tag embed form fields, and then use JS to submit the 
form on page load.  If not then there are other ways.  Maybe by using a session 
variable, or group of session variables.  I am not sure why it seems like a lot to 
maintain state across a single request.  I mean all you have to do is:

cfset session.email = url.email

and so on.  Also if your in MX I think you can do cfset session = duplicate(url) 
right?

Tim

-Original Message-
From: Mark Leder [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 16, 2003 4:07 PM
To: CF-Talk
Subject: Passing URL vars between pages


Hi all,

I've got a messy (lengthy)

cflocation
URL=process.cfm?emailaddress=#URLEncodedFormat(URL.emailadr)#... 

which I contemplated passing about 25 URL variables between one page and a
second. On the second page, I would use the URL vars to populate a db.  I
don't need to keep the vars beyond the second page after they've been
written. 

With this amount of vars what's a good way to accomplish:  session, WDDX
packet, etc?  I know how to write a session, but it seems like a lot for
just a one-page pass.  If I do a WDDX Serialization, I don't know how to
write it, and need an example.

Thanks in advance.

Mark



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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




OT: Adding images to flash list box component

2003-01-15 Thread Timothy Heald
Hi,
I have a requirement to add icons before the text in a flash drop down 
component.  Anyone know of a good sample piece of code or tutorial for this?

Thanks,

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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




Clustering, distributed CF and other assorted nonsense

2003-01-14 Thread Timothy Heald
Hi,
Having a discussion with someone here at work, and I am not sure where I would 
even begin to research the topics I need to look into.  To begin with our environment 
is CF 5, NT 4, Oracle 8i, IIS.  Now, we just received 3 new servers and 2 more are on 
the way.  

The suggested infrastructure is something like this:


 -     ---      ---
|multiple | --- |Firewall|--- |3 CF boxes | --- |Firewall| --- |2 Oracle 8i|
|IIS Boxes| --- ||--- |1 as K2 Server | --- || --- |  Servers  |
 -     ---      ---

Now I don't even know if this is possible or not.  Can anyone recommend a good 
source of information on 

1. Running IIS/CF in a distributed environment
2. Clustering IIS 
3. Clustering CF

Also anyone have or know of benchmark information on these subjects?  I mean I 
can see how the distributed load can reduce the processor hit, but isn't there going 
to be some extra time in a page request involved in all the calls to different 
machines?  I have suggested we do something more traditional along the lines of 
multiple boxes with IIS and CF then replicating / load balanced Oracle servers.

Another question.  At the last place I worked we had a hardware load balancing 
solution, and we just used client vars instead of sessions.  How is cluster cats on CF 
5?  Does it work well?  Is it better to just have the different CF servers use the 
same client var storage DB?

Any help would be much appreciated.

TIA

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: submit cfform without submit button

2003-01-09 Thread Timothy Heald
It's already the default in IE.  In NN you need to look at the onKey events, should be 
like onKeyDown, onKeyUp, onKeyPress, something like that.  Then when the event is 
triggered you kick of a script that does a form submit.

Tim

-Original Message-
From: Jeremy Bunton [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 09, 2003 3:07 PM
To: CF-Talk
Subject: submit cfform without submit button


Hello all,

I know this isn't strictly a CF issue but I am using CF at the momeny so
here we go.
I have a simple form with two text fields one for username and one for
password. Here is the code.


cfform action=checkin.cfm method=post enctype=multipart/form-data
cfinput class=copy required=yes style=width:140px; name=userjay
type=text size=14 maxlength=50 message=Username is Required

cfinput class=copy required=yes style=width:140px; name=passwordjay
type=password size=14 maxlength=50 message=Username is Required

input type=submit value=nbsp;Enternbsp; class=copy

/cfform


My boss wants there to NOT be a submit button showing on the screen, i.e. he
just wants people to type in their username and password and then hit enter
to login. How would I go about this. I thought of just hiding the submit in
a div but that didn't do it. It needs to work in NN4.7 up and IE 5 up. Any
help would be good.


Jeremy



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: BlueDragon J2EE on OSX - Working !!!

2003-01-08 Thread Timothy Heald
Flash Remoting?

-Original Message-
From: Vince Bonfanti [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 10:08 AM
To: CF-Talk
Subject: RE: BlueDragon J2EE on OSX - Working !!!


Well, not according to our customers who have already paid for it.  :-)

Seriously, the basic profile of our customers so far are people who are
migrating from ColdFusion to J2EE. That is, they have legacy CF 4.5 or 5.0
applications, but have made a strategic decision to do all future
development in J2EE. Therefore, the lack of support for CFMX features is a
non-issue, and the few CF5 features BlueDragon doesn't support are similarly
a non-issue.

What BlueDragon does for these customers is allow them to immediately and
cost-effectively migrate their legacy CF applications to a J2EE environment
without rewriting them in JSP, and then enhance the applications using
either JSP or CFML, whichever is more appropriate.

Having said all that, we're of course working towards full compliance with
CF5/MX. We already have C++ CFXs and CORBA working and in use by two of our
customers--look for these in a future BlueDragon release. Other features
high on our list are: COM (CF5), Verity-like search (CF5), full support for
internationalization (CFMX), and XML (CFMX). CFCs and web services will
probably take a little longer.

We also have some other things under development that we think will be very
interesting to the CFML community, things that CF5/MX can't do. Stay
tuned...

Vince Bonfanti
New Atlanta Communications, LLC
http://www.newatlanta.com/bluedragon


 -Original Message-
 From: Robertson-Ravo, Neil (RX) 
 [mailto:[EMAIL PROTECTED]] 
 Sent: Wednesday, January 08, 2003 4:39 AM
 To: CF-Talk
 Subject: RE: BlueDragon J2EE on OSX - Working !!!
 
 
 Come on Vince  until you get up to the full library 
 of CFML then its worth paying for :-)
 
 -Original Message-
 From: Vince Bonfanti [mailto:[EMAIL PROTECTED]]
 Sent: 08 January 2003 02:40
 To: CF-Talk
 Subject: RE: BlueDragon J2EE on OSX - Working !!!
 
 
 JRun 4 + CFMX = $900/CPU + $3400/CPU = $4300/CPU
 Tomcat + BlueDragon = Free + $1000/server = $1000/server
 
 Vince Bonfanti
 New Atlanta Communications, LLC http://www.newatlanta.com/bluedragon
 
  -Original Message-
  From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, January 07, 2003 1:24 PM
  To: CF-Talk
  Subject: Re: BlueDragon J2EE on OSX - Working !!!
  
  
  On Wednesday, Dec 11, 2002, at 07:11 US/Pacific, Joshua 
 Miller wrote:
   If you're interested, just use the default Apache
  installation, then
   download Tomcat from http://jakarta.apache.org, then download
   BlueDragon for J2EE from www.newatlanta.com and install 
  them in order
   (Apache, Tomcat, BlueDragon) - Now you can serve CFML 
 from your Mac.
  
  You can now download JRun 4 for Mac OS X and CFMX for J2EE 
 (JRun) for
  Mac OS X. That let's you serve CFMX-compatible CFML from your Mac.
  
  Sean A Corfield -- http://www.corfield.org/blog/
  
 
 
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: BlueDragon J2EE on OSX - Working !!!

2003-01-08 Thread Timothy Heald
Having said all that, we're of course working towards full compliance with
CF5/MX.

Sorry should have been more specific.

-Original Message-
From: Todd Rafferty [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 10:16 AM
To: CF-Talk
Subject: RE: BlueDragon J2EE on OSX - Working !!!


He said  things that CF5/MX can't do   -- MX can do flash remoting. ;)

~Todd

At 10:11 AM 1/8/2003 -0500, you wrote:
Flash Remoting?

-Original Message-
From: Vince Bonfanti [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 10:08 AM
To: CF-Talk
Subject: RE: BlueDragon J2EE on OSX - Working !!!


Well, not according to our customers who have already paid for it.  :-)

Seriously, the basic profile of our customers so far are people who are
migrating from ColdFusion to J2EE. That is, they have legacy CF 4.5 or 5.0
applications, but have made a strategic decision to do all future
development in J2EE. Therefore, the lack of support for CFMX features is a
non-issue, and the few CF5 features BlueDragon doesn't support are similarly
a non-issue.

What BlueDragon does for these customers is allow them to immediately and
cost-effectively migrate their legacy CF applications to a J2EE environment
without rewriting them in JSP, and then enhance the applications using
either JSP or CFML, whichever is more appropriate.

Having said all that, we're of course working towards full compliance with
CF5/MX. We already have C++ CFXs and CORBA working and in use by two of our
customers--look for these in a future BlueDragon release. Other features
high on our list are: COM (CF5), Verity-like search (CF5), full support for
internationalization (CFMX), and XML (CFMX). CFCs and web services will
probably take a little longer.

We also have some other things under development that we think will be very
interesting to the CFML community, things that CF5/MX can't do. Stay
tuned...

Vince Bonfanti
New Atlanta Communications, LLC
http://www.newatlanta.com/bluedragon



--
Todd Rafferty ([EMAIL PROTECTED]) - http://www.web-rat.com/
Team Macromedia Volunteer for ColdFusion
http://www.macromedia.com/support/forums/team_macromedia/
http://www.devmx.com/

--


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: custom tag: pair of list boxes with transferring

2003-01-08 Thread Timothy Heald
look for two related selects.

-Original Message-
From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 12:45 PM
To: CF-Talk
Subject: custom tag: pair of list boxes with transferring


Hi.  I think there is a custom tag out there that allows me to do what I
want, but I don't know what words to use to search for it.  Here is what it
should do: create a pair of listboxes, with a pair of buttons in between.
The idea is to transfer items from one listbox to the other.  This typically
is used to add items from the left list to the right list or remove
items from the right list (thereby sending them back to the left list).
 
Anyone know the name of this tag, assuming it exists?
 
Thanks,
Matthieu
 
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: Stopping an endless loop

2003-01-08 Thread Timothy Heald
Delete all the files in /cfusion/nail/spool that you don't want to go out.

Tim

-Original Message-
From: Luis Lebron [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 1:16 PM
To: CF-Talk
Subject: RE: Stopping an endless loop


I tried stopping the server, but everytime I restart it the mail starts
again.

-Original Message-
From: Scott Brady [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 12:18 PM
To: CF-Talk
Subject: Re: Stopping an endless loop


1) If you have access to the server itself, stop the CF server entirely.
That should take care of it.

2) If it's happening on a browser page, change the code so there isn't a
loop, save it, and refresh the page.

I'm sure there are other options that might be cleaner, but those SHOULD
take care of it quick-and-dirty-like.

Scott

Scott Brady
http://www.scottbrady.net/
 
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: easier in cf then asp, but i need it in asp

2003-01-08 Thread Timothy Heald
It should be just as easy in asp.  Open your connection to the db, then run the two 
queries.  I don't understand why this would be any more difficult in asp than in CF.  
I am not an ASP person, so this took a bit of playing to get just right, but it should 
be totally doable.

If your checking against a db it should be something like this:

%
Set MyConn = Server.CreateObject(ADODB.Connection)
MyConn.Open FILEDSN=C:\Program Files\Common Files\ODBC\Data Sources\test.dsn

SQL_query = select * from users where cUserName =   'tim'   and cPassword =   
'test'
Set RS = MyConn.Execute(SQL_query)

dim rsc 
rsc = 0

WHILE NOT RS.EOF
rsc = rsc + 1

if rsc  0 then
response.write(rs(cUserName))
sql2 = insert into logs(numbers) values(2)
Set rs2 = MyConn.Execute(sql2)

end if
RS.MoveNext
wend

%

Tim


-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 08, 2003 2:44 PM
To: CF-Talk
Subject: Re: easier in cf then asp, but i need it in asp


in cf it is a lot easier
unfortunately, I need it in asp, which doesn't work so well

but thanks for your effort:)

dave
- Original Message -
From: John Paul Ashenfelter [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, January 08, 2003 2:33 PM
Subject: Re: easier in cf then asp, but i need it in asp


 Maybe I'm misunderstanding, but wouldn't your login simply be a SELECT
from
 the db to get the validation credentials? Or is this using NT
 Authentication? If it's a simple db lookup, you just put two queries in
the
 login page -- the login itself and the insert. You can make it even easier
 by having the login check call a stored proc that does the validation and
 the insert. (sorry -- just saw Access. No stored procs).

 Something like

 CFQUERY name=validateLogin
 SELECT user.*
 FROM user
 WHERE user.username = '#form.username#' AND
user.password='#form.password#'
 /CFQUERY

 CFIF validateLogin.recordcount EQ 1
 CFQUERY
 INSERT INTO tblLogins(username,logTime)
VALUES('#form.username#',NOW())
 /CFQUERY
 rest of page
 CFELSE
 Bad login/etc

 You can do this much slicker, but this gets the point across.

 So just two queries on the login page -- that's it. Or is there something
 more complicated going on?

 Regards,

 John Paul Ashenfelter
 CTO/Transitionpoint
 [EMAIL PROTECTED]
 - Original Message -
 From: Dave Lyons [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, January 08, 2003 1:59 PM
 Subject: easier in cf then asp, but i need it in asp


  Sorry for posting this here but no one seems to know on the asp boards.
  I pretty much have this figured out in cf but not as easy in asp.
  I have a clients site that is in asp and they need to track when a
person
 logs in
  for example, they need to be able to pull up employee A and see their
 login history, As they are supposed to be logging in at certain intervals.
  They dont want any additional pages or buttons to push, so when an
 employee logs in it also inserts a new entry into the db table called
 tblTrackLogins
  I dont believe you can do a login and insert at the same time in ASP.
The
 only way I have really been able to do this is to post the login form to
 another page and then have them hit a submit button to insert it but they
 dont want that.
  The only entry I really need to pull is their username and then just
 have the db insert the Now() when created.
  BTW, ASP  Access 2000
 
  thanks!
 
  Dave
 
 
 
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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: Pre-populating a file form field

2003-01-02 Thread Timothy Heald
It has a value, but you can't set the value, only read it.  So you can write a script 
to say check file types, but not one to automatically fill in the information (path) 
about a specific file.  It's a security feature.

Tim

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 11:21 AM
To: CF-Talk
Subject: RE: Pre-populating a file form field


but according to this
(http://www.blooberry.com/indexdot/html/tagpages/i/inputfile.htm) it does
have a value attribute, and also a readonly attribute.

will

-Original Message-
From: Boardwine, David L. [mailto:[EMAIL PROTECTED]]
Sent: 02 January 2003 16:07
To: CF-Talk
Subject: RE: Pre-populating a file form field


The problem is the INPUT TYPE=File has no value attribute. Therefore there
is no way to re-populate it.

DavidB

-Original Message-
From: Gyrus [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 10:58 AM
To: CF-Talk
Subject: Re: Pre-populating a file form field


- Original Message -
 One of the fields is a file field however.  When I try to pre-populate
 that field with the original user choice, it fails.  I'm sure this is
 because of the special nature of the file field, and I've told my client
 that I do not believe it can be done.  Does anyone know of a trick to
 re-fill the file field with the users original choice?
---

I've never had a client complain about this, ergo I've never thought about
it before ;-)  But yeah, I've noticed it in passing, and thinking about it
now, the only thing that comes to mind is:

- onsubmit, copy the file field's value into a hidden field with JS
- Use this hidden field to re-populate the file field

Haven't tried it, but can't see why it wouldn't work.

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://norlonto.net
PGP key available




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: New User

2002-12-26 Thread Timothy Heald
Try getting rid of the CFPARAM and scoping the #title# variable to form.title.  Also 
if I were you I would output #form.title# above the query to make sure it's passing 
the correct value.

Tim

-Original Message-
From: Mike Miessen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 26, 2002 12:04 PM
To: CF-Talk
Subject: New User


I have been trying to do a search of a database.  It is a very small
testing database and I wrote a search entry form with dream weaver with
one field.  This field should search on the title field of the database
and return results that contain the entry.  I am a raw newbie here and
contemplating beating my head against a wall on this.  Well my query
does not seem to work.  I get all the records returned every time not
just the ones that contain the search term.
 
Here I was thinking this would be easy.  Boy was I wrong!  Here is my
code   Can anyone tell me what I'm doing wrong?  The path to the search
form is
 
http://bluegrasspro.net/bluegrasspro/datasources/eventquery.cfm
 
 
 
cfquery name=rsTitle datasource=bluegrasspro username=LOL
password=YeaRight debug=yes
cfparam name=TITLE default=null
SELECT * FROM bluegrasscalendar WHERE Title LIKE '%#TITLE#%'
/cfquery
 
html
head
titleQuery Results/title
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1
/head
 
body
cfoutput query=rsTitle 
#rsTitle.Title#br
/cfoutput 
 
/body
/html


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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.



RE: New User

2002-12-26 Thread Timothy Heald
You will need to put back in the leading % in case the word they are searching for is 
in the middle of a title.

Example

Search string = Time

Will return = Time to go

Will not return = It's Time to go.

Also someone else mentioned using upper(), on the column and the search string your 
looking for to get by the case sensitivity of the db, I would recommend you doing it 
as well.

Tim

-Original Message-
From: Mike Miessen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 26, 2002 1:15 PM
To: CF-Talk
Subject: RE: New User


I took out the leading % and I dropped the ?TITLE from the action on the
process button and my query now works.  Thanks to you guys :)

-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, December 26, 2002 12:07 PM
To: CF-Talk
Subject: Re: New User

Take out the leading % and your query will work. With both % in there
this
returns everything because to SQL, your string is like everything in the
database.

HTH,
Clint

- Original Message -
From: Mike Miessen [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, December 26, 2002 11:03 AM
Subject: New User


 I have been trying to do a search of a database.  It is a very small
 testing database and I wrote a search entry form with dream weaver
with
 one field.  This field should search on the title field of the
database
 and return results that contain the entry.  I am a raw newbie here and
 contemplating beating my head against a wall on this.  Well my query
 does not seem to work.  I get all the records returned every time not
 just the ones that contain the search term.

 Here I was thinking this would be easy.  Boy was I wrong!  Here is my
 code   Can anyone tell me what I'm doing wrong?  The path to the
search
 form is

 http://bluegrasspro.net/bluegrasspro/datasources/eventquery.cfm



 cfquery name=rsTitle datasource=bluegrasspro username=LOL
 password=YeaRight debug=yes
 cfparam name=TITLE default=null
 SELECT * FROM bluegrasscalendar WHERE Title LIKE '%#TITLE#%'
 /cfquery

 html
 head
 titleQuery Results/title
 meta http-equiv=Content-Type content=text/html;
charset=iso-8859-1
 /head

 body
 cfoutput query=rsTitle
 #rsTitle.Title#br
 /cfoutput

 /body
 /html

 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: Cold Fusion forum (OPEN SOURCE?)

2002-12-24 Thread Timothy Heald
There are several open source CF projects underway at source forge. There is one 
called fb open forums, umm another CMS called comet I believe, as well as a url 
variable encryption one I worked on a while back.

Kick it off bro :) Get something started, Sourceforge has a good management system for 
file and bug tracking and all.

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 24, 2002 11:47 AM
To: CF-Talk
Subject: RE: Cold Fusion forum (OPEN SOURCE?)


Chris,

I've dealt with UBB, fuseTalk, ezBoard, and the old Allaire Forums. If I
can say anything on the subject, it's that NO ONE has gotten it right
(especially on the database end).

Mike D said a year ago he was going to re-write the old Allaire Forums
and eventually open source it. Which, stop me if I'm wrong, is what is
being used on houseoffusion.com? But I think I missed the part where he
open sourced it. Last I checked in June at cfFun, he said he was still
working on it.

I for one would really like to work an open-source bbs project. I think
there is a pretty high demand for a sturdy open source board, which can
be customized at the will of the programmer. I've thrown around the
open-source idea with a bunch of people but found our selves intimidated
by the legal requirements.

You know we have a really great community here, but I can't tell you of
ANY cold fusion open-source projects. Is open source cold fusion a pipe
dream? Would anyone else be interested in contributing?

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Chris Montgomery [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 10:58 PM
To: CF-Talk
Subject: Re: Cold Fusion forum

Howdy Michael,

Thursday, December 19, 2002, 7:54:13 PM, Michael T. Tangorre wrote:

 I am attempting to to try some more advanced things with an idea I
 have. I am going to be building an online forum to tinker with.. can
 anyone point me to some database examples? The code side is what I am
 going to be playing with but need a good architecture to use.. anyone
 know of one I can download?

I didn't see a reply to this yet, so I'll offer one to consider:
http://sourceforge.net/projects/fbopenforums/

It uses Fusebox, but you might be able to get something useful out of
it.

If you are wanting to explore how the database would be structured for a
forums app, you might want to research hierarchical database design,
parent-child relationships, or using recursion with your database.

This page is an example of doing recursive joins for a forum:
http://www.4guysfromrolla.com/webtech/sqlguru/q120899-1.shtml
with a follow-up here:
http://www.4guysfromrolla.com/webtech/sqlguru/q121799-1.shtml

Another post about threaded discussion forums database design:
http://www.sqlteam.com/item.asp?ItemID=1353
with a follow-up here:
http://www.sqlteam.com/item.asp?ItemID=1602

Some good SQL sites to check out:
http://www.dbmsmag.com/index.shtml
http://www.codebits.com/ntm/
http://www.onlamp.com/pub/a/onlamp/2001/07/12/aboutSQL.html
http://www.sqlteam.com/Default.asp
http://www.4guysfromrolla.com/
http://www.intelligententerprise.com/info_centers/database/
http://www.databasejournal.com/
http://www.sqlmag.com/

Hope that helps you somewhat.

Happy Holidays!

-- 
Chris Montgomerymonty @ airtightweb.com 
Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-3249/888-745-7603



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Timothy Heald
To be clear Sean, are you saying there is no truth to this rumor?

Tim

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:06 PM
To: CF-Talk
Subject: Re: MS to buy Macromedia - lets hope not...


On Monday, Dec 23, 2002, at 10:08 US/Pacific, [EMAIL PROTECTED] 
wrote:
 Man, I hope there's no truth to this:
 http://theregister.co.uk/content/4/28667.html

That rumor surfaces every couple of years and has been doing so for 
nearly all of Macromedia's history... Here's another equally long-lived 
piece of humor:

#2. MICROSOFT HAS NO PLANS TO ACQUIRE CATHOLIC CHURCH
The latest Internet hoax has Microsoft acquiring the Roman Catholic 
Church,
including exclusive electronic rights to the Bible. The story, written
under an Associated Press byline, says the agreement provides for Pope 
John
Paul II becoming the senior vice president of the company's new 
Religious
Software Division, and two Microsoft senior vice presidents being 
invested
in the College of Cardinals. The fake story included a promise from Bill
Gates to make the sacraments available online for the first time.
Officials at Microsoft and AP said they didn't know where the story
originated. (Tampa Tribune 12/17/94 BF10)

Happy Holidays! :)

Conform! Consume! Obey!
-- Mr Snaffleburger : http://www.matazone.co.uk/theotherside.html


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



Freeware CF IDE for Linux

2002-12-20 Thread Timothy Heald
Any suggestions?

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: Page Breaks for Printing

2002-12-19 Thread Timothy Heald
CSS.  Think it may be IE only.  Look at these properties:

page-break-after
page-break-before
page-break-inside

You can then set up divs or p blocks that will throw a page break right where you 
want it.  We did this with some success for printing out course certificates and stuff 
before.
Tim

-Original Message-
From: Chad [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 19, 2002 9:03 AM
To: CF-Talk
Subject: Page Breaks for Printing


Has anyone figured out how to make page breaks for printing?

I.E. have the user click one button to print all of the new orders.
Each order on a separate piece of 8.5x11 paper.

Javascript?  Generate a PDF?

Thanks!


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



Requirements gathering for the full lifecycle development process

2002-12-19 Thread Timothy Heald
Hi,
Wondering if anyone has any good resources for following the full lifecycle 
development process? Documents, forms things of that nature.  I usually either fly by 
the seat of my pants, or follow FLiP procedures, but now that I am at State I am 
required to provide far more documentation for all applications.

I am looking for things like functional requirements, requirements, gnatt 
information.  Also opinions on processes and methodologies other than Fusebox (not 
allowed to do the FLiP thing, even though it's being written in FB3).  Any help would 
be appreciated, as would opinions :)

tia

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Compare Two Lists - Keep What Is Similar

2002-12-16 Thread Timothy Heald
cfset list1 = 1,2,3,4,5

cfset list2 = 1,3,5,7,9

cfset container = 

cfloop list=#list1# index=i

cfif listContains(list2,i)
cfset container = listAppend(container,i)
/cfif

/cfloop

Might not be exact but it should be close. Will probably be processor intensive on 
large lists.

Tim


-Original Message-
From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 16, 2002 1:17 PM
To: CF-Talk
Subject: Compare Two Lists - Keep What Is Similar


Hi everyone. I am looking for a way to compare 2 different lists of
information, and after comparing them keep which records are exactly the
same. Does anyone have any suggestions on how to do this? This list have the
potential of being pretty big (500 records each) and I was hoping to have
this process done fairly quick (so the user doesn't have a long wait). Any
help you can provide with this problem is greatly appreciated. Thanks very
much.
Keith


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



RE: Determining if cf is alive and communicative

2002-12-11 Thread Timothy Heald
We had something running like this at my old job.  Basically we wrote a cfm page that 
did a query then output just the word ok.

Big IP would look for ok, if it wasn't there then it would fail over that server.

Tim

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 10:58 AM
To: CF-Talk
Subject: Determining if cf is alive and communicative


We need to write an agent in the *nix world to ping the cfmx services and
determine not only if they are running but that they are able to communicate
with an Oracle backend.  Does anyone have suggestions on how to approach
this problem?

Thanks,

Kevin Bridges  

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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.



RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute

2002-12-10 Thread Timothy Heald
You should look at soEditor also.

http://www.siteobjects.com/pages/order.cfm?object=65method=viewCart

Tim

-Original Message-
From: Joshua Miller [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 10, 2002 11:00 AM
To: CF-Talk
Subject: MM Rich Text Editor - WAS: RE: Macromedia Contribute


I would think that given those abilities that integrating it into an
intranet security context would provide functionality for permissions.
Personally, I'd rather have something that lets me control file/edit
permissions and simply sticks to editing capabilities. I want a
super-form-control more than a content manager - I'll handle the content
management as it applies to my specific application.

Is there a version of the DRK2 Rich Text Editor online anywhere that I
could try before I buy? I'd like to be able to make an informed decision
before jumping into something.

Although from the looks of ActivEdit it's going to be hard to beat.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Kevin Graeme [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 10:32 AM
To: CF-Talk
Subject: RE: Macromedia Contribute


There are built-in controls to limit users to a particular directory;
disallow editing of scripts/includes/forms/ or even anything but text;
allow or disallow the ability to assign css styles, and disable the
font tag and even inline css styles. You can limit users to only edit
pages, create pages based on templates, , create pages by copying any
existing page, or make anything from scratch. And you can define a file
size limit to how large of a graphic can be used on a page (in KB, not
dimensions.)

That's pretty much what you can control. You can create groups of users
with different permissions. Other than that, it's not really extensible
for permissions from what I can see.

-Kevin

 -Original Message-
 From: Kay Smoljak [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 10, 2002 8:30 AM
 To: CF-Talk
 Subject: Re: Macromedia Contribute


 Samuel R. Neff wrote:
  If that's what you want you can take a look at
  MM's DRK2 which has a Rich Text Editor component for Flash.  It
 can easily
  be wrapped into a stand-alone widget for embedding in HTML and
 an also be
  extended.

 Does anyone have this, who would like to comment on how extendable it 
 is? For example. if I wanted to limit the html editing controls my 
 users had (no fonts or colours, for example, or only stylesheet 
 classes) could I do this? Or say I wanted to change the colour of the 
 component to match my app...

 Thanks,
 Kay.


 --
 Kay Smoljak
 
 http://kay.smoljak.com
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: sessionquery.recordcount

2002-11-27 Thread Timothy Heald
The only time I have gotten a record count higher than I thought it should be was when 
I was using aggregate functions. So I would get 1, even if there was really nothing 
returned (because the result was a 0).

Aside from that, what are you doing that requires this? Maybe we could figure out a 
better way of doing it?

Tim

-Original Message-
From: Simon Stanlake [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 27, 2002 1:04 PM
To: CF-Talk
Subject: sessionquery.recordcount


hi,
we have the following code...

cfquery name=session.myResults datasource=#request.ds#
select  * 
fromtheTable
/cfquery

!--- create an array of 1's to use in queryAddColumn ---
cfset defaultValueArray = ArrayNew(1)
cfloop index=i from=1 to=#session.myResults.recordCount#
cfset defaultValueArray[i] = 1
/cfloop

occasionally, we exit this piece of code and the length of the array is
different from the length of the query.  ie: 

arraylen(defaultValueArray) != session.myResults.recordCount.

It seems to me that this should never happen.

I've changed the name of the table and the session variable, but otherwise
the code is a cut-and-paste.  I realize there are a bunch of different ways
to do this, but I want to know what causes this behaviour.  Has anyone else
seen something similar?  recordcount not always returning the right value?
cfloop bailing out early? funniness when storing queries in the session
scope?

thanks,
simon

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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.



OT: Freeware mail servers

2002-11-26 Thread Timothy Heald
Howdy.

I am running a server at my house (adsl, speak easy, sweet) I have all the server 
software I want except for a mail server.  I am looking for something, free, runs on 
Windows 2000 AS, and has a GUI for admin (don't want to learn a whole bunch of command 
line junk, yeah I am lazy, I know).  Also a decent freeware FTP server would be nice,  
I am using IIS FTP and it is junk.

Thanks,

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Freeware mail servers

2002-11-26 Thread Timothy Heald
Thanks for all the advice people.  I will look into them when I get home tonight.

I really want to run a Linux box eventually, but until I can run my licenses for CF 
and SQL Server on them I will have to stick with M$ products :)

Thanks
Tim

-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 26, 2002 12:45 PM
To: CF-Talk
Subject: Re: Freeware mail servers


Tim
I have not found a freeware mail server for the Windows platform, but I have
both a Windows server and a Linux server, and on the Linux box, both of the very
popular Sendmail and Postfix are open source (free)  and both are very easily
configurable for anti-spam and anti-virus scanning.  There are even several very
good open source anti-virus programs for the Linux box as well.

On a Windows Box, I run Imail 7.0 which is getting more expensive with each
upgrade, but is a lot easier to administer than, say Exchange.

I purchased RedHat 7.3 from Best Buy for $49.00.  While the software is open
source, the purchase gives me a year of free updates, and that is really
convenient.  The Sendmail and PostFix mail servers (as well as apache and a
couple of database products) are installed by default.
I use Webmin for remote administration.

For a windows FTP server I use SERV-U


=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: Timothy Heald [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, November 26, 2002 11:22 AM
Subject: OT: Freeware mail servers


| Howdy.
|
| I am running a server at my house (adsl, speak easy, sweet) I have all the
server software I want except for a mail server.  I am looking for something,
free, runs on Windows 2000 AS, and has a GUI for admin (don't want to learn a
whole bunch of command line junk, yeah I am lazy, I know).  Also a decent
freeware FTP server would be nice,  I am using IIS FTP and it is junk.
|
| Thanks,
|
| Timothy Heald
| Assistant Webmaster
| Overseas Security Advisory Council
| U.S. Department of State
| 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: Freeware mail servers

2002-11-26 Thread Timothy Heald
Yeah,

But I would need another box :)

-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 26, 2002 12:58 PM
To: CF-Talk
Subject: Re: Freeware mail servers


I host a very large web site on my RedHat box, and it does an ODBC connection to
SQL2000 on the Windows machine.  Works like a charm, and very stable.  It also
runs CF 5.0 just fine.

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: Timothy Heald [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, November 26, 2002 11:48 AM
Subject: RE: Freeware mail servers


| Thanks for all the advice people.  I will look into them when I get home
tonight.
|
| I really want to run a Linux box eventually, but until I can run my licenses
for CF and SQL Server on them I will have to stick with M$ products :)
|
| Thanks
| Tim
|
| -Original Message-
| From: samcfug [mailto:[EMAIL PROTECTED]]
| Sent: Tuesday, November 26, 2002 12:45 PM
| To: CF-Talk
| Subject: Re: Freeware mail servers
|
|
| Tim
| I have not found a freeware mail server for the Windows platform, but I have
| both a Windows server and a Linux server, and on the Linux box, both of the
very
| popular Sendmail and Postfix are open source (free)  and both are very easily
| configurable for anti-spam and anti-virus scanning.  There are even several
very
| good open source anti-virus programs for the Linux box as well.
|
| On a Windows Box, I run Imail 7.0 which is getting more expensive with each
| upgrade, but is a lot easier to administer than, say Exchange.
|
| I purchased RedHat 7.3 from Best Buy for $49.00.  While the software is open
| source, the purchase gives me a year of free updates, and that is really
| convenient.  The Sendmail and PostFix mail servers (as well as apache and a
| couple of database products) are installed by default.
| I use Webmin for remote administration.
|
| For a windows FTP server I use SERV-U
|
|
| =
| Douglas White
| group Manager
| mailto:[EMAIL PROTECTED]
| http://www.samcfug.org
| =
| - Original Message -
| From: Timothy Heald [EMAIL PROTECTED]
| To: CF-Talk [EMAIL PROTECTED]
| Sent: Tuesday, November 26, 2002 11:22 AM
| Subject: OT: Freeware mail servers
|
|
| | Howdy.
| |
| | I am running a server at my house (adsl, speak easy, sweet) I have all the
| server software I want except for a mail server.  I am looking for something,
| free, runs on Windows 2000 AS, and has a GUI for admin (don't want to learn a
| whole bunch of command line junk, yeah I am lazy, I know).  Also a decent
| freeware FTP server would be nice,  I am using IIS FTP and it is junk.
| |
| | Thanks,
| |
| | Timothy Heald
| | Assistant Webmaster
| | Overseas Security Advisory Council
| | U.S. Department of State
| |
|
| 

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



RE: cfscript equivalent for cfloop?

2002-11-21 Thread Timothy Heald
for(i = 1; i lte myQuery.recordCount; i = i + 1){
if(myQuery.columnName[i] eq 1){
myVar = 1;
}
}

Like that?

Tim

-Original Message-
From: Steven Durette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 21, 2002 3:24 PM
To: CF-Talk
Subject: cfscript equivalent for cfloop?


Is there an equivalent of  to be used with cfscript?

I have code similar to this:  

lt;cfloop query=#34;myQuery#34;gt;
lt;cfif myQuery.myColName IS 1gt;
lt;cfset myVar = 1gt;
lt;/cfifgt;
lt;/cfloopgt;

This loop is surrounded on both sides by cfscript
blocks and I would like to make it all one cfscript
block.

Thanks,
Steve

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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.



OT: ERWin tutorials and info.

2002-11-12 Thread Timothy Heald
Hey,
Anyone have any links to ERWin links or tutorials?  New job and new tools :)

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Verity Head Aches EMERGENCY

2002-11-06 Thread Timothy Heald
Hey,
We just found out that all Verity on our production server is hosed up.  We 
get the VdkSessionNew error no matter what we do.

Nothing we do seems to be helping.  Can't repair, delete, purge, optimize or 
create new ones.

Anyone know anything about this?

Our setup:

NT 4 SP 6
CF 5 on IIS 4
Oracle 8.17i

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Tuesday, November 05, 2002 4:29 PM
To: CF-Talk
Subject: RE: Verity Head Aches


are you using k2? if so did you update your k2.ini?

did you try restarting the services?

try dumping it out to see if the contents are good

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Tuesday, November 05, 2002 2:52 PM
To: CF-Talk
Subject: Verity Head Aches


Hi.

I have these verity collections that have 250,000 and 150,000 row
queries indexed in each.  We just moved them from our personal Win 2K dev
box, to our production NT box.  Now the search I built for them keeps
throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much
appreciated.

Tim


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: Verity Head Aches EMERGENCY

2002-11-06 Thread Timothy Heald
No K2.

Rebooted the machine yet again, it finally let me run a repair on the collections 
involved.

Really strange.

Tim

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Wednesday, November 06, 2002 10:03 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Are you using k2?

If so is the port number correct? In the admin and in the ini file.  

sean


-Original Message-
From: Gaulin, Mark [mailto:mgaulin;globalspec.com]
Sent: Wednesday, November 06, 2002 9:17 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Did you try restarting CF? (and/or the Verity K2 service, if you are using
that?)
Mark

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Wednesday, November 06, 2002 8:07 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Hey,
We just found out that all Verity on our production server is hosed
up.  We get the VdkSessionNew error no matter what we do.

Nothing we do seems to be helping.  Can't repair, delete, purge,
optimize or create new ones.

Anyone know anything about this?

Our setup:

NT 4 SP 6
CF 5 on IIS 4
Oracle 8.17i

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Tuesday, November 05, 2002 4:29 PM
To: CF-Talk
Subject: RE: Verity Head Aches


are you using k2? if so did you update your k2.ini?

did you try restarting the services?

try dumping it out to see if the contents are good

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Tuesday, November 05, 2002 2:52 PM
To: CF-Talk
Subject: Verity Head Aches


Hi.

I have these verity collections that have 250,000 and 150,000 row
queries indexed in each.  We just moved them from our personal Win 2K dev
box, to our production NT box.  Now the search I built for them keeps
throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much
appreciated.

Tim





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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.



Really good international email validation script?

2002-11-06 Thread Timothy Heald
Hi,
I need a script that will do validation on like every possible email address.  
That means all the different international ones as well.  Does anyone know of one?

TIA

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



Verity Head Aches

2002-11-05 Thread Timothy Heald
Hi.

I have these verity collections that have 250,000 and 150,000 row queries 
indexed in each.  We just moved them from our personal Win 2K dev box, to our 
production NT box.  Now the search I built for them keeps throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much appreciated.

Tim
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



OT: Autonomy/CF/Clearance

2002-11-04 Thread Timothy Heald
Hi,
Do you know something about Autonomy, ColdFusion and are you a current holder 
of a Secret or above clearance.  If so please mail me off list.  

Thanks,
Tim
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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



RE: Replace in string

2002-11-04 Thread Timothy Heald
Try valueList(dirList.name)

Tim

-Original Message-
From: FlashGuy [mailto:flashmx;rogers.com]
Sent: Monday, November 04, 2002 11:24 AM
To: CF-Talk
Subject: Replace in string


Hi,

I need to output the results as a comma-delimited string. An example of the output 
from the below code would be like:

dir1 dir2 dir3 dir4 dir5

I would like to have:

dir1,dir2,dir3,dir4,dir5

Whats wrong with my below syntax?


cfdirectory action=LIST directory=d:\books name=DirList sort=name ASC

cfoutput query=DirList
  cfif left(DirList.name,1) neq .
#ListGetAt(Replace(DirList.name, ,,,ALL),1,',')#
  /cfif
/cfoutput




---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




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



RE: basic question - testing for no results from query

2002-10-31 Thread Timothy Heald
cfif queryname.recordcount
showstuff
/cfif

Now if your using aggregate functions (like max() min() avg()) you need to check for a 
len in the field your looking for, because the record count will be 1 even if it's 
just for an empty field, so I will do:

cfif len(queryname.columnname)
show stuff
/cfif

Tim

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Thursday, October 31, 2002 8:27 AM
To: CF-Talk
Subject: basic question - testing for no reuslts from query


I'm ashamed to say I've been banging my head on this for an hour. what
is a simple way to code a statement that displays a message when a query
produces no results.. like:
 
 CFIF.blah, blah
NO RESULTS
cfelse
#RESULTS#
CFIF
I'm looking for what the blah, blah would be??
 
Tim Laureska
 




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Fusetalk 3.1 Woes

2002-10-31 Thread Timothy Heald
Hi,
I have posted on the Fusetalk forums, and haven't gotten a response, I was 
wondering if someone with Fusetalk 3.12, CF 5, Win 2K w/ Oracle could contact me off 
list.

I can't post (odbc error) and when I click on a topic it says no messages for 
this topic, then deletes the topic.

TIA.

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Shorter urls?

2002-10-29 Thread Timothy Heald
Yeah,
That UDF makes longer URLs.   That reminds me I need to send Ray an update for 
that one.

Tim

-Original Message-
From: Ian Lurie [mailto:ian;portentinteractive.com]
Sent: Tuesday, October 29, 2002 2:02 PM
To: CF-Talk
Subject: Re: Shorter urls?


You're right - I just tested it.



On 10/29/02 10:52 AM, Matt Liotta [EMAIL PROTECTED] wrote:

 I don't believe encrypting the URL as this UDF does is the way to go. If
 I read it correctly, the order of the URL variables in the query string
 will affect the encrypted value. The code I posted in response to the
 original question does not suffer from this problem.
 
 Matt Liotta
 President  CEO
 Montara Software, Inc.
 http://www.montarasoftware.com/
 888-408-0900 x901
 
 -Original Message-
 From: Ian Lurie [mailto:ian;portentinteractive.com]
 Sent: Tuesday, October 29, 2002 1:45 PM
 To: CF-Talk
 Subject: Re: Shorter urls?
 
 Thanks - I found the UDF I was looking for:
 
 
 http://www.cflib.org/udf.cfm?ID=212enable=1
 
 
 On 10/29/02 10:39 AM, Benjamin S. Rogers [EMAIL PROTECTED] wrote:
 
 If you put a .cfm on the end, you can handle the request in the
 Application.cfm page. If you are using IIS, you have to tell it not
 to
 check to make sure the page exists. This is a setting specific to
 the
 application mapping.
 
 Or, you can use an ISAPI extension (IIS) or mod_rewrite (Apache) to
 rewrite the URL before it even gets to ColdFusion. There's a free
 one
 for IIS called ISAPI_Rewrite (http://www.isapirewrite.com).
 
 Benjamin S. Rogers
 http://www.c4.net/
 v.508.240.0051
 f.508.240.0057
 
 -Original Message-
 From: Ian Lurie [mailto:ian;portentinteractive.com]
 Sent: Tuesday, October 29, 2002 1:27 PM
 To: CF-Talk
 Subject: Shorter urls?
 
 
 Hi all,
 
 I've searched the devcenter, google, etc. but can't seem to find any
 discussion of how to generate shorter URL strings. I want to take:
 
 http://www.site.com?action=blahbrand=1name=blahblah;
 
 And convert it to
 
 http://www.site.com/asdfwer234123
 
 I've seen it done but just can't remember where. Can someone send me
 a
 url?
 
 Thanks in advance,
 
 Ian
 
 --
 Portent Interactive
 Effective web sites through Conversation Marketing ?
 http://www.portentinteractive.com
 
 
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
Hey,
I know many people are on their way to Orlando, so I don't really expect to 
get an answer to this :)

I have 2 Verity indexes I am searching.  They both contain a filed 
date_created, and I have added this field as custom2 to the search.  I need to be able 
to sort by date off of that field. Now it is returning the field as a string right now 
unfortunately.  IS there any easy (or even not so easy) way of doing this?  I haven't 
been able to come up with anything yet, I mean I could write a sort that would have to 
basically do 3 bubble sorts on all of the 300,000 or so records I am dealing with.  
The date is being returned in the format dd-mmm-yy or 25-OCT-02.

Any help would be much appreciated.  Have fun  DevCon!!

Tim
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



RE: Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
Yeah I think it's going to be good old bubble sort time.  Dang.  

Thanks,

Tim

-Original Message-
From: Dave Wilson [mailto:dave;autosdirect2u.com]
Sent: Friday, October 25, 2002 8:20 AM
To: CF-Talk
Subject: RE: Verity Ordering Take 2.


Timothy,

Not very efficient but you could perhaps convert the string to a proper date
format at run-time and then sort it.

Dave

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: 25 October 2002 13:12
To: CF-Talk
Subject: Verity Ordering Take 2.


Hey,
I know many people are on their way to Orlando, so I don't really expect to
get an answer to this :)

I have 2 Verity indexes I am searching.  They both contain a filed
date_created, and I have added this field as custom2 to the search.  I need
to be able to sort by date off of that field. Now it is returning the field
as a string right now unfortunately..  IS there any easy (or even not so
easy) way of doing this?  I haven't been able to come up with anything yet,
I mean I could write a sort that would have to basically do 3 bubble sorts
on all of the 300,000 or so records I am dealing with.  The date is being
returned in the format dd-mmm-yy or 25-OCT-02.

Any help would be much appreciated.  Have fun  DevCon!!

Tim


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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.



RE: Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
I tried query of query, but it treats it as a string, not a date.  I just found an 
article that mentions a query sort custom tag I am going to try it now.  I will post 
if I get good results.

Tim

-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Friday, October 25, 2002 8:42 AM
To: CF-Talk
Subject: Re: Verity Ordering Take 2.


Quoting Timothy Heald [EMAIL PROTECTED]:
 
 I have 2 Verity indexes I am searching.  They both contain a filed
 date_created, and I have added this field as custom2 to the search. 
 I need to be able to sort by date off of that field. Now it is
 returning the field as a string right now unfortunately.  IS there
 any easy (or even not so easy) way of doing this?  I haven't been
 able to come up with anything yet, I mean I could write a sort that
 would have to basically do 3 bubble sorts on all of the 300,000 or so
 records I am dealing with.  The date is being returned in the format
 dd-mmm-yy or 25-OCT-02.

If you make sure that the date is returned as MMDD sorting is 
pretty easy. Also, doesn't Verity return a query? Can't you use QofQ?

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
You are the man, I didn't even think about that.  Ok, so is there a function (like 
convert() in SQL Server) that would let you change the date format for the whole 
column at once?

Tim

-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Friday, October 25, 2002 9:06 AM
To: CF-Talk
Subject: RE: Verity Ordering Take 2.


Quoting Timothy Heald [EMAIL PROTECTED]:
 
 I tried query of query, but it treats it as a string, not a date.

If formatted as mmdd that is not a problem. That is exactly why it 
is the standard dateformat, you can sort it :)

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
I am trying to do that with Oracle's to_date function, but it keeps saying that a char 
was found where a numeric value was expected.  I am trying to sort that out now.

Tim

-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Friday, October 25, 2002 9:50 AM
To: CF-Talk
Subject: RE: Verity Ordering Take 2.


Quoting Timothy Heald [EMAIL PROTECTED]:
 
 You are the man, I didn't even think about that.  Ok, so is there a
 function (like convert() in SQL Server) that would let you change the
 date format for the whole column at once?

Don't think so. But where does Verity get that date from, and can't you 
change it the moment it gets read from there?

Jochem


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



RE: Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
Got it.  Use to_char not to_date :)

Tim

-Original Message-
From: Timothy Heald 
Sent: Friday, October 25, 2002 10:05 AM
To: CF-Talk
Subject: RE: Verity Ordering Take 2.


I am trying to do that with Oracle's to_date function, but it keeps saying that a char 
was found where a numeric value was expected.  I am trying to sort that out now.

Tim

-Original Message-
From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl]
Sent: Friday, October 25, 2002 9:50 AM
To: CF-Talk
Subject: RE: Verity Ordering Take 2.


Quoting Timothy Heald [EMAIL PROTECTED]:
 
 You are the man, I didn't even think about that.  Ok, so is there a
 function (like convert() in SQL Server) that would let you change the
 date format for the whole column at once?

Don't think so. But where does Verity get that date from, and can't you 
change it the moment it gets read from there?

Jochem



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: Verity Ordering Take 2.

2002-10-25 Thread Timothy Heald
Thanks,
I fond that out a little while ago.  I was finally able to get it work like I 
wanted.  Now though I can't seem to get the query of query and date format to output 
anything for that field at all.   Weird.  I'll get it :).

Tim

-Original Message-
From: Deanna Schneider [mailto:deanna.schneider;ces.uwex.edu]
Sent: Friday, October 25, 2002 11:41 AM
To: CF-Talk
Subject: Re: Verity Ordering Take 2.


Tim,

If the field is already a date field in Oracle, you don't want to use
to_date, you want to use to_date(to_char()). To_date expects a char field,
so if you want to use it for reformatting a date, you have to to_char the
date, then to_date it.



Deanna Schneider
Interactive Media Developer
[EMAIL PROTECTED]




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: CFMX and CF5

2002-10-22 Thread Timothy Heald
I just did the install.  Ran like a champ.  You can even run them on separate 
instances of IIS together, if you check the archives I think Dave Watts did wrote 
something about it a while back.

Tim

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
Sent: Tuesday, October 22, 2002 3:26 PM
To: CF-Talk
Subject: CFMX and CF5


Folks,

I know it's possible to run CFMX and CF 5 together if you use CFMX's built-in web 
server. Does anyone have the dos and
don'ts or a step by step?  I'm guessing it isn't easy - considering the  trouble I've 
had running CFMX on a box that
previously had CF 5 installed.

-mk




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



RE: formatting #MonthasString

2002-10-18 Thread Timothy Heald
I would make a full date, then use date format to get the result I wanted in this 
case, either that or use string functions like left to get what you want.

Tim

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Friday, October 18, 2002 12:30 PM
To: CF-Talk
Subject: formatting #MonthasString


Is there a way to format a number value retrieved for a month (ex 10 for
the month of October) with the #monthasString# function. say to the ?
 
I tried #MonthasString(month, MM)#   but it throws an error
(note:month is the field name)
 
Tim 
 




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
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



Farewemll

2002-07-29 Thread Timothy Heald

Well folks it's been fun,

A little too much email for me these days.  Been really busy.  Thanks
for all the help. :)

Bye

Tim Heald
Developer
Schoollink, Inc.
910.223.2116 x 122


http://www.schoollink.net
Providing technology solutions for educators

Fusebox Advisory Committee
http://www.fusebox.org

Fayetteville ColdFusion User Group
http://www.fcfug.org


__
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: CF 5 Availability

2002-07-25 Thread Timothy Heald

Ebay has copies going cheap.

Tim Heald
Developer
School Link, Inc.
910.223.2116 x 122


http://www.schoollink.net
Providing technology solutions for educators


-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 25, 2002 9:47 PM
To: CF-Talk
Subject: CF 5 Availability


Can CF 5 upgrade from 4.5 still be had?

Thanks!
--

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

__
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
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: Best way to resend undelvr

2002-07-15 Thread Timothy Heald

What OS?

On Solaris you would cd to /usr/coldfusion/mail/undelivr.  Then you would mv
* ../spool.

You would want to check and see if they have any bad data first, so cat
*|more them and check for to and from addresses.

On windows it should be a simple copy and paste job.

Tim Heald
ACP/CCFD :)

Application Development
http://www.schoollink.net

Fusebox Advisory Committee Member
http://www.fusebox.org

Manager Fayetteville ColdFusion User Group
http://www.fcfug.org


 -Original Message-
 From: Willy Ray [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 15, 2002 12:31 PM
 To: CF-Talk
 Subject: Best way to resend undelvr


 What's the best way to check my undeliverable mail folder and the
 automatically RESEND the mail?

 Willy Ray




 -
 Willy Ray
 Web Applications Developer
 Certified Advanced ColdFusion Developer
 Westminster College
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
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: cfoutput and grouping

2002-07-14 Thread Timothy Heald

What DB are you using?

Tim

-Original Message-
From: Whiterod, David (PLNSA) [mailto:[EMAIL PROTECTED]]
Sent: Sunday, July 14, 2002 8:49 PM
To: CF-Talk
Subject: cfoutput and grouping


Hi,

What is the best way to group by months for a query that contains full (day,
month, year) dates?

The query looks something like:

startDate , user
10-JUN-2000, Bill
30-JUN-2000, Steve
15-SEP-2000, Phil

I would like the results to be displayed thus:

June 2000

  Bill
  Steve

September 2000

  Phil

Since the month would not be in a query column by itself I could not use it
as cfoutput's group column.

Ideally I would like some simple mechanism like:

cfoutput query=qryExampleDates group=Month(startDate)

I'm currently using CF5.

I am thinking of manipulating the query recordset (in CF) to add a new
column that just contains the month part of the date.

cheers

David

__
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
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: Storing Queries in Application Scope

2002-07-12 Thread Timothy Heald

Matt Liotta started his development career at the age of twelve by building
C applications for faculty at Emory University.

That sentence explains so much to me.

Tim Heald
ACP/CCFD :)

Application Development
http://www.schoollink.net

Fusebox Advisory Committee Member
http://www.fusebox.org

Manager Fayetteville ColdFusion User Group
http://www.fcfug.org


 -Original Message-
 From: Matt Liotta [mailto:[EMAIL PROTECTED]]
 Sent: Friday, July 12, 2002 4:12 PM
 To: CF-Talk
 Subject: RE: Storing Queries in Application Scope


 That seems awfully contradictory. On the one hand you disagree, but on
 the other you acknowledge that there must surely be instances of what I
 described, but you haven't seen them. Well just how many CF applications
 being ported from CF 5 to CFMX have you looked at?

 My comment was based on experience and confirmed by MM employees. It's
 not like I am making this shit up.

 Matt Liotta
 President  CEO
 Montara Software, Inc.
 http://www.montarasoftware.com/
 V: 415-577-8070
 F: 415-341-8906
 P: [EMAIL PROTECTED]

  -Original Message-
  From: Stacy Young [mailto:[EMAIL PROTECTED]]
  Sent: Friday, July 12, 2002 12:39 PM
  To: CF-Talk
  Subject: RE: Storing Queries in Application Scope
 
  I can't say I agree there...I'm sure there are instances of this side
  effect...it's just I haven't seen it yet. At the moment all our apps
 are
  still CF5 code base aside from the current project.
 
 
  -Original Message-
  From: Matt Liotta [mailto:[EMAIL PROTECTED]]
  Sent: Friday, July 12, 2002 1:45 PM
  To: CF-Talk
  Subject: RE: Storing Queries in Application Scope
 
 
  It really depends on how your application is put together. If you
 followed
  some of the standard ways CF applications were put together, then CFMX
  will
  smoke CF 5. However, if you had taken the time to write applications
 that
  were designed to smoke every other application server on the market
 with
  CF
  5, you are pretty much screwed with CFMX.
 
  Matt Liotta
  President  CEO
  Montara Software, Inc.
  http://www.montarasoftware.com/
  V: 415-577-8070
  F: 415-341-8906
  P: [EMAIL PROTECTED]
 
   -Original Message-
   From: Stacy Young [mailto:[EMAIL PROTECTED]]
   Sent: Friday, July 12, 2002 10:42 AM
   To: CF-Talk
   Subject: RE: Storing Queries in Application Scope
  
   Really? Our CFMX smokes any of our CF5 installs! You sure you don't
  have
   debug on?  ;-)
  
  
   -Original Message-
   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
   Sent: Friday, July 12, 2002 11:27 AM
   To: CF-Talk
   Subject: Re: Storing Queries in Application Scope
  
   Yup now we're at cfmx which cf5 still is faster then though mx does
  alot
   of
   neat things 5 doesn't. Maybe someday someone can make J2EE run a
  little
   faster lol.
  
   Bill Wheatley
   Senior Database Developer
   Macromedia Certified Advanced Coldfusion Developer
   EDIETS.COM
   954.360.9022 X159
   ICQ 417645
   - Original Message -
   From: [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Friday, July 12, 2002 11:21 AM
   Subject: Re: Storing Queries in Application Scope
  
  
*sniff sniff* ahh, the good old CF3 days, back when there were a
zillion restrictions on cfoutput  Pound signs everywhere
cfloops that counted slower than you saying the numbers
   
- Original Message -
From: Zac Spitzer [EMAIL PROTECTED]
Date: Friday, July 12, 2002 9:14 am
Subject: Re: Storing Queries in Application Scope
   
 Dave Watts wrote:
 Why can I not just reference my queries at
 application.[queryName].[value] throughout my application?
 
 
  You can. This is actually described near the bottom of the
 technote.I'm not
  sure why the writer bothered with all that copying queries to
 arrays
 stuff
  at the top.

 and the coding style is bad way to many #'s where they aren't
 need
  and
 they don't lock! but it's cf 3.0 code :-)

 z



   
  
  
 
 
 
__
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
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



xPost: Weird CF Error

2002-07-10 Thread Timothy Heald

Has anyone seen this error before:

bad_alloc: Out of Memory

PCodeRuntimeContextImp::write

I am running a very long query dumping into the custom tag cf_dump, and it
blows after about 10 seconds of running.

TIA

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org

__
Get the mailserver that powers this list at http://www.coolfusion.com
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: Comma Delimted list from CFLoop

2002-07-10 Thread Timothy Heald

CFOUPTUT
CFLOOP query=qPayment
CFSWITCH expression=#paymentName#
CFCASE value=VISA
visa stuff
/CFCASE
CFCASE value=MC
mastercard stuff
/CFCASE
CFCASE value=AMEX
american express stuff
/CFCASE
/CFSWITCH
/CFLOOP
/CFOUTPUT

That what you mean?

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net 

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org


 -Original Message-
 From: Mark Leder [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 10, 2002 12:39 PM
 To: CF-Talk
 Subject: Comma Delimted list from CFLoop
 
 
 Is it possible to separate values returned from a CFLOOP QUERY, as in
 the following example:
 
 CFLOOP QUERY=qPayment
   CFOUTPUT
   #Trim(paymentName)#
   /CFOUTPUT
 
 Records returned from the query could be VISA MC AMEX
 
 How would it be done?
 
 Thanks,
 Mark
 
 
__
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
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: Comma Delimted list from CFLoop

2002-07-10 Thread Timothy Heald

nope not what you mean.

Your looking for valueList()

Sorry :)

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net 

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org


 -Original Message-
 From: Mark Leder [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 10, 2002 12:39 PM
 To: CF-Talk
 Subject: Comma Delimted list from CFLoop
 
 
 Is it possible to separate values returned from a CFLOOP QUERY, as in
 the following example:
 
 CFLOOP QUERY=qPayment
   CFOUTPUT
   #Trim(paymentName)#
   /CFOUTPUT
 
 Records returned from the query could be VISA MC AMEX
 
 How would it be done?
 
 Thanks,
 Mark
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: Component Calls: What would you do?

2002-07-10 Thread Timothy Heald

Man,
Remove stick pls?

A constructor is used to set the initial values of your properties, and to
execute any functions you need to when you create your object.

The component body can be used for the same thing.  Why get stuck on the
semantics.  I think if you were to take a Java developer who had never seen
CF before and explain it in these terms that are easy to translate, he is
going to appreciate it.

Tim

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 9:08 PM
To: CF-Talk
Subject: RE: Component Calls: What would you do?


 Could you not make the same point about Arrays? Should we not call
them
 Arrays just because they don't start with zero? Anyone coming from C++
 or Java will already get the idea that not everything is portable.
Heck,
 anyone who uses more than one language is used to this.

Not true. An array is defined as a collection of identically typed data
items distinguished by their indices. A zero based array is the same
thing as a one based array. In fact, there is no rule that an array need
to be zero or one based. This is certainly true with associative arrays
(called a structs in CF). An associative array is one where the indices
are not just integers but may be arbitrary strings.

-Matt


__
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
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: Component Calls: What would you do?

2002-07-10 Thread Timothy Heald

What can a constructor do that the component body cannot?

What is the FUNCTIONAL difference?

Tim

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 9:24 PM
To: CF-Talk
Subject: RE: Component Calls: What would you do?


   The component body can be used for the same thing.  Why get
stuck
 on the
 semantics.  I think if you were to take a Java developer who had never
 seen
 CF before and explain it in these terms that are easy to translate, he
is
 going to appreciate it.
 
While a component body can for the most part be used for the same thing;
it is not the same thing. Simply borrowing terms and then applying their
meanings incorrectly never gets anyone anywhere. While some people on
this have no plans of every using any other language besides CF, some
people on this list may simply be new programmers and for whatever
reason have picked CF as their first language. It would be awful for the
later group to learn incorrect meanings of terms because it could
negatively affect their ability to code with other languages or
integrate well with more traditional programmers at a later date.

-Matt


__
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
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: Component Calls: What would you do?

2002-07-10 Thread Timothy Heald

OK,
That makes sense.  In Java if I hand it an int and a string it uses one
constructor, if I hand it just a float it uses another.  So I see the
passing in of attributes and overloading argument.   I guess for me it just
close enough.  Is it exact?  No but how many languages, even ones based on
the same principals, expose identical functionality in the same exact way.
If they did why would they be different languages.

I think I now see Ray's wisdom in bowing out early :)

Different opinions don't hurt anything.

Tim

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 9:36 PM
To: CF-Talk
Subject: RE: Component Calls: What would you do?


In this case, the main difference is the ability to pass parameters to
the constructor. This of course requires the constructor to be a method.
Additionally, in languages that support static properties and methods,
the constructor allows you to separate code executing in non-static
contexts. Finally, languages that support method overloading generally
allow constructor overloading as well.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
V: 415-577-8070
F: 415-341-8906
P: [EMAIL PROTECTED]


 -Original Message-
 From: Timothy Heald [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 10, 2002 6:26 PM
 To: CF-Talk
 Subject: RE: Component Calls: What would you do?

 What can a constructor do that the component body cannot?

 What is the FUNCTIONAL difference?

 Tim

 -Original Message-
 From: Matt Liotta [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 10, 2002 9:24 PM
 To: CF-Talk
 Subject: RE: Component Calls: What would you do?


  The component body can be used for the same thing.  Why get
 stuck
  on the
  semantics.  I think if you were to take a Java developer who had
never
  seen
  CF before and explain it in these terms that are easy to translate,
he
 is
  going to appreciate it.
 
 While a component body can for the most part be used for the same
thing;
 it is not the same thing. Simply borrowing terms and then applying
their
 meanings incorrectly never gets anyone anywhere. While some people on
 this have no plans of every using any other language besides CF, some
 people on this list may simply be new programmers and for whatever
 reason have picked CF as their first language. It would be awful for
the
 later group to learn incorrect meanings of terms because it could
 negatively affect their ability to code with other languages or
 integrate well with more traditional programmers at a later date.

 -Matt




__
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: Skimmin the list.......? [oT]

2002-07-09 Thread Timothy Heald

Hey,
Just got the same one.

I hate spammers.

Tim

-Original Message-
From: Critter [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 7:16 PM
To: CF-Talk
Subject: Skimmin the list...? [oT]


oi CF-Talk,!!

  I  use  this  addy  only  for this list. (almost positive) today I
received an
  email to it from:  [EMAIL PROTECTED]
[EMAIL PROTECTED]  (The Recruitment Consultant)

  someone here sucking off the list ?

--
Critz
Certified Advanced Bald White Barefoot ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion


__
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: onTap chat room...

2002-07-09 Thread Timothy Heald

Hey,
I have been watching this thread some, but not seen mention of either a URL
or FTP addy to grab and or demo this at.  Is it a beta test or something?

Tim

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 11:47 PM
To: CF-Talk
Subject: RE: onTap chat room...


 One interesting thing - if two messages are sent at the
 same time, they end up appending - like this:

 07:58:26 [Steini - tsherr] I wonder if you can change the
 look and feel07:58:27 [tsherr] I'm not sure if that is healthy. :)

 I can see that being a problem with a lot of people
 chatting.

I got the fix for this in now. :) Plus I fixed the whisper-deselect
problem... wow that was a holy nightmare ... you cant just use
object.setSelectedIndex(-1) or (null) as would be logical for JavaScript --
Flash either ignores the statement or chokes... turns out the only way to
deselect an item in the list box is to empty the list box and rebuild all
the entries blech... in any event, it's fixed now...

I also added to the demo an example of how to include navigation element(s)
so that users may move between rooms and linking on the fly, so
http://mydomain.com or www.mydomain.com or [EMAIL PROTECTED] will all be
converted into links when a message is sent... this is an optional feature
you can turn off... There's a new attribute also called opMode which is
intended to allow the app to be moded to work in a particular way, such as
speed which would optimize for speed at the possible expense of certain
other things ... at the moment it's just at the expense of some entries in
the history not having proper line-breaks the way they should... Preserving
the line-breaks requires slightly more work from CF server on each refresh.

Anyway, I'm rambling now... :)

I hope everyone enjoys the chat... Please let me know if you have any
feature suggestions or if you have any problems with it.

p.s. What were you not sure was healthy? I'm guessing it wasn't changing the
look and feel. :)

Isaac

www.turnkey.to
954-776-0046


__
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
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: cf and xml

2002-07-09 Thread Timothy Heald

Use cfsavecontent wrapped around whatever code you use to generate the xml
document.  Then use the variable produced as the cffile output.

Tim

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 12:21 AM
To: CF-Talk
Subject: cf and xml


ok, question guys and gals

i would like to write the contents of an xml document, based on user
input from some form elements.

is the cffile tag what i need to use? so that the structure is what
i am looking for? or is there a better method. i played with it tonight
however i am unable to use cf tags or  quotation marks within the
output
parameter of the cffile tag.  that severely limits what i am able to
create.

can anyone add some insight into this?

thanks!

.tony

tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.334.6331


__
Get the mailserver that powers this list at http://www.coolfusion.com
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



nuther lockin Q Redux

2002-07-08 Thread Timothy Heald

Ok,
Here's another one.  I thought I had sent it in this morning, but I guess
not.

I have a CFC lets call it utilities.  I would like to create an application
scoped utilities object once per day using a roll your own cache thing.
Do I need to wrap it in a lock?

Now I have a CFC named cart.  I would like to create this object in the
session for each user that uses the shopping cart.  Does it need a lock?

Just curious.  As I learn more about CFCs I am more and more impressed.

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org


 -Original Message-
 From: Raymond Camden [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 08, 2002 2:50 PM
 To: CF-Talk
 Subject: RE: nuther lockin Q?


 Last I heard - this is not an issue in either CF5 or CFMX. (I.e., you
 don't have to worry about leaving a lock unfinished.)

 ===
 Raymond Camden, ColdFusion Jedi Master for Macromedia

 Email: [EMAIL PROTECTED]
 Yahoo IM : morpheus

 My ally is the Force, and a powerful ally it is. - Yoda

  -Original Message-
  From: Tim Painter [mailto:[EMAIL PROTECTED]]
  Sent: Monday, July 08, 2002 2:47 PM
  To: CF-Talk
  Subject: Re: nuther lockin Q?
 
 
  I thought that putting a cflocation inside a cflock was a bad
  thing to do -- doesn't it lock up the server or something?
 
  In that case, I'd set a temp variable to the value of the
  session variable inside the cflock and test that:
  cflock type=readonly scope=session timeout=10
cfif not len(session.auth.iUserID)
 cfset tempGO = true
  cfelse
 cfset tempGO = false
  /cflock
 
  cfif tempGo
  cflocation url=../logout.cfm?reason=sessiontimeout
  addtoken=no
  /cfif
 


 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: nuther lockin Q Redux

2002-07-08 Thread Timothy Heald

Would you like to play a game?

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net 

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org


 -Original Message-
 From: Raymond Camden [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 08, 2002 3:12 PM
 To: CF-Talk
 Subject: RE: nuther lockin Q Redux
 
 
  
  
   www.camdenfamily.com/morpheus (go to cf, then CFCs). I'm 
  going to upload
   my Card/Deck CFC package a bit later today, along with the 
  first card
   game, HighHand. (To be followed up by BlackJack. ;)
  
  Raymond, why such simple card games?  I expected Magic the 
  Gathering 
  type applications outta you. ;)
  
 
 
 Monday, Tic Tac Toe.
 Tuesday, Thermo-Nuclear War. -grin- (And now I wonder how many people
 here are too young to have any idea what I'm talking about...)
 
 ===
 Raymond Camden, ColdFusion Jedi Master for Macromedia
 
 Email: [EMAIL PROTECTED]
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
 
 
__
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
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: Certification

2002-07-02 Thread Timothy Heald

I thought the test was pretty easy, although it did cover a much wider range
of subjects then I had imagined.  The Ben Forta certification book helped
immensely. (Crit I found it :))

I had problems with stuff I don't use every day.  We work on clustered
servers, we all client and no application, session or server variables, so
locking was a mystery to me.  Some of the more advanced topics like WDDX I
needed to just sit down and play with.

All in all it was not too bad, but then again I didn't study as hard as I
should have, and my score reflects that:)

One thing I will say.  Learn to the test.  Don't expect everything you see
on the test to be the way you would do it, or anyone would do it.  Study
that guide.

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org


 -Original Message-
 From: Stephen Rojas [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 02, 2002 12:22 PM
 To: CF-Talk
 Subject: Certification


 Hey all,
 Been working with CF for about 2 years now, all manner of projects and
 applications, principally using CF 4.5 and CF 5. As of late I have been
 thinking of making the jump and get certified and basically just wanted to
 get some general recommendations out there from anyone who has
 gone through
 the process. I am aiming for CF 5 certification as I believe that
 makes the
 most sense currently. Are there any resources out there that people found
 particularly helpful? Any you thought would be helpful but weren't :-) Any
 other tips people may have are a definite plus. Needless to say I
 have done
 the required Amazon.com etc. searches (Noticed Michael Dinowitz's book is
 out of print, alas), but I also wanted to pick up some 'real life' advice
 before I move forward.

 Thanks in advance
 -Stephen

 
__
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
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: Changing the MX Webserver Port

2002-07-02 Thread Timothy Heald

You have the MX server installed on IIS or in stand alone?  If it is over
IIS then you don't have to change it to 80, it defaults to whatever port
your IIS is listening on.

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org


 -Original Message-
 From: Houk, Gary [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 02, 2002 1:57 PM
 To: CF-Talk
 Subject: Changing the MX Webserver Port


 Has anyone been able to do this successfully? I followed the
 instructions and modified the jrun.xml and changed it to 80.
 Still no luck. Any info would be great! We are running IIS on Win 2k.

 Thanks,

 - Gary
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
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: CFLOCATION and CFCOOKIE

2002-07-01 Thread Timothy Heald

I will usually just write a JavaScript location script to move the user
where I want kicked of in an onLoad even handler in the body tag.

Either that or there is a cf_location custom tag available on the MM
exchange.  Never used it but I hear good things :)

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net

 -Original Message-
 From: Matthew R. Small [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 01, 2002 8:08 AM
 To: CF-Talk
 Subject: CFLOCATION and CFCOOKIE


 Hi Everybody,
   I'm sure I'm retreading an old topic here...
   I'm sure that I've read that if a cflocation is performed after
 a cfcookie, then the cookie never gets set.  So how do I achieve
 ssetting a cookie?  What I need to do is log a daily unique customer
 (determined by cookie) who clicks on a link and them send him/her to a
 Windows Media File.
   Any ideas

 Thank you,
 Matthew Small


 
__
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: whats wrong with cfform tag?

2002-07-01 Thread Timothy Heald

CF_OPINION

NEVER !!

/CF_OPINION

Same with the SQL tags insert and update :)

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net 

 -Original Message-
 From: Jim Vosika [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 01, 2002 8:05 AM
 To: CF-Talk
 Subject: RE: whats wrong with cfform tag?
 
 
 I have always wondererd, when is it better to use the cfform tage over a
 regular form tag?
 
 Just Curious,
 Jim Vosika
 http://www.tinyclick.com
 FREE URL Shortening
 
 -Original Message-
 From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, July 01, 2002 6:42 AM
 To: CF-Talk
 Subject: RE: whats wrong with cfform tag?
 
 negatory. just a simple straight forward cfform tag.
 i have seen this kind of strange result with everyone (cfform tag)
 i have ever tried to use...ill send the code soon..
 tony
 
 -Original Message-
 From: Matthew Walker [mailto:[EMAIL PROTECTED]] 
 Sent: Sunday, June 30, 2002 11:50 PM
 To: CF-Talk
 Subject: RE: whats wrong with cfform tag?
 
 
 Are you using a cflocation?
 
  -Original Message-
  From: Tony Weeg [mailto:[EMAIL PROTECTED]]
  Sent: lundi 1 juillet 2002 15:41
  To: CF-Talk
  Subject: RE: whats wrong with cfform tag?
  
  
  i guess i cant send an attachment, well here is the graphic url.
  
  http://www.revolutionwebdesign.com/clients/coupons/what_is_this.gif
  
  thanks tony
  
  -Original Message-
  From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
  Sent: Sunday, June 30, 2002 11:34 PM
  To: CF-Talk
  Subject: whats wrong with cfform tag?
  
  
  why is it that sometimes i get weird header
  info crap at the top of a page that parses
  a cfform tag?
  
  the graphic i have attached will show you
  what kinds of stuff i see.
  
  thanks :[
  
  frustrated in salisburytony
  
  
  
 Get the mailserver that powers this list at http://www.coolfusion.com
 FAQ: http://www.symantecwinfaxpro.com/
 http://www.zonealarmprodownload.com/
  http://www.nortonantivirusdownload.com/ http://www.nortonghost.net/
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
 
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
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: Runaway clients

2002-07-01 Thread Timothy Heald

WSP man, Web Site Pro.  Not IIS, there are servers other than IIS and Apache
available :)

Tim

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 01, 2002 2:25 PM
To: CF-Talk
Subject: RE: Runaway clients


You look in your IIS logs?

-Cameron

-
Cameron Childress
Sumo Consulting Inc.
---
cell:  678-637-5072
aim:   cameroncf
email: [EMAIL PROTECTED]


 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 01, 2002 2:09 PM
 To: CF-Talk
 Subject: Runaway clients


 I've got CF5 on WSP and I've been seeing the registry setting
 for the client vars fill up exceptionally fast. Every second
 there's like 4 new items in it. I think this has to do with
 some sort of system probe, but I can't hunt it down and
 disable it. Any clue from anyone?

 Michael Dinowitz
 Master of the House of Fusion
 http://www.houseoffusion.com



__
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
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: More server problems

2002-06-28 Thread Timothy Heald

Never mind.  I reinstalled mx and got it working.

Tim

-Original Message-
From: Timothy Heald [mailto:[EMAIL PROTECTED]]
Sent: Saturday, June 29, 2002 12:46 AM
To: CF-Talk
Subject: More server problems


Hi,
My server at the house has had some problems.  I know I have to rebuild it
this weekend, but I am hoping to get it running again this evening.  If
anyone can just tell me the name of the ISAPI dll connector.  For some
reason it didn't get installed when I just tried to downgrade back to 5, and
I have reinstalled twice, and I have also done a repair.  Any help would be
appreciated.

Tim


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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



Studio/Homesite question

2002-06-26 Thread Timothy Heald

What's the point of splitting the code view in Studio?  I mean I have not
been able to find a way (I may just be missing it) to open 2 templates, one
top and a different one bottom.  So why would one use that feature?

TIA

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net

__
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: Studio/Homesite question (alex - skip)

2002-06-26 Thread Timothy Heald

Multi what?

Sorry man, I can only think about 17 things at once.  Psychologists say blah
blah blah

Hehe.  Your templates are huge with all that DHTML Crit.  Me, I am just a CF
newbie so I only need a little space :)

Truth be told, I can definitely see how it could come in handy now that
everyone mentions it.  When going back and doing patch work on old code.
You know entire app in two templates of several thousand lines each.  Those
are my favorite :)

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net

 -Original Message-
 From: Critter [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, June 26, 2002 11:22 AM
 To: CF-Talk
 Subject: Re: Studio/Homesite question (alex - skip)


 oi geez!!

 I  use  it  quite  a  bit  if  I  am typing in stuff that
 references code at the
 top...etc...  just  gives you a view of two different sections of
 the page...you
 know for multitasking!!!


 --
 Critz
 Certified Adv. ColdFusion Developer

 Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion
 
 Wednesday, June 26, 2002, 11:14:00 AM, you wrote:

 TH What's the point of splitting the code view in Studio?  I
 mean I have not
 TH been able to find a way (I may just be missing it) to open 2
 templates, one
 TH top and a different one bottom.  So why would one use that feature?

 TH TIA

 TH Tim Heald
 TH ACP/CCFD :)
 TH Application Development
 TH www.schoollink.net

 TH
 
__
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: Fusebox 3

2002-06-25 Thread Timothy Heald

Sure,
There are plenty of us here. I know there are at least a few council
members and most of the other advisory committee members are here.  If you
want to mail me you can, or shoot me a mail off list and I can give you a
number to call.

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net

 -Original Message-
 From: Tangorre, Michael [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 25, 2002 3:13 PM
 To: CF-Talk
 Subject: Fusebox 3


 Any Fusebox 3 Gurus out there?? Anyone at all?

 I would like to chat off list with any FB3 people reading today...
 I have some issues and I want to see if its me, the code, or the
 core files that
 is causing the problems.

 Michael Tangorre

 MillenniuM Information Systems
 1101 Wilson Blvd, Suite 1200
 Arlington, Virginia 22209
 (703) 341-1438

 
 This email contains MillenniuM Information
 Systems, LLC. privileged information.
 
 
__
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
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: client variables changing?...

2002-06-25 Thread Timothy Heald

Make sure that they aren't book marking pages, or sending each other links.
It would be possible to assume someone's session, and there by get there
client variables as your own.  I have heard of that happening before.  Also
two of the developers here have just accidentally assumed each others
sessions when they were assigned the same ids.  It's the only time I have
ever heard of that happening, but you never know :)

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net

 -Original Message-
 From: Houk, Gary [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 25, 2002 2:58 PM
 To: CF-Talk
 Subject: client variables changing?...


 We have an app that has a login screen and the following code is
 ran on the action page: cfset client.repid=form.repid. The
 repid is displayed at the top of all the pages in an included
 header page. Some of the reps say that on the order confirmation
 screen, their repid changes to that of someone else in the
 office. The only reference in the code on the confirmation page is:

 cfprocparam type=In cfsqltype=CF_SQL_CHAR
 variable=@rssc_rep_id value=#client.repid# null=No

 I have no idea how it could be changing. The offices run Linux
 boxes with Netscape 3.0 browser, and they all run through a
 Netscape Server. Any thoughts on this? It's causing our reps to
 not get credited for all of their sales. It seems as though the
 repid that it changes to is one from their office. Any other
 suggestions? We are running in a clustered environment, which is
 why we use client variables stored in a sql server 2000 database.

 TIA,

 - Gary
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
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



  1   2   3   >