RE: CFMX database file

2003-01-02 Thread Joshua Miller
http://www.joshuasmiller.com/dsn_browser.zip

This uses the Java ServiceFactory to get information about Databases and
DSN connections. It's geared towards being a little development tool,
but you can disect it to get the information you need about the DSN
connections.

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: Sean A Corfield [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 11:31 PM
To: CF-Talk
Subject: Re: CFMX database file


neo-query.xml - it's a one-line wddx packet so it's not easily editable 
manually (and be warned that if you introduce any unexpected 
whitespace, CFMX will choke!).

On Thursday, Jan 2, 2003, at 14:37 US/Pacific, Ryan Mitchell wrote:

> Hey
>
> Which file holds the info about the databases set up in the CFMX 
> administrator?
>
> Ryan Mitchell
>
> e: [EMAIL PROTECTED]
> w: www.rtnetworks.net
> t: 07866569916


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



RE: Mr.Corfield: MX and beans

2003-01-02 Thread Simon Horwith
However - you can do something like this in Flash MX ;)

~Simon

Simon Horwith 
Macromedia Certified Instructor 
Certified Advanced ColdFusion MX Developer 
Certified Flash MX Developer 
CFDJList - List Administrator 
Fig Leaf Software 
1400 16th St NW, # 220 
Washington DC 20036 
202.797.6570 (direct line) 
www.figleaf.com 



-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 23:31
To: CF-Talk
Subject: Re: Mr.Corfield: MX and beans


On Thursday, Jan 2, 2003, at 12:44 US/Pacific, Rob Rohan wrote:
> I've been playing with JSP (tomcat) and the bean feature is rad.
> Creating
> the accessor and mutator and then simply having the form go straight 
> to the
> bean - it's awesome

By way of explanation for folks who might not immediately follow Rob's 
comments:

If you have a Java class with a data attribute called "thing" and 
setter/getters called void setThing(Type newThing) / Type getThing() 
then you can access them in JSP as if it were a direct attribute rather 
than methods:

obj.thing = 42; // actually calls obj.setThing(42)
x = obj.thing;  // actually calls obj.getThing()

I don't remember the exact syntax or the tags but it allows you to 
encapsulate your data effectively without clients having to worry about 
method calls, e.g., setAge(x) could check the age is > 0 so that 
obj.age = -1 is trapped.

> I have 2 questions. First, are bean functions available in cfmx (non 
> enterprise or does one have to upgrade - I am a bit confused would 
> pages

A quick test shows that CFMX does not seem to support the same thing:

// Thing.java:
public class Thing {
 private String value;
 public void setIt(String x) { value = x; }
 public String getIt() { return value; }
}





That causes an error.



works.

> work like .cfm -> cfmx -> tomcat -> apache/iis -> brower?). Second,
> did you

CFMX is a J2EE application (with some supporting native machinery) that 
compiles .cfm pages to .java files and then compiles those (using 
jikesw or javac) into .class files which are then loaded (by CFMX) and 
executed (by the J2EE app server). CFMX is invoked as a Servlet 
(CfmServlet). Does that answer your question?

> guys base cfmx/jrun off tomcat or is that just coincidence (directory 
> structure, jikes, etc)?

I have no idea - JRun predates my experience with Macromedia by a few 
years!

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone. Learn more
at http://www.macromedia.com/contribute


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



Re: CFMX database file

2003-01-02 Thread Sean A Corfield
neo-query.xml - it's a one-line wddx packet so it's not easily editable 
manually (and be warned that if you introduce any unexpected 
whitespace, CFMX will choke!).

On Thursday, Jan 2, 2003, at 14:37 US/Pacific, Ryan Mitchell wrote:

> Hey
>
> Which file holds the info about the databases set up in the CFMX
> administrator?
>
> Ryan Mitchell
>
> e: [EMAIL PROTECTED]
> w: www.rtnetworks.net
> t: 07866569916

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



Re: Mr.Corfield: MX and beans

2003-01-02 Thread Sean A Corfield
On Thursday, Jan 2, 2003, at 12:44 US/Pacific, Rob Rohan wrote:
> I've been playing with JSP (tomcat) and the bean feature is rad. 
> Creating
> the accessor and mutator and then simply having the form go straight 
> to the
> bean - it's awesome

By way of explanation for folks who might not immediately follow Rob's 
comments:

If you have a Java class with a data attribute called "thing" and 
setter/getters called void setThing(Type newThing) / Type getThing() 
then you can access them in JSP as if it were a direct attribute rather 
than methods:

obj.thing = 42; // actually calls obj.setThing(42)
x = obj.thing;  // actually calls obj.getThing()

I don't remember the exact syntax or the tags but it allows you to 
encapsulate your data effectively without clients having to worry about 
method calls, e.g., setAge(x) could check the age is > 0 so that 
obj.age = -1 is trapped.

> I have 2 questions. First, are bean functions available in cfmx (non
> enterprise or does one have to upgrade - I am a bit confused would 
> pages

A quick test shows that CFMX does not seem to support the same thing:

// Thing.java:
public class Thing {
 private String value;
 public void setIt(String x) { value = x; }
 public String getIt() { return value; }
}





That causes an error.



works.

> work like .cfm -> cfmx -> tomcat -> apache/iis -> brower?). Second, 
> did you

CFMX is a J2EE application (with some supporting native machinery) that 
compiles .cfm pages to .java files and then compiles those (using 
jikesw or javac) into .class files which are then loaded (by CFMX) and 
executed (by the J2EE app server). CFMX is invoked as a Servlet 
(CfmServlet). Does that answer your question?

> guys base cfmx/jrun off tomcat or is that just coincidence (directory
> structure, jikes, etc)?

I have no idea - JRun predates my experience with Macromedia by a few 
years!

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute

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



RE: Outputing part of memo field

2003-01-02 Thread Terry
Thanks all for your help.  

Both Howard's UDF and Jochem's RE solutions worked.  I'm going to play around with 
both to see if there's a performance difference.

Thanks again,

Terry

*** REPLY SEPARATOR  ***

On 1/2/2003 at 5:54 PM Owens, Howard wrote:

>Add this instruction to my comments:
>
> * BTW: If you change the list delims from space (" ") to 
> * a period ("."), you can end at a sentence ending (or 
> * possibly the end of an abbreviated word, if any in the story.
>
>
>
>> -Original Message-
>> From:Owens, Howard [SMTP:[EMAIL PROTECTED]]
>> Sent:Thursday, January 02, 2003 5:51 PM
>> To:  CF-Talk
>> Subject: RE: Outputing part of memo field
>> 
>> I thought this might be a good chance to try making my FIRST UDF ... so
>> did
>> this (tested and works for me)
>> 
>> 
>> 
>> 
>> /**
>>  * Returns a teaser to a longer story 
>>  * Feed it the text of a full story and return
>>  * the first n of characters, broken intelligently
>>  * at a word break instead of in the middle of a word
>>  * 
>>  * Use: MakeTeaser(textString,charCount)
>>  * textString being any variable name you chose that contains
>>  * a string of text and charCount being the number of characters
>>  * into the string to start looking for a place for the line break
>>  * return Returns a string. 
>>  * author Howard Owens (www.howardowens.com) 
>>  * version 1, Jan. 2, 2003
>>  */
>> 
>> function MakeTeaser(str,pos) {
>>  newstr = "";
>>  charCount = pos;
>>  newstr = Left(str,charCount);
>>  getStrLen = ListLen(newstr, " ");
>>  newstr = ListDeleteAt(newstr, getStrLen, " ");
>>  
>>  return newstr; }
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> > -Original Message-
>> > From:  Owens, Howard [SMTP:[EMAIL PROTECTED]]
>> > Sent:  Thursday, January 02, 2003 5:31 PM
>> > To:CF-Talk
>> > Subject:   RE: Outputing part of memo field
>> > 
>> > Here's a suggestion:
>> > 
>> > 
>> > 
>> > 
>> > 
>> > 
>> > 
>> > 
>> > #theString#
>> > Full Story
>> > 
>> > 
>> > 
>> > 
>> > 
>> > > -Original Message-
>> > > From:Terry [SMTP:[EMAIL PROTECTED]]
>> > > Sent:Thursday, January 02, 2003 4:56 PM
>> > > To:  CF-Talk
>> > > Subject: Outputing part of memo field
>> > > 
>> > > I need to output only about the 1st 150 characters of a memo field,
>> but
>> > > want to break it at a space and then have a link to the entire story.
>> > > 
>> > > I know I can figure this out, but if anyone can help me save a few
>> hours
>> > > I'd appreciate it.
>> > > 
>> > > thx
>> > > 
>> > > 
>> > > 
>> > > 
>> > 
>> 
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: (OT) 2002 Stats

2003-01-02 Thread Peter Tilbrook
So what's the big deal with Amsterdam?

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Friday, 3 January 2003 12:27 PM
To: CF-Talk
Subject: Re: (OT) 2002 Stats


Dave Carabetta wrote:
> 
> Don't you live in Amsterdam?

No.

Jochem


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



Tutorials

2003-01-02 Thread Jas Panesar
http://www.cfprimer.com seems to be decent, but I've referred webmonkey alot till I 
came across this site.

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



RE: CFHTTP and passing cookies

2003-01-02 Thread Ruslan Sivak
I solved my problem by now.  Turns out CF was URLEncoding the = sign,
and the server didn't like that as much.  Is there a way to stop CF from
encoding the cfhttpparam variables?

Russ

-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 10:53 AM
To: CF-Talk
Subject: Re: CFHTTP and passing cookies

You are saying that it works in IE, but not in another browser like  
Netscape?

One thing I noticed is that the elements in your cookie array are URL  
encoded.  I think that cfhttpparam automatically URL encodes its  
values, so it's possible your values are getting double URL encoded.  I

haven't tested any of this, though, so this is just a guess.

Christian

On Wednesday, January 1, 2003, at 06:57 PM, Ruslan Sivak wrote:

> I went to staples.com and added an item to my shopping cart.  Then I  
> got
> all the cookies that were set by using
> javascript:document.write(document.cookie);
>
> Now I'm using the following code to set the cookies and do a cfhttp.
> For some reason when I do the cfhttp it tells me that there are no  
> items
> in my cart.  When I go to the same page in IE, I see items in my cart.
>
> 
> 
> 
cookies[2]="ShopperManager%2F=ShopperManager%2F=7A7836F85ACB43FBA352335 
> 4
> CA7E4083">
> 
> 
> 
> 
>
>
> http://www.staples.com/";>
>
> http://www.staples.com/Cart/default.asp"; method="POST"
> useragent="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
> 1.0.3705)" redirect="No">
>   
>name="#ListFirst(cookies[x],'=')#" value="#ListRest(cookies[x],'=')#">
>   
> #ListFirst(cookies[x],'=')#=#ListRest(cookies[x],'=')#; cfout
> put>
>   
>   
> 
> #cfhttp.header#
> #cfhttp.filecontent#
>
> That was the code, and here is the header I get back.
>
> HTTP/1.1 200 OK
> Server: Microsoft-IIS/5.0
> Date: Wed, 01 Jan 2003 23:43:06 GMT
> Pragma: no-cache
> Connection: Keep-Alive
> Content-Length: 19794
> Content-Type: text/html
> Expires: Tue, 01 Jan 1980 05:00:00 GMT
> Set-Cookie: PageType=1; expires=Tue, 31-Dec-2002 05:00:00 GMT; path=/
> Cache-control: no-cache
>
> If I try the get method, then I can't pass in any cookies (it tells me
> that I can't have cfhttpparam when the method is get.  Am I doing
> something wrong?  Why are the items not showing up in the shopping  
> cart?
> I can't imagine what else they can be using for passing variables.
>
>
> Russ
>
> 

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



RE: Outputing part of memo field

2003-01-02 Thread Owens, Howard
Add this instruction to my comments:

 * BTW: If you change the list delims from space (" ") to 
 * a period ("."), you can end at a sentence ending (or 
 * possibly the end of an abbreviated word, if any in the story.



> -Original Message-
> From: Owens, Howard [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 5:51 PM
> To:   CF-Talk
> Subject:  RE: Outputing part of memo field
> 
> I thought this might be a good chance to try making my FIRST UDF ... so
> did
> this (tested and works for me)
> 
> 
> 
> 
> /**
>  * Returns a teaser to a longer story 
>  * Feed it the text of a full story and return
>  * the first n of characters, broken intelligently
>  * at a word break instead of in the middle of a word
>  * 
>  * Use: MakeTeaser(textString,charCount)
>  * textString being any variable name you chose that contains
>  * a string of text and charCount being the number of characters
>  * into the string to start looking for a place for the line break
>  * return Returns a string. 
>  * author Howard Owens (www.howardowens.com) 
>  * version 1, Jan. 2, 2003
>  */
> 
> function MakeTeaser(str,pos) {
>   newstr = "";
>   charCount = pos;
>   newstr = Left(str,charCount);
>   getStrLen = ListLen(newstr, " ");
>   newstr = ListDeleteAt(newstr, getStrLen, " ");
>   
>   return newstr; }
> 
> 
> 
> 
> 
> 
> 
> > -Original Message-
> > From:   Owens, Howard [SMTP:[EMAIL PROTECTED]]
> > Sent:   Thursday, January 02, 2003 5:31 PM
> > To: CF-Talk
> > Subject:RE: Outputing part of memo field
> > 
> > Here's a suggestion:
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > #theString#
> > Full Story
> > 
> > 
> > 
> > 
> > 
> > > -Original Message-
> > > From: Terry [SMTP:[EMAIL PROTECTED]]
> > > Sent: Thursday, January 02, 2003 4:56 PM
> > > To:   CF-Talk
> > > Subject:  Outputing part of memo field
> > > 
> > > I need to output only about the 1st 150 characters of a memo field,
> but
> > > want to break it at a space and then have a link to the entire story.
> > > 
> > > I know I can figure this out, but if anyone can help me save a few
> hours
> > > I'd appreciate it.
> > > 
> > > thx
> > > 
> > > 
> > > 
> > > 
> > 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Outputing part of memo field

2003-01-02 Thread Owens, Howard
I thought this might be a good chance to try making my FIRST UDF ... so did
this (tested and works for me)




/**
 * Returns a teaser to a longer story 
 * Feed it the text of a full story and return
 * the first n of characters, broken intelligently
 * at a word break instead of in the middle of a word
 * 
 * Use: MakeTeaser(textString,charCount)
 * textString being any variable name you chose that contains
 * a string of text and charCount being the number of characters
 * into the string to start looking for a place for the line break
 * return Returns a string. 
 * author Howard Owens (www.howardowens.com) 
 * version 1, Jan. 2, 2003
 */

function MakeTeaser(str,pos) {
newstr = "";
charCount = pos;
newstr = Left(str,charCount);
getStrLen = ListLen(newstr, " ");
newstr = ListDeleteAt(newstr, getStrLen, " ");

return newstr; }







> -Original Message-
> From: Owens, Howard [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 5:31 PM
> To:   CF-Talk
> Subject:  RE: Outputing part of memo field
> 
> Here's a suggestion:
> 
> 
> 
> 
> 
> 
> 
> 
> #theString#
> Full Story
> 
> 
> 
> 
> 
> > -Original Message-
> > From:   Terry [SMTP:[EMAIL PROTECTED]]
> > Sent:   Thursday, January 02, 2003 4:56 PM
> > To: CF-Talk
> > Subject:Outputing part of memo field
> > 
> > I need to output only about the 1st 150 characters of a memo field, but
> > want to break it at a space and then have a link to the entire story.
> > 
> > I know I can figure this out, but if anyone can help me save a few hours
> > I'd appreciate it.
> > 
> > thx
> > 
> > 
> > 
> > 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Outputing part of memo field

2003-01-02 Thread Samuel Neff
List functions are pretty slow.  You're better off looping backward from
150 until you get a space and then doing the Left.

> -Original Message-
> From: Owens, Howard [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 8:31 PM
> To: CF-Talk
> Subject: RE: Outputing part of memo field
> 
> 
> Here's a suggestion:
> 
> 
> 
> 
> 
> 
> 
> 
> #theString#
> Full Story 
> 
> 
> 
> 
> > -Original Message-
> > From:   Terry [SMTP:[EMAIL PROTECTED]]
> > Sent:   Thursday, January 02, 2003 4:56 PM
> > To: CF-Talk
> > Subject:Outputing part of memo field
> > 
> > I need to output only about the 1st 150 characters of a memo field, 
> > but want to break it at a space and then have a link to the entire 
> > story.
> > 
> > I know I can figure this out, but if anyone can help me save a few 
> > hours I'd appreciate it.
> > 
> > thx
> > 
> > 
> > 
> > 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Outputing part of memo field

2003-01-02 Thread Owens, Howard
Here's a suggestion:








#theString#
Full Story





> -Original Message-
> From: Terry [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 4:56 PM
> To:   CF-Talk
> Subject:  Outputing part of memo field
> 
> I need to output only about the 1st 150 characters of a memo field, but
> want to break it at a space and then have a link to the entire story.
> 
> I know I can figure this out, but if anyone can help me save a few hours
> I'd appreciate it.
> 
> thx
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: (OT) 2002 Stats

2003-01-02 Thread Jochem van Dieten
Dave Carabetta wrote:
> 
> Don't you live in Amsterdam?

No.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: Outputing part of memo field

2003-01-02 Thread Jochem van Dieten
Terry wrote:
> That also seems to break it in the middle of a word.

Sorry:
#REReplace(Left(String,150),"^(.* ).*","\1")#

Jochem

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



Re: Outputing part of memo field

2003-01-02 Thread Terry
That also seems to break it in the middle of a word.

*** REPLY SEPARATOR  ***

On 1/3/2003 at 2:07 AM Jochem van Dieten wrote:

>Terry wrote:
>> I need to output only about the 1st 150 characters of a memo field, but
>want to break it at a space and then have a link to the entire story.
>
>#REReplace(Left(String,150),"^(.* )","\1")#
>
>Jochem
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Outputing part of memo field

2003-01-02 Thread Tony Weeg
ok, so, how about this...





#Left(yourString,'#firstSpace#')# 
(continued)



:) tony

-Original Message-
From: Terry [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 8:05 PM
To: CF-Talk
Subject: RE: Outputing part of memo field


Thanks Tony, but it can't break in the middle of a word.  

*** REPLY SEPARATOR  ***

On 1/2/2003 at 7:59 PM Tony Weeg wrote:

>
>   #Left(yourString,'150')# href="theRestofTheStory.cfm">(continued)
>
>
>hth
>tony
>
>-Original Message-
>From: Terry [mailto:[EMAIL PROTECTED]] 
>Sent: Thursday, January 02, 2003 7:56 PM
>To: CF-Talk
>Subject: Outputing part of memo field
>
>
>I need to output only about the 1st 150 characters of a memo field, but
>want to break it at a space and then have a link to the entire story.
>
>I know I can figure this out, but if anyone can help me save a few
hours
>I'd appreciate it.
>
>thx
>
>
>
>
>

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



Re: Outputing part of memo field

2003-01-02 Thread Jochem van Dieten
Terry wrote:
> I need to output only about the 1st 150 characters of a memo field, but want to 
>break it at a space and then have a link to the entire story.

#REReplace(Left(String,150),"^(.* )","\1")#

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: (OT) 2002 Stats

2003-01-02 Thread Dave Lyons
Buy one and find out! Lol
Everyone needs to live in a loft, the chics dig them!
Weird stuff like that always happens to me
But its true
Kind of a goldmine for me too, being that all her model friends want
websites. No I just need to learn how to be a photographer and get a
good close up lens! hehe

Whats a boy too do..

dave



-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:58 PM
To: CF-Talk
Subject: RE: (OT) 2002 Stats

so do dream lofts really make people have dreams like that?

..tony :)

-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:52 PM
To: CF-Talk
Subject: RE: (OT) 2002 Stats


Jochem

Hey I met my gf because of doing websites and btw, she is a victoria
secrets model and a very big internet model:) if you ever wanna come
over and talk some cf there usually are 3 other single victoria secret
girls who come over all the time and run around half naked!
Why do u think I never get any work done and always ask stupid ?'s
Now if I could only teach "mini me" how to program, I'd be set:)

-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:45 PM
To: CF-Talk
Subject: Re: (OT) 2002 Stats

>I need a hobby^H^H^H^H^Hjob^H^H^Hlive^H^H^H^Hgirlfriend.

Jochem,

Don't you live in Amsterdam? I was only there for a few days, but I did
take 
note of some "hobbies" and "girlfriends"! ;)

Just a thought...

Dave.





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



RE: Outputing part of memo field

2003-01-02 Thread Terry
Thanks Tony, but it can't break in the middle of a word.  

*** REPLY SEPARATOR  ***

On 1/2/2003 at 7:59 PM Tony Weeg wrote:

>
>   #Left(yourString,'150')# href="theRestofTheStory.cfm">(continued)
>
>
>hth
>tony
>
>-Original Message-
>From: Terry [mailto:[EMAIL PROTECTED]] 
>Sent: Thursday, January 02, 2003 7:56 PM
>To: CF-Talk
>Subject: Outputing part of memo field
>
>
>I need to output only about the 1st 150 characters of a memo field, but
>want to break it at a space and then have a link to the entire story.
>
>I know I can figure this out, but if anyone can help me save a few hours
>I'd appreciate it.
>
>thx
>
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



EXPERTS: CF 4.5 with Apache 2.0??

2003-01-02 Thread Jas Panesar
Appreciate the link rob, Yeah, I have already seen that link, I had it sorta working 
with the cf 5 module talking to cf 4.5, but it's quite not the same.  I really wanted 
to stick with 4.5 till I was confident enough with MX to make the jump.

I'm really quite dissapointed that macromedia hasn't released something, I hope they 
do come out with support for it soon, or if they haven't let out enough source to get 
the job done ourselves.

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



RE: Outputing part of memo field

2003-01-02 Thread Tony Weeg

#Left(yourString,'150')# (continued)


hth
tony

-Original Message-
From: Terry [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:56 PM
To: CF-Talk
Subject: Outputing part of memo field


I need to output only about the 1st 150 characters of a memo field, but
want to break it at a space and then have a link to the entire story.

I know I can figure this out, but if anyone can help me save a few hours
I'd appreciate it.

thx




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



RE: (OT) 2002 Stats

2003-01-02 Thread Tony Weeg
so do dream lofts really make people have dreams like that?

...tony :)

-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:52 PM
To: CF-Talk
Subject: RE: (OT) 2002 Stats


Jochem

Hey I met my gf because of doing websites and btw, she is a victoria
secrets model and a very big internet model:) if you ever wanna come
over and talk some cf there usually are 3 other single victoria secret
girls who come over all the time and run around half naked!
Why do u think I never get any work done and always ask stupid ?'s
Now if I could only teach "mini me" how to program, I'd be set:)

-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:45 PM
To: CF-Talk
Subject: Re: (OT) 2002 Stats

>I need a hobby^H^H^H^H^Hjob^H^H^Hlive^H^H^H^Hgirlfriend.

Jochem,

Don't you live in Amsterdam? I was only there for a few days, but I did
take 
note of some "hobbies" and "girlfriends"! ;)

Just a thought...

Dave.




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



Outputing part of memo field

2003-01-02 Thread Terry
I need to output only about the 1st 150 characters of a memo field, but want to break 
it at a space and then have a link to the entire story.

I know I can figure this out, but if anyone can help me save a few hours I'd 
appreciate it.

thx



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



RE: (OT) 2002 Stats

2003-01-02 Thread Dave Lyons
Jochem

Hey I met my gf because of doing websites and btw, she is a victoria
secrets model and a very big internet model:) if you ever wanna come
over and talk some cf there usually are 3 other single victoria secret
girls who come over all the time and run around half naked!
Why do u think I never get any work done and always ask stupid ?'s
Now if I could only teach "mini me" how to program, I'd be set:)

-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:45 PM
To: CF-Talk
Subject: Re: (OT) 2002 Stats

>I need a hobby^H^H^H^H^Hjob^H^H^Hlive^H^H^H^Hgirlfriend.

Jochem,

Don't you live in Amsterdam? I was only there for a few days, but I did
take 
note of some "hobbies" and "girlfriends"! ;)

Just a thought...

Dave.



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



Re: (OT) 2002 Stats

2003-01-02 Thread Dave Carabetta
>I need a hobby^H^H^H^H^Hjob^H^H^Hlive^H^H^H^Hgirlfriend.

Jochem,

Don't you live in Amsterdam? I was only there for a few days, but I did take 
note of some "hobbies" and "girlfriends"! ;)

Just a thought...

Dave.


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



RE: EXPERTS: CF 4.5 with Apache 2.0??

2003-01-02 Thread Rob Rohan
I think this is one for cf 5
http://www.andrewernst.com/projects.html


Rob

-Original Message-
From: Jas Panesar [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 3:29 PM
To: CF-Talk
Subject: Fwd: EXPERTS: CF 4.5 with Apache 2.0??


Hi,

I was wondering if anyone has been able to get Coldfusion 4.5 
(mod_coldfusion) working with apache 2.x on Linux

>From everything I've researched, CF 4.5 only works with Apache 1.3.x, I 
was hoping to see if there was a recompiled version linux side that 
patches into Apache 2.0 properly

Much obliged,
Jas



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



RE: (OT) 2002 Stats

2003-01-02 Thread Dave Lyons
Do you have a price list that I can pass on to my web host for your
advertising fees?

They are a wonderful but I need to get a few sites together for them to
justify upgrading to cfmx.
They have a awesome deal for $20 a month and I'd sure like to get them
some more biz so I can get them to buy cfmx

Too funny
http://bjcweb.com/may02-smilepop-soapbox2.swf


Dave 


-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 3:43 PM
To: CF-Talk
Subject: (OT) 2002 Stats

I'd like to take a moment and thank everyone who's gone out of their way
to post
to the CF-Talk list. You have helped make this a major resource for the
CF
community and I'm sure the many thousands of people who read the list
would like
to say thanks.

Total Threads = 11,160
Total Messages = 56,029
Distinct posters = 2,483

Top 10 Posters
 1762 [EMAIL PROTECTED]
 1196 [EMAIL PROTECTED]
 1035 [EMAIL PROTECTED]
 923 [EMAIL PROTECTED]
 745 [EMAIL PROTECTED]
 717 [EMAIL PROTECTED]
 678 [EMAIL PROTECTED]
 677 [EMAIL PROTECTED]
 673 [EMAIL PROTECTED]
 638 [EMAIL PROTECTED]

Hopefully these statistics will get us some advertisers as well. :)

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=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: And the award goes to ....

2003-01-02 Thread Michael Dinowitz
That would be me ([EMAIL PROTECTED]). Joe's stats are based on his
personal email from the list and differ a bit from what the DB says for list
posts. Not by much though.


> Hi Joe,
>
> Are you managing "CF-Talk" <[EMAIL PROTECTED]>
> list?  Thanks.
>
> Don
>
> --- "Hoffman, Joe (NIH/CIT)" <[EMAIL PROTECTED]>
> wrote:
> > And for the most number of posts to
> > [EMAIL PROTECTED] by unique
> > email addresses out of 51,498 posts
> > ... the award goes to .
> >
> > Dave Watts  [EMAIL PROTECTED]
> >1673
> >
> > runners up include:
> > S. Isaac Dealey [EMAIL PROTECTED]
> >1121
> > Jochem van Dieten   [EMAIL PROTECTED]
> > 987
> > Matt Liotta [EMAIL PROTECTED]
> > 901
> > Mark A. Kruger - CFG[EMAIL PROTECTED]
> > 701
> > Tony Weeg   [EMAIL PROTECTED]
> > 681
> > Sean A Corfield [EMAIL PROTECTED]
> > 678
> > Stacy Young
> > [EMAIL PROTECTED]   635
> > Raymond Camden
> > [EMAIL PROTECTED]613
> > Jon Hall[EMAIL PROTECTED]
> > 594
> > [EMAIL PROTECTED]
> > [EMAIL PROTECTED]   578
> > Dick Applebaum  [EMAIL PROTECTED]
> > 552
> > Douglas Brown   [EMAIL PROTECTED]
> > 549
> > Jeffry Houser   [EMAIL PROTECTED]
> > 477
> > [EMAIL PROTECTED][EMAIL PROTECTED]
> > 470
> > Paul Giesenhagen[EMAIL PROTECTED]
> > 437
> > Bryan Stevenson
> > [EMAIL PROTECTED]437
> > Matt Robertson  [EMAIL PROTECTED]
> > 406
> > Lee Fuller  [EMAIL PROTECTED]
> > 343
> > Alex[EMAIL PROTECTED]
> > 340
> >
> >
> > Previous years results
> > --
> > CF-talk posts for the year 2001 total 41,474
> >
> > Dave Watts  [EMAIL PROTECTED] 1,101
> > Philip Arnold - ASP [EMAIL PROTECTED]   757
> > Howie Hamlin[EMAIL PROTECTED] 451
> > Jon Hall[EMAIL PROTECTED]   436
> > Dylan Bromby[EMAIL PROTECTED] 425
> > Bud [EMAIL PROTECTED]   394
> > Michael Lugassy [EMAIL PROTECTED]   370
> > Jeffry Houser   [EMAIL PROTECTED]   349
> > Thomas Chiverton[EMAIL PROTECTED]  332
> > Michael Dinowit [EMAIL PROTECTED]   323
> > Tony Schreiber  [EMAIL PROTECTED] 306
> > Raymond Camden  [EMAIL PROTECTED]257
> > Dick Applebaum  [EMAIL PROTECTED]  253
> > Bryan Love  [EMAIL PROTECTED]233
> > Russel Madere   [EMAIL PROTECTED]221
> > Jim McAtee  [EMAIL PROTECTED] 220
> > Jochem van Dieten   [EMAIL PROTECTED]   204
> > Duane Boudreau  [EMAIL PROTECTED]  201
> > Andy Ewings [EMAIL PROTECTED] 198
> > Dave Hannum [EMAIL PROTECTED]  197
> >
> >
> > CF-talk posts for the year 2000 total 48,444
> >
> > [EMAIL PROTECTED] 1,644
> >
> > others in the top 20 are :
> > [EMAIL PROTECTED] 517
> > [EMAIL PROTECTED] 460
> > [EMAIL PROTECTED] 426
> > [EMAIL PROTECTED]   416
> > [EMAIL PROTECTED] 399
> > [EMAIL PROTECTED] 386
> > [EMAIL PROTECTED] 365
> > [EMAIL PROTECTED] 364
> > [EMAIL PROTECTED] 355
> > [EMAIL PROTECTED] 322
> > [EMAIL PROTECTED]   307
> > [EMAIL PROTECTED] 306
> > [EMAIL PROTECTED] 302
> > [EMAIL PROTECTED] 292
> > [EMAIL PROTECTED] 290
> > [EMAIL PROTECTED]   288
> > [EMAIL PROTECTED]   279
> > [EMAIL PROTECTED] 269
> > [EMAIL PROTECTED]   266
> >
> > By unique 'from' email addresses, not checked for
> > duplicates.
> > Preliminary ... probably final ... especially since
> > there
> > were no chads and I have never lived in Florida.
> >
> >
> > 1999 cf-talk 40,427 posts by email
> >
> > FromAddressCnt
> > --
> > [EMAIL PROTECTED]833
> > [EMAIL PROTECTED] 551
> > [EMAIL PROTECTED]540
> > [EMAIL PROTECTED]499
> > [EMAIL PROTECTED] 477
> > [EMAIL PROTECTED]   446
> > [EMAIL PROTECTED]429
> > [EMAIL PROTECTED] 387
> > [EMAIL PROTECTED]369
> > [EMAIL PROTECTED]363
> >
> >
> > Joe Hoffman mailto:[EMAIL PROTECTED]
> > National Institutes of Health
> > Center for Information Technology
> > Division of Computer System Services
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFAS5 Problem

2003-01-02 Thread paul smith
Thanks!

best,  paul


At 02:07 PM 1/2/03 -0800, you wrote:
>Here ya go:
>You can enable the cfregistry tag by editing your registry.
>start > run > type regedit .
>
>Look in HKEY_LOCAL_MACHINE > SOFTWARE > Allaire > ColdFusion >
>CurrentVersion > Server.
>You should find a registry entry labeled EnableCFREGISTRY and set the
>value to 1.
>
>Restart your coldfusion server and you should then be able to access
>your coldfusion server.
>
>You can still keep your CFREGISTRY tag disabled. Just be sure that your
>'Unsecured Tags Directory' has your CFIDE\Administrator directory
>specifed.
>
> >From my original post at:
>http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=7&threa
>did=364482&highlight_key=y
>
>
>Hope this gets you back up and running!
>
>
>-Original Message-
>From: Robert Bailey [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, January 02, 2003 2:01 PM
>To: CF-Talk
>Subject: RE: CFAS5 Problem
>
>I had this problem before, there is something in the registry that I can
>not find, check the Macromedia forums, that is where I got my answer
>
>-Original Message-
>From: paul smith [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, January 02, 2003 8:35 AM
>To: CF-Talk
>Subject: CFAS5 Problem
>
>In the Security part of CF Admin, I unchecked/disabled the CFREGISTRY
>tag.
>
>Now I cannot get into CF Admin!
>
>Suggestions?
>
>best,  paul
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Tutorials

2003-01-02 Thread Peter Tilbrook
Further to this a good site for CF related bookamrks check out

http://www.cfbookmark.com/

They've used Fusebox too :)

-Original Message-
From: Peter Tilbrook [mailto:[EMAIL PROTECTED]]
Sent: Friday, 3 January 2003 10:07 AM
To: CF-Talk
Subject: RE: Tutorials


http://www.easycfm.com

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: Friday, 3 January 2003 4:48 AM
To: CF-Talk
Subject: Tutorials


I've got a couple of high school kids who dropped by the office the
other day. They are taking a class on web development. After speaking
with them for a couple of hours they are really jazzed about getting
into CF, but all of the tutorials that they have seen up til now are of
a more advanced nature. Does anyone know a good "ground-up" tutorial
site they could tap into?

Cutter



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



Re: And the award goes to ....

2003-01-02 Thread Li Chunshen \(Don\)
Hi Joe,

Are you managing "CF-Talk" <[EMAIL PROTECTED]>
list?  Thanks.

Don

--- "Hoffman, Joe (NIH/CIT)" <[EMAIL PROTECTED]>
wrote:
> And for the most number of posts to 
> [EMAIL PROTECTED] by unique 
> email addresses out of 51,498 posts
> ... the award goes to .
> 
> Dave Watts  [EMAIL PROTECTED]  
>1673
> 
> runners up include:
> S. Isaac Dealey [EMAIL PROTECTED] 
>1121
> Jochem van Dieten   [EMAIL PROTECTED]  
> 987
> Matt Liotta [EMAIL PROTECTED]
> 901
> Mark A. Kruger - CFG[EMAIL PROTECTED]  
> 701
> Tony Weeg   [EMAIL PROTECTED]
> 681
> Sean A Corfield [EMAIL PROTECTED]   
> 678
> Stacy Young
> [EMAIL PROTECTED]   635
> Raymond Camden 
> [EMAIL PROTECTED]613
> Jon Hall[EMAIL PROTECTED]  
> 594
> [EMAIL PROTECTED] 
> [EMAIL PROTECTED]   578
> Dick Applebaum  [EMAIL PROTECTED]  
> 552
> Douglas Brown   [EMAIL PROTECTED] 
> 549
> Jeffry Houser   [EMAIL PROTECTED]  
> 477
> [EMAIL PROTECTED][EMAIL PROTECTED]
> 470
> Paul Giesenhagen[EMAIL PROTECTED]
> 437
> Bryan Stevenson
> [EMAIL PROTECTED]437
> Matt Robertson  [EMAIL PROTECTED]   
> 406
> Lee Fuller  [EMAIL PROTECTED] 
> 343
> Alex[EMAIL PROTECTED]  
> 340
> 
> 
> Previous years results
> --
> CF-talk posts for the year 2001 total 41,474
> 
> Dave Watts  [EMAIL PROTECTED] 1,101
> Philip Arnold - ASP [EMAIL PROTECTED]   757
> Howie Hamlin[EMAIL PROTECTED] 451
> Jon Hall[EMAIL PROTECTED]   436
> Dylan Bromby[EMAIL PROTECTED] 425
> Bud [EMAIL PROTECTED]   394
> Michael Lugassy [EMAIL PROTECTED]   370
> Jeffry Houser   [EMAIL PROTECTED]   349
> Thomas Chiverton[EMAIL PROTECTED]  332
> Michael Dinowit [EMAIL PROTECTED]   323
> Tony Schreiber  [EMAIL PROTECTED] 306
> Raymond Camden  [EMAIL PROTECTED]257
> Dick Applebaum  [EMAIL PROTECTED]  253
> Bryan Love  [EMAIL PROTECTED]233
> Russel Madere   [EMAIL PROTECTED]221
> Jim McAtee  [EMAIL PROTECTED] 220
> Jochem van Dieten   [EMAIL PROTECTED]   204
> Duane Boudreau  [EMAIL PROTECTED]  201
> Andy Ewings [EMAIL PROTECTED] 198
> Dave Hannum [EMAIL PROTECTED]  197
> 
> 
> CF-talk posts for the year 2000 total 48,444
> 
> [EMAIL PROTECTED]1,644
> 
> others in the top 20 are :
> [EMAIL PROTECTED]517
> [EMAIL PROTECTED]   460
> [EMAIL PROTECTED]   426
> [EMAIL PROTECTED]  416
> [EMAIL PROTECTED]   399
> [EMAIL PROTECTED]  386
> [EMAIL PROTECTED] 365
> [EMAIL PROTECTED]  364
> [EMAIL PROTECTED]  355
> [EMAIL PROTECTED]322
> [EMAIL PROTECTED]307
> [EMAIL PROTECTED] 306
> [EMAIL PROTECTED]  302
> [EMAIL PROTECTED]  292
> [EMAIL PROTECTED]  290
> [EMAIL PROTECTED]  288
> [EMAIL PROTECTED] 279
> [EMAIL PROTECTED] 269
> [EMAIL PROTECTED]  266
> 
> By unique 'from' email addresses, not checked for
> duplicates.
> Preliminary ... probably final ... especially since
> there 
> were no chads and I have never lived in Florida.
> 
> 
> 1999 cf-talk 40,427 posts by email
> 
> FromAddress  Cnt
> --
> [EMAIL PROTECTED]   833
> [EMAIL PROTECTED] 551
> [EMAIL PROTECTED]540
> [EMAIL PROTECTED]499
> [EMAIL PROTECTED] 477
> [EMAIL PROTECTED]   446
> [EMAIL PROTECTED]429
> [EMAIL PROTECTED] 387
> [EMAIL PROTECTED]369
> [EMAIL PROTECTED]363
> 
> 
> Joe Hoffman mailto:[EMAIL PROTECTED]
> National Institutes of Health 
> Center for Information Technology 
> Division of Computer System Services
>

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



Re: (OT) 2002 Stats

2003-01-02 Thread Jochem van Dieten
Michael Dinowitz wrote:
> I'd like to take a moment and thank everyone who's gone out of their way to post
> to the CF-Talk list. You have helped make this a major resource for the CF
> community and I'm sure the many thousands of people who read the list would like
> to say thanks.
> 
> Total Threads = 11,160
> Total Messages = 56,029
> Distinct posters = 2,483
> 
> Top 10 Posters
>  1762 [EMAIL PROTECTED]
>  1196 [EMAIL PROTECTED]
>  1035 [EMAIL PROTECTED]

I need a hobby^H^H^H^H^Hjob^H^H^Hlive^H^H^H^Hgirlfriend.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: Some idea about the Efficiency of UDFs

2003-01-02 Thread Li Chunshen \(Don\)
When I say "secretary", I meant it jokingly and
implied, I would appreciate it if some else would do
it, unfortunately taken literally.  But Matt Liotta
seems such a person that he prefers to refer others as
objects
"he is
> interested in and he didn't submit a request for it.
> "
If you know my name use my NAME or you don't have to
talk about me (I didn't ask you to).  I don't like
individuals belittling others.  
 
--- Jerry Johnson <[EMAIL PROTECTED]> wrote:
> Typing too fast again.
> 
>  ,3,"#chr(10)#")>
> 
> =)
> 
> Jerry Johnson
> 
> 
> 
> >>> [EMAIL PROTECTED] 01/02/03 02:37PM >>>
> Does anyone else want to chip in for some panty
> untwisters.
> 
> They definitely seem needed.
> 
> Jerry Johnson
> 
> >>> [EMAIL PROTECTED] 01/02/03 02:13PM >>>
> Um, no it's not. You just read on the mailing list
> what feature he is
> interested in and he didn't submit a request for it.
> 
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/ 
> 888-408-0900 x901
> 
> > -Original Message-
> > From: Christian Cantrell
> [mailto:[EMAIL PROTECTED]] 
> > Sent: Thursday, January 02, 2003 1:59 PM
> > To: CF-Talk
> > Subject: Re: Some idea about the Efficiency of
> UDFs
> > 
> > Well, it's hard for us to know that you are
> interested in a feature if
> > you don't submit a request for it.  I don't
> consider submitting
> feature
> > requests to be secretary work, so I'll be happy to
> take care of it.
> > 
> > Christian
> > 
> > On Thursday, January 2, 2003, at 12:10 PM, Li
> Chunshen ((Don)) wrote:
> > 
> > > Christian,
> > >
> > > No, I didn't submit it (I don't like to be a
> > > secretary), you please, no, you are not a
> secretary
> > > either :) for that may be part of your job.
> > > Thanks.
> > >
> > > Don Li
> > >
> > > --- Christian Cantrell <[EMAIL PROTECTED]>
> > > wrote:
> > >> Good point.  You could always call the other
> > >> functions using the same
> > >> routine that CFM pages would be expected to
> use, but
> > >> I can see where it
> > >> would be easier (more maintainable) to keep
> several
> > >> functions in a
> > >> single file.  I have several functions that
> call
> > >> other functions, and
> > >> many of them are only one or two lines, so I'm
> sure
> > >> it would get
> > >> annoying having directories full of files with
> > >> functions containing
> > >> only a single line.  The idea Jim proposed gets
> > >> around this limitation
> > >> nicely (dir.file.function).
> > >>
> > >> Thanks for the feedback, everyone.  Li, did you
> > >> submit this, or shall I?
> > >>
> > >> Christian
> > >>
> > >> On Thursday, January 2, 2003, at 09:34 AM, Ben
> Doom
> > >> wrote:
> > >>
> > >>> One thing to think about:  CF probably
> shouldn't
> > >> require one and only
> > >>> one
> > >>> UDF per file.  Occasionally it makes sense for
> me
> > >> to write UDFs that
> > >>> call
> > >>> other UDFs (either because the functionality
> > >> already exists, will be
> > >>> needed
> > >>> elsewhere, or it just makes the 'main' UDF
> easier
> > >> to read) and I
> > >>> generally
> > >>> include those subroutines in the same file. 
> If I
> > >> had to have a
> > >>> separate
> > >>> file for each, it would be rather confusing
> IMHO.
> > >>>
> > >>>
> > >>> --  Ben Doom
> > >>> Programmer & General Lackey
> > >>> Moonbow Software, Inc
> > >>>
> > >>> -Original Message-
> > >>> From: Christian Cantrell
> > >> [mailto:[EMAIL PROTECTED]] 
> > >>> Sent: Wednesday, January 01, 2003 6:01 PM
> > >>> To: CF-Talk
> > >>> Subject: Re: Some idea about the Efficiency of
> > >> UDFs
> > >>>
> > >>>
> > >>> Interesting idea.  So how exactly would this
> work?
> > >>  Would ColdFusion
> > >>> expect one function per file, with the
> requirement
> > >> that the file and
> > >>> the function have the same name?  Then you
> could
> > >> call any arbitrary
> > >>> UDF, and the CF server would look in the
> proper
> > >> directory for the right
> > >>> file, then execute the function in that file. 
> How
> > >> else could this
> > >>> work?
> > >>>
> > >>> Let's flesh it out a bit here, then I invite
> you
> > >> to submit your idea to
> > >>> Macromedia at the following URL:
> > >>>
> > >>>
> > >>
> > >
>
http://www.macromedia.com/support/email/wishform/?6213=3
> 
> > >>>
> > >>> Christian
> > >>>
> > >>> On Wednesday, January 1, 2003, at 04:40 PM, Li
> > >> Chunshen ((Don)) wrote:
> > >>>
> >  According to Macromedia's CFMX References on
> > >> Using
> >  UDFs effectively:
> > 
> >  "Consider the following techniques for making
> > >> your
> >  functions available to your ColdFusion pages:
> > 
> >  If you consistently call a small number of
> UDFs,
> >  consider putting their definitions on the
> >  Application.cfm page.
> >  If you call UDFs in only a few of your
> > >> application
> >  pages, do not include their definitions in
> >  Application.cfm.
> >  If you use many UDFs, put their definitions
> on
> > >> one or
> 

Fwd: EXPERTS: CF 4.5 with Apache 2.0??

2003-01-02 Thread Jas Panesar
Hi,

I was wondering if anyone has been able to get Coldfusion 4.5 
(mod_coldfusion) working with apache 2.x on Linux

>From everything I've researched, CF 4.5 only works with Apache 1.3.x, I 
was hoping to see if there was a recompiled version linux side that 
patches into Apache 2.0 properly

Much obliged,
Jas





RE: (OT) 2002 Stats

2003-01-02 Thread Jim Campbell
Well, I suppose it's good to have something productive to do at work instead
of surfing for porn and playing Elf Bowling.  :)

- Jim

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 5:01 PM
To: CF-Talk
Subject: RE: (OT) 2002 Stats


What is really scary is that most of the people on this list are also
top participators on many other lists too.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 3:43 PM
> To: CF-Talk
> Subject: (OT) 2002 Stats
>
> I'd like to take a moment and thank everyone who's gone out of their
way
> to post
> to the CF-Talk list. You have helped make this a major resource for
the CF
> community and I'm sure the many thousands of people who read the list
> would like
> to say thanks.
>
> Total Threads = 11,160
> Total Messages = 56,029
> Distinct posters = 2,483
>
> Top 10 Posters
>  1762 [EMAIL PROTECTED]
>  1196 [EMAIL PROTECTED]
>  1035 [EMAIL PROTECTED]
>  923 [EMAIL PROTECTED]
>  745 [EMAIL PROTECTED]
>  717 [EMAIL PROTECTED]
>  678 [EMAIL PROTECTED]
>  677 [EMAIL PROTECTED]
>  673 [EMAIL PROTECTED]
>  638 [EMAIL PROTECTED]
>
> Hopefully these statistics will get us some advertisers as well. :)
>
> 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=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Errors: can not locate info on

2003-01-02 Thread Peter Tilbrook
How are you storing your Client variables? Not in the registry (the default)
I hope.

If you are storing them in the registry it might be getting too big.

If you are storing them in a database (not Access I hope) check that it is
not corrupted.

>>

The first (in the application log): Synchronization error. Please paste
the text of this error into a mail message to the system administrator.
The service timed-out waiting for the operating system's attempt to
guarantee one thread mutually exclusive access to generate a unique Cold
Fusion client ID.

The second (in the server log): The mutex timed-out in
GenerateUniqueClient().

When these errors were encountered, new visitors to the site could not
view it because the client variables were not available to them.
>>


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



RE: Tutorials

2003-01-02 Thread Peter Tilbrook
http://www.easycfm.com

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: Friday, 3 January 2003 4:48 AM
To: CF-Talk
Subject: Tutorials


I've got a couple of high school kids who dropped by the office the
other day. They are taking a class on web development. After speaking
with them for a couple of hours they are really jazzed about getting
into CF, but all of the tutorials that they have seen up til now are of
a more advanced nature. Does anyone know a good "ground-up" tutorial
site they could tap into?

Cutter


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



RE: (OT) 2002 Stats

2003-01-02 Thread Matt Liotta
What is really scary is that most of the people on this list are also
top participators on many other lists too.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 3:43 PM
> To: CF-Talk
> Subject: (OT) 2002 Stats
> 
> I'd like to take a moment and thank everyone who's gone out of their
way
> to post
> to the CF-Talk list. You have helped make this a major resource for
the CF
> community and I'm sure the many thousands of people who read the list
> would like
> to say thanks.
> 
> Total Threads = 11,160
> Total Messages = 56,029
> Distinct posters = 2,483
> 
> Top 10 Posters
>  1762 [EMAIL PROTECTED]
>  1196 [EMAIL PROTECTED]
>  1035 [EMAIL PROTECTED]
>  923 [EMAIL PROTECTED]
>  745 [EMAIL PROTECTED]
>  717 [EMAIL PROTECTED]
>  678 [EMAIL PROTECTED]
>  677 [EMAIL PROTECTED]
>  673 [EMAIL PROTECTED]
>  638 [EMAIL PROTECTED]
> 
> Hopefully these statistics will get us some advertisers as well. :)
> 
> 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=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: (OT) 2002 Stats

2003-01-02 Thread Mark A. Kruger - CFG
I like 'im though - dogone his chatty hide .

-Original Message-
From: Stacy Young [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 4:07 PM
To: CF-Talk
Subject: RE: (OT) 2002 Stats


Jebus Dave, you've definitely got the gift of gab.  :-)

-Stace

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 3:43 PM
To: CF-Talk
Subject: (OT) 2002 Stats

I'd like to take a moment and thank everyone who's gone out of their way to
post
to the CF-Talk list. You have helped make this a major resource for the CF
community and I'm sure the many thousands of people who read the list would
like
to say thanks.

Total Threads = 11,160
Total Messages = 56,029
Distinct posters = 2,483

Top 10 Posters
 1762 [EMAIL PROTECTED]
 1196 [EMAIL PROTECTED]
 1035 [EMAIL PROTECTED]
 923 [EMAIL PROTECTED]
 745 [EMAIL PROTECTED]
 717 [EMAIL PROTECTED]
 678 [EMAIL PROTECTED]
 677 [EMAIL PROTECTED]
 673 [EMAIL PROTECTED]
 638 [EMAIL PROTECTED]

Hopefully these statistics will get us some advertisers as well. :)

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=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



CFMX database file

2003-01-02 Thread Ryan Mitchell
Hey

Which file holds the info about the databases set up in the CFMX
administrator?

Ryan Mitchell

e: [EMAIL PROTECTED]
w: www.rtnetworks.net
t: 07866569916


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



RE: grrrrr ... CFSchedule

2003-01-02 Thread Blum, Jason (SAA)
I have been using probes for all my scheduled tasks since moving up to
MX.  Probes are under tools in CF5, but I don't know if they offer the
same functionality.

I realize of course they are probably the same underlying engine - but
for some reason, I have not experienced any problem with probes even
though they are the same tasks as were not being run as scheduled tasks.

Well I have seen one problem - or quirk: probes that I have long since
deleted still show up as failing in the MX Application log.  I should
figure out why, but keeps getting pushed to the back burner given that
everything seems to be working fine.

-j




-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 3:51 PM
To: CF-Talk
Subject: RE: gr ... CFSchedule

I have always tested my schedule scripts by having it email me at the
end for testing, and executed it with CFSCHEDULE the first time around
just to make sure it was completing. Very helpful when you are on a
shared host and do not have access to the admin to make sure it was
added correctly

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 12:48 PM
To: CF-Talk
Subject: RE: gr ... CFSchedule

Howard Owens wrote:

>Any suggestions on why the scheduled events trigger but don't >produce
any results?

I've always been able to get it to work, but the formula for success has
not always been entirely straightforward.

This may sound strange at first, but have you tried waiting for 24 hours
to see if the thing kicks in?

I've had my server monitor running for months on my home-based cf
server.  Then I had to fiddle with something in cfschedule (I forget
what, exactly) for another task and suddenly the thing went dead as a
doornail.  Couldn't get it to restart despite tinkering with all kinds
of stuff.

After a bit I gave up and went on to other things, but was very
surprised to see it had fired up again the next day, beginning at the
start time of the event -- despite the fact that the starting *date* was
in the past.

I've also had success using '' action="UPDATE" '' in my cfschedule
statement.

All of the above is for CF 4.5.1sp2.  As an aside MX scheduling behaved
just fine after an upgrade overtop of cf 4.5x.

Shots in the dark, maybe, but who knows...

---
Matt Robertson, MSB Designs, Inc.
http://mysecretbase.com - Retail
http://foohbar.org - ColdFusion Tools
---

 
 


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



RE: CFAS5 Problem

2003-01-02 Thread Robert Bailey
Here ya go:
You can enable the cfregistry tag by editing your registry. 
start > run > type regedit .

Look in HKEY_LOCAL_MACHINE > SOFTWARE > Allaire > ColdFusion >
CurrentVersion > Server.
You should find a registry entry labeled EnableCFREGISTRY and set the
value to 1.

Restart your coldfusion server and you should then be able to access
your coldfusion server.

You can still keep your CFREGISTRY tag disabled. Just be sure that your
'Unsecured Tags Directory' has your CFIDE\Administrator directory
specifed.

>From my original post at:
http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=7&threa
did=364482&highlight_key=y


Hope this gets you back up and running!


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 2:01 PM
To: CF-Talk
Subject: RE: CFAS5 Problem

I had this problem before, there is something in the registry that I can
not find, check the Macromedia forums, that is where I got my answer

-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 8:35 AM
To: CF-Talk
Subject: CFAS5 Problem

In the Security part of CF Admin, I unchecked/disabled the CFREGISTRY
tag.

Now I cannot get into CF Admin!

Suggestions?

best,  paul



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



RE: (OT) 2002 Stats

2003-01-02 Thread Stacy Young
Jebus Dave, you've definitely got the gift of gab.  :-)

-Stace

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 3:43 PM
To: CF-Talk
Subject: (OT) 2002 Stats

I'd like to take a moment and thank everyone who's gone out of their way to
post
to the CF-Talk list. You have helped make this a major resource for the CF
community and I'm sure the many thousands of people who read the list would
like
to say thanks.

Total Threads = 11,160
Total Messages = 56,029
Distinct posters = 2,483

Top 10 Posters
 1762 [EMAIL PROTECTED]
 1196 [EMAIL PROTECTED]
 1035 [EMAIL PROTECTED]
 923 [EMAIL PROTECTED]
 745 [EMAIL PROTECTED]
 717 [EMAIL PROTECTED]
 678 [EMAIL PROTECTED]
 677 [EMAIL PROTECTED]
 673 [EMAIL PROTECTED]
 638 [EMAIL PROTECTED]

Hopefully these statistics will get us some advertisers as well. :)

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=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: FLASH with CF question?

2003-01-02 Thread Samuel Neff
Why don't you wait for a response on one list before posting it to more?
Just received three of these.

> -Original Message-
> From: Ciliotta, Mario [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 4:48 PM
> To: CF-Talk
> Subject: FLASH with CF question?
> 
> 
> We have developed an application that displays a SWF file on 
> a html page.  The application displays both static and 
> dynamic content via CF.  When we go to print only the static 
> content appears.  
> 
> We are using IE 5.0 with Flash 5 plug in.  The problem 
> happens either when I click FILE>PRINT or if I right click in 
> the Flash movie and click print. It does work with Flash 6.0 
> but not all my users have this yet.
> 
> If anyone has any ideas, that would be great.
> 
> Thanks
> 
> Mario
> 


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



Re: And the award goes to ....

2003-01-02 Thread Bud
On 1/2/03, Hoffman, Joe (NIH/CIT) penned:
>And for the most number of posts to
>[EMAIL PROTECTED] by unique
>email addresses out of 51,498 posts
>... the award goes to .
>
>Dave Watts  [EMAIL PROTECTED]  1673

LOL

Well, I fulfilled one 2002 New Year's resolution by removing myself 
from that list. :)
-- 

Bud Schneehagen - Tropical Web Creations

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



RE: CFAS5 Problem

2003-01-02 Thread Robert Bailey
I had this problem before, there is something in the registry that I can
not find, check the Macromedia forums, that is where I got my answer

-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 8:35 AM
To: CF-Talk
Subject: CFAS5 Problem

In the Security part of CF Admin, I unchecked/disabled the CFREGISTRY
tag.

Now I cannot get into CF Admin!

Suggestions?

best,  paul


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



RE: Error saying "test.passwords" table not found...That's because there's not one!

2003-01-02 Thread Peter Tilbrook
It must be picking up the #DSN# variable from somewhere. If you haven't got
an application.cfm file in the same folder as the template with the query CF
will look further up the tree - all the way to the root folder in fact. Try
hardcoding the DSN to see if that fixes it.

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED]]
Sent: Friday, 3 January 2003 8:27 AM
To: CF-Talk
Subject: Error saying "test.passwords" table not found...That's because
there's not one!


Hi, all...Happy New Year...

I've been working with CF (4.5.2) and MySQL (4.0.7 gamma)
for a few weeks on my development box (Win 2000 Pro)
and have just setup MySQL and MyODBC on my
Win 2000 Server.

Everything seemed fine until I tried to login on an app that
I built to run on that server.  I get the error that

[MySQL][ODBC 3.51 Driver][mysqld-4.0.7-gamma-nt] Table 'test.passwords'
doesn't exist

That's true, there is no table called 'passwords' in the test db (the test
db was something
installed by PremiumSoft's Navicat or perhaps by MySQL itself).

The fact that there is not 'passwords' table in the test db shouldn't
matter, because
that't not even the datasource that I'm querying with CF..I'm querying
'rchnetwork-mainoffice' db
and 'passwords' table is in there.

Why would it be trying to look in to the 'test' datasource for the
'passwords' table
and not in the 'rchnetwork-mainoffice' datasource during the query?

The query has been running fine on my development box...


 Select UserID
   from Passwords P
  where P.Password='#Form.Password#'


Clues?

Thanks,

Rick



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



Re: And the award goes to ....

2003-01-02 Thread Michael Dinowitz
The database of posts shows a slightly different story, but Dave's still the
undisputed king. :)
http://www.houseoffusion.com/lists.cfm?link=m:4:20169:101901


> And for the most number of posts to
> [EMAIL PROTECTED] by unique
> email addresses out of 51,498 posts
> ... the award goes to .
>
> Dave Watts  [EMAIL PROTECTED]  1673
>
> runners up include:
> S. Isaac Dealey [EMAIL PROTECTED] 1121
> Jochem van Dieten   [EMAIL PROTECTED]   987
> Matt Liotta [EMAIL PROTECTED] 901
> Mark A. Kruger - CFG[EMAIL PROTECTED]   701
> Tony Weeg   [EMAIL PROTECTED] 681
> Sean A Corfield [EMAIL PROTECTED]678
> Stacy Young [EMAIL PROTECTED]   635
> Raymond Camden  [EMAIL PROTECTED]613
> Jon Hall[EMAIL PROTECTED]   594
> [EMAIL PROTECTED]  [EMAIL PROTECTED]   578
> Dick Applebaum  [EMAIL PROTECTED]   552
> Douglas Brown   [EMAIL PROTECTED]  549
> Jeffry Houser   [EMAIL PROTECTED]   477
> [EMAIL PROTECTED][EMAIL PROTECTED] 470
> Paul Giesenhagen[EMAIL PROTECTED] 437
> Bryan Stevenson [EMAIL PROTECTED]437
> Matt Robertson  [EMAIL PROTECTED]406
> Lee Fuller  [EMAIL PROTECTED]  343
> Alex[EMAIL PROTECTED]   340
>
>
> Previous years results
> --
> CF-talk posts for the year 2001 total 41,474
>
> Dave Watts  [EMAIL PROTECTED] 1,101
> Philip Arnold - ASP [EMAIL PROTECTED]   757
> Howie Hamlin[EMAIL PROTECTED] 451
> Jon Hall[EMAIL PROTECTED]   436
> Dylan Bromby[EMAIL PROTECTED] 425
> Bud [EMAIL PROTECTED]   394
> Michael Lugassy [EMAIL PROTECTED]   370
> Jeffry Houser   [EMAIL PROTECTED]   349
> Thomas Chiverton[EMAIL PROTECTED]  332
> Michael Dinowit [EMAIL PROTECTED]   323
> Tony Schreiber  [EMAIL PROTECTED] 306
> Raymond Camden  [EMAIL PROTECTED]257
> Dick Applebaum  [EMAIL PROTECTED]  253
> Bryan Love  [EMAIL PROTECTED]233
> Russel Madere   [EMAIL PROTECTED]221
> Jim McAtee  [EMAIL PROTECTED] 220
> Jochem van Dieten   [EMAIL PROTECTED]   204
> Duane Boudreau  [EMAIL PROTECTED]  201
> Andy Ewings [EMAIL PROTECTED] 198
> Dave Hannum [EMAIL PROTECTED]  197
>
>
> CF-talk posts for the year 2000 total 48,444
>
> [EMAIL PROTECTED] 1,644
>
> others in the top 20 are :
> [EMAIL PROTECTED] 517
> [EMAIL PROTECTED] 460
> [EMAIL PROTECTED] 426
> [EMAIL PROTECTED]   416
> [EMAIL PROTECTED] 399
> [EMAIL PROTECTED] 386
> [EMAIL PROTECTED] 365
> [EMAIL PROTECTED] 364
> [EMAIL PROTECTED] 355
> [EMAIL PROTECTED] 322
> [EMAIL PROTECTED]   307
> [EMAIL PROTECTED] 306
> [EMAIL PROTECTED] 302
> [EMAIL PROTECTED] 292
> [EMAIL PROTECTED] 290
> [EMAIL PROTECTED]   288
> [EMAIL PROTECTED]   279
> [EMAIL PROTECTED] 269
> [EMAIL PROTECTED]   266
>
> By unique 'from' email addresses, not checked for duplicates.
> Preliminary ... probably final ... especially since there
> were no chads and I have never lived in Florida.
>
>
> 1999 cf-talk 40,427 posts by email
>
> FromAddressCnt
> --
> [EMAIL PROTECTED]833
> [EMAIL PROTECTED] 551
> [EMAIL PROTECTED]540
> [EMAIL PROTECTED]499
> [EMAIL PROTECTED] 477
> [EMAIL PROTECTED]   446
> [EMAIL PROTECTED]429
> [EMAIL PROTECTED] 387
> [EMAIL PROTECTED]369
> [EMAIL PROTECTED]363
>
>
> Joe Hoffman mailto:[EMAIL PROTECTED]
> National Institutes of Health
> Center for Information Technology
> Division of Computer System Services
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



FLASH with CF question?

2003-01-02 Thread Ciliotta, Mario
We have developed an application that displays a SWF file on a html page.  The 
application displays both static and dynamic content via CF.  When we go to print only 
the static content appears.  

We are using IE 5.0 with Flash 5 plug in.  The problem happens either when I click 
FILE>PRINT or if I right click in the Flash movie and click print. It does work with 
Flash 6.0 but not all my users have this yet.

If anyone has any ideas, that would be great.

Thanks

Mario

This message is for the named person's use only. It may contain sensitive and private 
proprietary or legally privileged information. No confidentiality or privilege is 
waived or lost by any mistransmission. If you are not the intended recipient, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender. You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. CREDIT SUISSE GROUP and each legal entity in the CREDIT SUISSE FIRST BOSTON 
or CREDIT SUISSE ASSET MANAGEMENT business units of CREDIT SUISSE FIRST BOSTON reserve 
the right to monitor all e-mail communications through its networks. Any views 
expressed in this message are those of the individual sender, except where the message 
states otherwise and the sender is authorized to state them to be the views of any 
such entity.
Unless otherwise stated, any pricing information given in this message is indicative  
only, is subject to change and does not constitute an offer to deal at any price 
quoted. Any reference to the terms of executed transactions should be treated as  
preliminary only and subject to our formal written confirmation.


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



RE: Looking for a great CFMX book to buy!

2003-01-02 Thread Peter Tilbrook
Check out the excellent books by Ben Forta et al
(http://www.forta.com/books/)

-Original Message-
From: Che Vilnonis [mailto:[EMAIL PROTECTED]]
Sent: Friday, 3 January 2003 1:30 AM
To: CF-Talk
Subject: Looking for a great CFMX book to buy!


I really enjoyed the "Professional CF 5.0" by WROX Press.
Now I'm gonna dive into MX.
Can anyone recommend a GREAT book for CFMX?

Thanks.

Ché Vilnonis
Application Developer
Advertising Systems Incorporated
8470C Remington Avenue
Pennsauken, NJ 08110
p: 856.488.2211
f: 856.488.1990
www.asitv.com


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



RE: Project manager tool

2003-01-02 Thread Luis Lebron
What features are you looking for?

-Original Message-
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 11:32 AM
To: CF-Talk
Subject: Project manager tool


Anyone has any suggestions for a decent project management tool out there,
any suggestions must list prices and be CF based. No ASP(application service
provider that is)

Robert Everland III
Web Developer Extraordinaire
Dixon Ticonderoga Company
http://www.dixonusa.com 

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



RE: Error saying "test.passwords" table not found...That's because there's not one!

2003-01-02 Thread Rick Faircloth
Duh!

Nevermind...

I checked the ODBC datasource setup and had put the correct
Data Source Name 'rchnetwork-mainoffice' in the 'Data Source Name'
field, but in the 'Database Name' field, I didn't change it from 'test'.

Duh!  I say, duh!

(Not a good way to start off the new year!)

Rick


-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 4:27 PM
To: CF-Talk
Subject: Error saying "test.passwords" table not found...That's because
there's not one!


Hi, all...Happy New Year...

I've been working with CF (4.5.2) and MySQL (4.0.7 gamma)
for a few weeks on my development box (Win 2000 Pro)
and have just setup MySQL and MyODBC on my
Win 2000 Server.

Everything seemed fine until I tried to login on an app that
I built to run on that server.  I get the error that

[MySQL][ODBC 3.51 Driver][mysqld-4.0.7-gamma-nt] Table 'test.passwords'
doesn't exist

That's true, there is no table called 'passwords' in the test db (the test
db was something
installed by PremiumSoft's Navicat or perhaps by MySQL itself).

The fact that there is not 'passwords' table in the test db shouldn't
matter, because
that't not even the datasource that I'm querying with CF..I'm querying
'rchnetwork-mainoffice' db
and 'passwords' table is in there.

Why would it be trying to look in to the 'test' datasource for the
'passwords' table
and not in the 'rchnetwork-mainoffice' datasource during the query?

The query has been running fine on my development box...


 Select UserID
   from Passwords P
  where P.Password='#Form.Password#'


Clues?

Thanks,

Rick



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



Error saying "test.passwords" table not found...That's because there's not one!

2003-01-02 Thread Rick Faircloth
Hi, all...Happy New Year...

I've been working with CF (4.5.2) and MySQL (4.0.7 gamma)
for a few weeks on my development box (Win 2000 Pro)
and have just setup MySQL and MyODBC on my
Win 2000 Server.

Everything seemed fine until I tried to login on an app that
I built to run on that server.  I get the error that

[MySQL][ODBC 3.51 Driver][mysqld-4.0.7-gamma-nt] Table 'test.passwords'
doesn't exist

That's true, there is no table called 'passwords' in the test db (the test
db was something
installed by PremiumSoft's Navicat or perhaps by MySQL itself).

The fact that there is not 'passwords' table in the test db shouldn't
matter, because
that't not even the datasource that I'm querying with CF..I'm querying
'rchnetwork-mainoffice' db
and 'passwords' table is in there.

Why would it be trying to look in to the 'test' datasource for the
'passwords' table
and not in the 'rchnetwork-mainoffice' datasource during the query?

The query has been running fine on my development box...


 Select UserID
   from Passwords P
  where P.Password='#Form.Password#'


Clues?

Thanks,

Rick


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



And the award goes to ....

2003-01-02 Thread Hoffman, Joe (NIH/CIT)
And for the most number of posts to 
[EMAIL PROTECTED] by unique 
email addresses out of 51,498 posts
... the award goes to .

Dave Watts  [EMAIL PROTECTED]  1673

runners up include:
S. Isaac Dealey [EMAIL PROTECTED] 1121
Jochem van Dieten   [EMAIL PROTECTED]   987
Matt Liotta [EMAIL PROTECTED] 901
Mark A. Kruger - CFG[EMAIL PROTECTED]   701
Tony Weeg   [EMAIL PROTECTED] 681
Sean A Corfield [EMAIL PROTECTED]678
Stacy Young [EMAIL PROTECTED]   635
Raymond Camden  [EMAIL PROTECTED]613
Jon Hall[EMAIL PROTECTED]   594
[EMAIL PROTECTED]  [EMAIL PROTECTED]   578
Dick Applebaum  [EMAIL PROTECTED]   552
Douglas Brown   [EMAIL PROTECTED]  549
Jeffry Houser   [EMAIL PROTECTED]   477
[EMAIL PROTECTED][EMAIL PROTECTED] 470
Paul Giesenhagen[EMAIL PROTECTED] 437
Bryan Stevenson [EMAIL PROTECTED]437
Matt Robertson  [EMAIL PROTECTED]406
Lee Fuller  [EMAIL PROTECTED]  343
Alex[EMAIL PROTECTED]   340


Previous years results
--
CF-talk posts for the year 2001 total 41,474

Dave Watts  [EMAIL PROTECTED] 1,101
Philip Arnold - ASP [EMAIL PROTECTED]   757
Howie Hamlin[EMAIL PROTECTED] 451
Jon Hall[EMAIL PROTECTED]   436
Dylan Bromby[EMAIL PROTECTED] 425
Bud [EMAIL PROTECTED]   394
Michael Lugassy [EMAIL PROTECTED]   370
Jeffry Houser   [EMAIL PROTECTED]   349
Thomas Chiverton[EMAIL PROTECTED]  332
Michael Dinowit [EMAIL PROTECTED]   323
Tony Schreiber  [EMAIL PROTECTED] 306
Raymond Camden  [EMAIL PROTECTED]257
Dick Applebaum  [EMAIL PROTECTED]  253
Bryan Love  [EMAIL PROTECTED]233
Russel Madere   [EMAIL PROTECTED]221
Jim McAtee  [EMAIL PROTECTED] 220
Jochem van Dieten   [EMAIL PROTECTED]   204
Duane Boudreau  [EMAIL PROTECTED]  201
Andy Ewings [EMAIL PROTECTED] 198
Dave Hannum [EMAIL PROTECTED]  197


CF-talk posts for the year 2000 total 48,444

[EMAIL PROTECTED]  1,644

others in the top 20 are :
[EMAIL PROTECTED]  517
[EMAIL PROTECTED] 460
[EMAIL PROTECTED] 426
[EMAIL PROTECTED]416
[EMAIL PROTECTED] 399
[EMAIL PROTECTED]386
[EMAIL PROTECTED]   365
[EMAIL PROTECTED]364
[EMAIL PROTECTED]355
[EMAIL PROTECTED]  322
[EMAIL PROTECTED]  307
[EMAIL PROTECTED]   306
[EMAIL PROTECTED]302
[EMAIL PROTECTED]292
[EMAIL PROTECTED]290
[EMAIL PROTECTED]288
[EMAIL PROTECTED]   279
[EMAIL PROTECTED] 269
[EMAIL PROTECTED]266

By unique 'from' email addresses, not checked for duplicates.
Preliminary ... probably final ... especially since there 
were no chads and I have never lived in Florida.


1999 cf-talk 40,427 posts by email

FromAddressCnt
--
[EMAIL PROTECTED] 833
[EMAIL PROTECTED] 551
[EMAIL PROTECTED]540
[EMAIL PROTECTED]499
[EMAIL PROTECTED] 477
[EMAIL PROTECTED]   446
[EMAIL PROTECTED]429
[EMAIL PROTECTED] 387
[EMAIL PROTECTED]369
[EMAIL PROTECTED]363


Joe Hoffman mailto:[EMAIL PROTECTED]
National Institutes of Health 
Center for Information Technology 
Division of Computer System Services
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: ColdFusion Training...

2003-01-02 Thread jremus-lists
I'm sure several people will chime in, but I did the CFMX master class a
while back, and it was by far the best training experience I've ever had.
It was incredibly intense, very well laid-out, and covered more in 5 days
than I thought a class possibly could.

By the end, I think we were all brain-dead and burnt out (in a good way) and
I was immediately able to translate what I learned into stuff to use at work
in a significant way.

Both Adam & David present things very clearly and in terms that let you
grasp them the first time.  They then reinforce it with very good exercises.

I'm still trying to convince people here I need to go back for the SQL
class, but I couldn't possibly give Adam & David (and their classes) a
higher rating.

>From a cost standpoint, just keep beating at the fact that they will work
you from 8am to 7pm solid, every day.  When you break down the cost/hr of
quality training (versus some 3-day events that wrap up every day at 2 or
3), I think you can probably sell them.

Just my 2c.

Josh

-Original Message-
From: charlie griefer [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 3:39 PM
To: CF-Talk
Subject: ColdFusion Training...


Hey List:

the boss has some money to spend, and i need some CF training (MX,
specifically).

Saw a post by Adam Churvis, and he had a link to
www.coldfusiontraining.com...so naturally i checked it out.  It sounds
really good (I mean REALLY good).  Last year I took the 'MM official'
Advanced CF course, and it was kinda fluffy.  I feel that i may have
strengthened some areas...but overall, it wasn't terribly intense.

Got two concerns about the ColdFusion MX Master Class
1) Price: i actually do believe it's worth it...but convincing the
boss...ugh.
2) Not really an 'official' course (as far as being affiliated with/endorsed
by MM).  That in and of itself is not necessarily a big deal to me...but
it's also the fact that I've not heard any feedback regarding the class.
Hard to justify the cost on such an unknown.

So what I'm hoping for is...anybody take the class that can give some
feedback?  Anybody know of anybody who took the class who can pass on some
feedback?  Anybody an instructor of the class that has some feedback? :)

Thanks in advance,
Charlie

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



Re: ColdFusion Training...

2003-01-02 Thread Adam Churvis
David and I are the only two instructors that will ever teach this class,
and we wrote all the software, lecture material, and exercises used in the
course.

Keeping our class size to three students and two instructors enables us to
give truly personalized attention and mentoring throughout the course.  This
level of attention simply cannot be duplicated in a typical classroom
setting with a single instructor.

Even with starting at 8:00 AM and going until 7:00 PM each day, we still
need every minute to sufficiently cover the practical application of each
topic.  Each course we teach is a real challenge.

Please call either me or David at the number below if we can answer any
questions for you.  I hope you can join us in February! :)

Respectfully,

Adam Phillip Churvis
Advanced Intensive ColdFusion MX Training
http://www.ColdFusionTraining.com
E-mail:  [EMAIL PROTECTED]
Phone:   770-446-8866
Team Macromedia Volunteer for ColdFusion
http://www.macromedia.com/support/forums/team_macromedia/

- Original Message -
From: "charlie griefer" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 02, 2003 3:39 PM
Subject: ColdFusion Training...


> Hey List:
>
> the boss has some money to spend, and i need some CF training (MX,
> specifically).
>
> Saw a post by Adam Churvis, and he had a link to
> www.coldfusiontraining.com...so naturally i checked it out.  It sounds
> really good (I mean REALLY good).  Last year I took the 'MM official'
> Advanced CF course, and it was kinda fluffy.  I feel that i may have
> strengthened some areas...but overall, it wasn't terribly intense.
>
> Got two concerns about the ColdFusion MX Master Class
> 1) Price: i actually do believe it's worth it...but convincing the
> boss...ugh.
> 2) Not really an 'official' course (as far as being affiliated
with/endorsed
> by MM).  That in and of itself is not necessarily a big deal to me...but
> it's also the fact that I've not heard any feedback regarding the class.
> Hard to justify the cost on such an unknown.
>
> So what I'm hoping for is...anybody take the class that can give some
> feedback?  Anybody know of anybody who took the class who can pass on some
> feedback?  Anybody an instructor of the class that has some feedback? :)
>
> Thanks in advance,
> Charlie
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: grrrrr ... CFSchedule

2003-01-02 Thread Robert Bailey
I have always tested my schedule scripts by having it email me at the
end for testing, and executed it with CFSCHEDULE the first time around
just to make sure it was completing. Very helpful when you are on a
shared host and do not have access to the admin to make sure it was
added correctly

-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 12:48 PM
To: CF-Talk
Subject: RE: gr ... CFSchedule

Howard Owens wrote:

>Any suggestions on why the scheduled events trigger but don't >produce
any results?

I've always been able to get it to work, but the formula for success has
not always been entirely straightforward.

This may sound strange at first, but have you tried waiting for 24 hours
to see if the thing kicks in?

I've had my server monitor running for months on my home-based cf
server.  Then I had to fiddle with something in cfschedule (I forget
what, exactly) for another task and suddenly the thing went dead as a
doornail.  Couldn't get it to restart despite tinkering with all kinds
of stuff.

After a bit I gave up and went on to other things, but was very
surprised to see it had fired up again the next day, beginning at the
start time of the event -- despite the fact that the starting *date* was
in the past.

I've also had success using '' action="UPDATE" '' in my cfschedule
statement.

All of the above is for CF 4.5.1sp2.  As an aside MX scheduling behaved
just fine after an upgrade overtop of cf 4.5x.

Shots in the dark, maybe, but who knows...

---
Matt Robertson, MSB Designs, Inc.
http://mysecretbase.com - Retail
http://foohbar.org - ColdFusion Tools
---

 
 

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



RE: grrrrr ... CFSchedule

2003-01-02 Thread Matt Robertson
Howard Owens wrote:

>Any suggestions on why the scheduled events trigger but don't >produce any results?

I've always been able to get it to work, but the formula for success has not always 
been entirely straightforward.

This may sound strange at first, but have you tried waiting for 24 hours to see if the 
thing kicks in?

I've had my server monitor running for months on my home-based cf server.  Then I had 
to fiddle with something in cfschedule (I forget what, exactly) for another task and 
suddenly the thing went dead as a doornail.  Couldn't get it to restart despite 
tinkering with all kinds of stuff.

After a bit I gave up and went on to other things, but was very surprised to see it 
had fired up again the next day, beginning at the start time of the event -- despite 
the fact that the starting *date* was in the past.

I've also had success using '' action="UPDATE" '' in my cfschedule statement.

All of the above is for CF 4.5.1sp2.  As an aside MX scheduling behaved just fine 
after an upgrade overtop of cf 4.5x.

Shots in the dark, maybe, but who knows...

---
Matt Robertson, MSB Designs, Inc.
http://mysecretbase.com - Retail
http://foohbar.org - ColdFusion Tools
---

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



Mr.Corfield: MX and beans

2003-01-02 Thread Rob Rohan
I've been playing with JSP (tomcat) and the bean feature is rad. Creating
the accessor and mutator and then simply having the form go straight to the
bean - it's awesome

I have 2 questions. First, are bean functions available in cfmx (non
enterprise or does one have to upgrade - I am a bit confused would pages
work like .cfm -> cfmx -> tomcat -> apache/iis -> brower?). Second, did you
guys base cfmx/jrun off tomcat or is that just coincidence (directory
structure, jikes, etc)?

Thanks for any input.

Cheers,
Rob

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



(OT) 2002 Stats

2003-01-02 Thread Michael Dinowitz
I'd like to take a moment and thank everyone who's gone out of their way to post
to the CF-Talk list. You have helped make this a major resource for the CF
community and I'm sure the many thousands of people who read the list would like
to say thanks.

Total Threads = 11,160
Total Messages = 56,029
Distinct posters = 2,483

Top 10 Posters
 1762 [EMAIL PROTECTED]
 1196 [EMAIL PROTECTED]
 1035 [EMAIL PROTECTED]
 923 [EMAIL PROTECTED]
 745 [EMAIL PROTECTED]
 717 [EMAIL PROTECTED]
 678 [EMAIL PROTECTED]
 677 [EMAIL PROTECTED]
 673 [EMAIL PROTECTED]
 638 [EMAIL PROTECTED]

Hopefully these statistics will get us some advertisers as well. :)

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=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Page context

2003-01-02 Thread Jesse Houwing
>
>
>>You can manually cache these variables in the application scope, but I
>>was looking for something more specific. An example of such data might
>>be: a default sort order, l10n texts etc.
>>
>>
>
>since you mentioned locales, the wheels will fly off in an environment where
>locales are user (session) based.
>
But then you can load a struct with a struct of translations for every 
laguage available and a default language. And you could save the 
userlanguage in either hist ClientPageContext or SessionPageContext 
(depending on the fact if it's a known or a guest user).

>>So this would work like a normal client or session variable, but these
>>variables would be unique for each page (haven't though about includes
>>
>>
>coming from an i18n world i would argue for unique user/pages. or am i
>misunderstanding your intent?
>
I think I don't understand what you don't understand :)

>>keywords etc. One could store these in the clientscope or the session
>>scope, but then these would be accessible from any other page aswell. So
>>in this case there would be a pageSession and a pageClient scope to
>>handle these kinds of data.
>>
>>
>ah yes. makes sense.
>  
>


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



ColdFusion Training...

2003-01-02 Thread charlie griefer
Hey List: 

the boss has some money to spend, and i need some CF training (MX, 
specifically). 

Saw a post by Adam Churvis, and he had a link to 
www.coldfusiontraining.com...so naturally i checked it out.  It sounds 
really good (I mean REALLY good).  Last year I took the 'MM official' 
Advanced CF course, and it was kinda fluffy.  I feel that i may have 
strengthened some areas...but overall, it wasn't terribly intense. 

Got two concerns about the ColdFusion MX Master Class
1) Price: i actually do believe it's worth it...but convincing the 
boss...ugh.
2) Not really an 'official' course (as far as being affiliated with/endorsed 
by MM).  That in and of itself is not necessarily a big deal to me...but 
it's also the fact that I've not heard any feedback regarding the class.  
Hard to justify the cost on such an unknown. 

So what I'm hoping for is...anybody take the class that can give some 
feedback?  Anybody know of anybody who took the class who can pass on some 
feedback?  Anybody an instructor of the class that has some feedback? :) 

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



Re: CF and Outlook...

2003-01-02 Thread Bruce Sorge
I believe that there are some com objects that you can find on cfcomet.
- Original Message -
From: "cf talk" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 02, 2003 1:33 PM
Subject: CF and Outlook...


> Some of my members want me to do a presentation on CF and outlook.  I have
never done this and was wondering if someone could send me something.  If
anyone has connected CF to outlook, please send me some code to look at.
>
>
> Thank you,
>
> Brian Yager
> President North Alabama Cold Fusion Users Group
> http://www.nacfug.com
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Some idea about the Efficiency of UDFs

2003-01-02 Thread Jerry Johnson
Typing too fast again.



=)

Jerry Johnson



>>> [EMAIL PROTECTED] 01/02/03 02:37PM >>>
Does anyone else want to chip in for some panty untwisters.

They definitely seem needed.

Jerry Johnson

>>> [EMAIL PROTECTED] 01/02/03 02:13PM >>>
Um, no it's not. You just read on the mailing list what feature he is
interested in and he didn't submit a request for it.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/ 
888-408-0900 x901

> -Original Message-
> From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 1:59 PM
> To: CF-Talk
> Subject: Re: Some idea about the Efficiency of UDFs
> 
> Well, it's hard for us to know that you are interested in a feature if
> you don't submit a request for it.  I don't consider submitting
feature
> requests to be secretary work, so I'll be happy to take care of it.
> 
> Christian
> 
> On Thursday, January 2, 2003, at 12:10 PM, Li Chunshen ((Don)) wrote:
> 
> > Christian,
> >
> > No, I didn't submit it (I don't like to be a
> > secretary), you please, no, you are not a secretary
> > either :) for that may be part of your job.
> > Thanks.
> >
> > Don Li
> >
> > --- Christian Cantrell <[EMAIL PROTECTED]>
> > wrote:
> >> Good point.  You could always call the other
> >> functions using the same
> >> routine that CFM pages would be expected to use, but
> >> I can see where it
> >> would be easier (more maintainable) to keep several
> >> functions in a
> >> single file.  I have several functions that call
> >> other functions, and
> >> many of them are only one or two lines, so I'm sure
> >> it would get
> >> annoying having directories full of files with
> >> functions containing
> >> only a single line.  The idea Jim proposed gets
> >> around this limitation
> >> nicely (dir.file.function).
> >>
> >> Thanks for the feedback, everyone.  Li, did you
> >> submit this, or shall I?
> >>
> >> Christian
> >>
> >> On Thursday, January 2, 2003, at 09:34 AM, Ben Doom
> >> wrote:
> >>
> >>> One thing to think about:  CF probably shouldn't
> >> require one and only
> >>> one
> >>> UDF per file.  Occasionally it makes sense for me
> >> to write UDFs that
> >>> call
> >>> other UDFs (either because the functionality
> >> already exists, will be
> >>> needed
> >>> elsewhere, or it just makes the 'main' UDF easier
> >> to read) and I
> >>> generally
> >>> include those subroutines in the same file.  If I
> >> had to have a
> >>> separate
> >>> file for each, it would be rather confusing IMHO.
> >>>
> >>>
> >>> --  Ben Doom
> >>> Programmer & General Lackey
> >>> Moonbow Software, Inc
> >>>
> >>> -Original Message-
> >>> From: Christian Cantrell
> >> [mailto:[EMAIL PROTECTED]] 
> >>> Sent: Wednesday, January 01, 2003 6:01 PM
> >>> To: CF-Talk
> >>> Subject: Re: Some idea about the Efficiency of
> >> UDFs
> >>>
> >>>
> >>> Interesting idea.  So how exactly would this work?
> >>  Would ColdFusion
> >>> expect one function per file, with the requirement
> >> that the file and
> >>> the function have the same name?  Then you could
> >> call any arbitrary
> >>> UDF, and the CF server would look in the proper
> >> directory for the right
> >>> file, then execute the function in that file.  How
> >> else could this
> >>> work?
> >>>
> >>> Let's flesh it out a bit here, then I invite you
> >> to submit your idea to
> >>> Macromedia at the following URL:
> >>>
> >>>
> >>
> > http://www.macromedia.com/support/email/wishform/?6213=3 
> >>>
> >>> Christian
> >>>
> >>> On Wednesday, January 1, 2003, at 04:40 PM, Li
> >> Chunshen ((Don)) wrote:
> >>>
>  According to Macromedia's CFMX References on
> >> Using
>  UDFs effectively:
> 
>  "Consider the following techniques for making
> >> your
>  functions available to your ColdFusion pages:
> 
>  If you consistently call a small number of UDFs,
>  consider putting their definitions on the
>  Application.cfm page.
>  If you call UDFs in only a few of your
> >> application
>  pages, do not include their definitions in
>  Application.cfm.
>  If you use many UDFs, put their definitions on
> >> one or
>  more ColdFusion pages that contain only UDFs. You
> >> can
>  include the UDF definition page in any page that
> >> calls
>  the UDFs. "
> 
>  I agree with everything it states, and I think it
>  might help more if CFMX predefines a UDF library
> >> path
>  such as UDFlib under CFMX installation instead of
> >> an
>  arbitrary directory, I can see several benefits
> >> of
>  this approach:
>  consistency -- especially helpful for large
>  development environment;
>  easier for reuse -- across applications/projects
>  (this one is similar to CFMODULE's dot notation
>  method, I love it)
> 
>  And I don't see any downside of it.  Thanks.
> 
>  DL
> 
> 
>  --- Matthew Walker <[EMAIL PROTECTED]>
> >> wrote:
> > These two cfmx UDFs from cflib.org 

RE: grrrrr ... CFSchedule

2003-01-02 Thread Owens, Howard
Thanks, Michael ... tried this ... templates run fine without error.

H.


> -Original Message-
> From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 11:33 AM
> To:   CF-Talk
> Subject:  Re: gr ... CFSchedule
> 
> Use this to check if the url your calling is a good one or if it has any
> errors.
> The usual errors are environmental such as logins and the like.
> 
> 
> 
> Scheduler Checker
> Url to test:
> 
> 
> 
> 
>  
>throwonerror="yes"
> redirect="yes">
>   #cfhttp.filecontent#
>   
>
> #CFCATCH.Message#
> #CFCATCH.Detail#
>
>   
>  
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Some idea about the Efficiency of UDFs

2003-01-02 Thread Jerry Johnson
Does anyone else want to chip in for some panty untwisters.

They definitely seem needed.

Jerry Johnson

>>> [EMAIL PROTECTED] 01/02/03 02:13PM >>>
Um, no it's not. You just read on the mailing list what feature he is
interested in and he didn't submit a request for it.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/ 
888-408-0900 x901

> -Original Message-
> From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 1:59 PM
> To: CF-Talk
> Subject: Re: Some idea about the Efficiency of UDFs
> 
> Well, it's hard for us to know that you are interested in a feature if
> you don't submit a request for it.  I don't consider submitting
feature
> requests to be secretary work, so I'll be happy to take care of it.
> 
> Christian
> 
> On Thursday, January 2, 2003, at 12:10 PM, Li Chunshen ((Don)) wrote:
> 
> > Christian,
> >
> > No, I didn't submit it (I don't like to be a
> > secretary), you please, no, you are not a secretary
> > either :) for that may be part of your job.
> > Thanks.
> >
> > Don Li
> >
> > --- Christian Cantrell <[EMAIL PROTECTED]>
> > wrote:
> >> Good point.  You could always call the other
> >> functions using the same
> >> routine that CFM pages would be expected to use, but
> >> I can see where it
> >> would be easier (more maintainable) to keep several
> >> functions in a
> >> single file.  I have several functions that call
> >> other functions, and
> >> many of them are only one or two lines, so I'm sure
> >> it would get
> >> annoying having directories full of files with
> >> functions containing
> >> only a single line.  The idea Jim proposed gets
> >> around this limitation
> >> nicely (dir.file.function).
> >>
> >> Thanks for the feedback, everyone.  Li, did you
> >> submit this, or shall I?
> >>
> >> Christian
> >>
> >> On Thursday, January 2, 2003, at 09:34 AM, Ben Doom
> >> wrote:
> >>
> >>> One thing to think about:  CF probably shouldn't
> >> require one and only
> >>> one
> >>> UDF per file.  Occasionally it makes sense for me
> >> to write UDFs that
> >>> call
> >>> other UDFs (either because the functionality
> >> already exists, will be
> >>> needed
> >>> elsewhere, or it just makes the 'main' UDF easier
> >> to read) and I
> >>> generally
> >>> include those subroutines in the same file.  If I
> >> had to have a
> >>> separate
> >>> file for each, it would be rather confusing IMHO.
> >>>
> >>>
> >>> --  Ben Doom
> >>> Programmer & General Lackey
> >>> Moonbow Software, Inc
> >>>
> >>> -Original Message-
> >>> From: Christian Cantrell
> >> [mailto:[EMAIL PROTECTED]] 
> >>> Sent: Wednesday, January 01, 2003 6:01 PM
> >>> To: CF-Talk
> >>> Subject: Re: Some idea about the Efficiency of
> >> UDFs
> >>>
> >>>
> >>> Interesting idea.  So how exactly would this work?
> >>  Would ColdFusion
> >>> expect one function per file, with the requirement
> >> that the file and
> >>> the function have the same name?  Then you could
> >> call any arbitrary
> >>> UDF, and the CF server would look in the proper
> >> directory for the right
> >>> file, then execute the function in that file.  How
> >> else could this
> >>> work?
> >>>
> >>> Let's flesh it out a bit here, then I invite you
> >> to submit your idea to
> >>> Macromedia at the following URL:
> >>>
> >>>
> >>
> > http://www.macromedia.com/support/email/wishform/?6213=3 
> >>>
> >>> Christian
> >>>
> >>> On Wednesday, January 1, 2003, at 04:40 PM, Li
> >> Chunshen ((Don)) wrote:
> >>>
>  According to Macromedia's CFMX References on
> >> Using
>  UDFs effectively:
> 
>  "Consider the following techniques for making
> >> your
>  functions available to your ColdFusion pages:
> 
>  If you consistently call a small number of UDFs,
>  consider putting their definitions on the
>  Application.cfm page.
>  If you call UDFs in only a few of your
> >> application
>  pages, do not include their definitions in
>  Application.cfm.
>  If you use many UDFs, put their definitions on
> >> one or
>  more ColdFusion pages that contain only UDFs. You
> >> can
>  include the UDF definition page in any page that
> >> calls
>  the UDFs. "
> 
>  I agree with everything it states, and I think it
>  might help more if CFMX predefines a UDF library
> >> path
>  such as UDFlib under CFMX installation instead of
> >> an
>  arbitrary directory, I can see several benefits
> >> of
>  this approach:
>  consistency -- especially helpful for large
>  development environment;
>  easier for reuse -- across applications/projects
>  (this one is similar to CFMODULE's dot notation
>  method, I love it)
> 
>  And I don't see any downside of it.  Thanks.
> 
>  DL
> 
> 
>  --- Matthew Walker <[EMAIL PROTECTED]>
> >> wrote:
> > These two cfmx UDFs from cflib.org may help:
> >
> >
> > 
> > function DSNExists(DSN) {
> >  

RE: Some idea about the Efficiency of UDFs

2003-01-02 Thread Mike Chambers
sigh...

I think what christian was getting at is that if you just post a feature
to this list, then we may miss it. if you submit it through the proper
channels (i.e. the wish list), then we will definitely see it.

http://www.macromedia.com/support/email/wishform/

mike chambers

[EMAIL PROTECTED]

> -Original Message-
> From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 2:13 PM
> To: CF-Talk
> Subject: RE: Some idea about the Efficiency of UDFs
> 
> 
> Um, no it's not. You just read on the mailing list what feature he is
> interested in and he didn't submit a request for it.
> 
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> 888-408-0900 x901
> 

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



RE: grrrrr ... CFSchedule

2003-01-02 Thread Owens, Howard
No logging in ... no client or session variables ... pretty straightforward
queries and such.

Schedule to run once per day.

H.


> -Original Message-
> From: Rob Rohan [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 11:26 AM
> To:   CF-Talk
> Subject:  RE: gr ... CFSchedule
> 
> I have had some errors in logic when using the scheduler. Remember that it
> is a new request and some things in your code may not be available if not
> coded properly.
> 
> i.e. if you are using the same page that a 'logged in' client would use,
> there might be session variables set by the login process that the page
> needs, etc.
> 
> Other than that, I d'know. I have used the scheduler in 5.0 and MX with
> little/no problem.
> 
> Also remember that there should be about 15 minutes between each running
> (at
> least I have found that works the best).
> 
> Rob
> 
> -Original Message-
> From: Owens, Howard [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 11:03 AM
> To: CF-Talk
> Subject: gr ... CFSchedule
> 
> 
> I first tried using CFSchedule a couple of years ago ... when I was still
> running CF 4.01 on a 4.0 SP4 NTWS.  Could never get it to work. Gave up.
> 
> Hadn't tried again until this week. I'm using CF 5.0, on Win2K with IIS.
> 
> I set up scheduled tasks up in the CF Admin.  If I run them manually,
> through the admin, they run fine.  But as far as running on schedule, it
> ain't happening.
> 
> The scheduler.log file shows that the templates ran, but the results that
> should have been produced at not their -- no e-mails sent, nothing written
> to the application log, no database entries ... zilch.
> 
> Any suggestions on why the scheduled events trigger but don't produce any
> results?
> 
> H.
> 
> 
> ~~
> Howard Owens
> Internet Operations Coordinator
> InsideVC.com/Ventura County Star
> [EMAIL PROTECTED]
> AIM: GoCatGo1956
> ~~
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



CF and Outlook...

2003-01-02 Thread cf talk
Some of my members want me to do a presentation on CF and outlook.  I have never done 
this and was wondering if someone could send me something.  If anyone has connected CF 
to outlook, please send me some code to look at.


Thank you,

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



Re: grrrrr ... CFSchedule

2003-01-02 Thread Michael Dinowitz
Use this to check if the url your calling is a good one or if it has any errors.
The usual errors are environmental such as logins and the like.



Scheduler Checker
Url to test:




 
  
  #cfhttp.filecontent#
  
   
#CFCATCH.Message#
#CFCATCH.Detail#
   
  
 


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



RE: grrrrr ... CFSchedule

2003-01-02 Thread Rob Rohan
I have had some errors in logic when using the scheduler. Remember that it
is a new request and some things in your code may not be available if not
coded properly.

i.e. if you are using the same page that a 'logged in' client would use,
there might be session variables set by the login process that the page
needs, etc.

Other than that, I d'know. I have used the scheduler in 5.0 and MX with
little/no problem.

Also remember that there should be about 15 minutes between each running (at
least I have found that works the best).

Rob

-Original Message-
From: Owens, Howard [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 11:03 AM
To: CF-Talk
Subject: gr ... CFSchedule


I first tried using CFSchedule a couple of years ago ... when I was still
running CF 4.01 on a 4.0 SP4 NTWS.  Could never get it to work. Gave up.

Hadn't tried again until this week. I'm using CF 5.0, on Win2K with IIS.

I set up scheduled tasks up in the CF Admin.  If I run them manually,
through the admin, they run fine.  But as far as running on schedule, it
ain't happening.

The scheduler.log file shows that the templates ran, but the results that
should have been produced at not their -- no e-mails sent, nothing written
to the application log, no database entries ... zilch.

Any suggestions on why the scheduled events trigger but don't produce any
results?

H.


~~
Howard Owens
Internet Operations Coordinator
InsideVC.com/Ventura County Star
[EMAIL PROTECTED]
AIM: GoCatGo1956
~~


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



Re: grrrrr ... CFSchedule

2003-01-02 Thread Michael Dinowitz
Have you run the url directly and gotten the desired result? If yes, then do the
following.
Write a CFHTTP to call the page and check the results.
The internals of CFSCHEDULE use CFHTTP to do the work so if CFHTTP fails, the
entire thing fails.


> I first tried using CFSchedule a couple of years ago ... when I was still
> running CF 4.01 on a 4.0 SP4 NTWS.  Could never get it to work. Gave up.
>
> Hadn't tried again until this week. I'm using CF 5.0, on Win2K with IIS.
>
> I set up scheduled tasks up in the CF Admin.  If I run them manually,
> through the admin, they run fine.  But as far as running on schedule, it
> ain't happening.
>
> The scheduler.log file shows that the templates ran, but the results that
> should have been produced at not their -- no e-mails sent, nothing written
> to the application log, no database entries ... zilch.
>
> Any suggestions on why the scheduled events trigger but don't produce any
> results?
>
> H.
>
>
> ~~
> Howard Owens
> Internet Operations Coordinator
> InsideVC.com/Ventura County Star
> [EMAIL PROTECTED]
> AIM: GoCatGo1956
> ~~
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Some idea about the Efficiency of UDFs

2003-01-02 Thread Matt Liotta
Um, no it's not. You just read on the mailing list what feature he is
interested in and he didn't submit a request for it.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Christian Cantrell [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 1:59 PM
> To: CF-Talk
> Subject: Re: Some idea about the Efficiency of UDFs
> 
> Well, it's hard for us to know that you are interested in a feature if
> you don't submit a request for it.  I don't consider submitting
feature
> requests to be secretary work, so I'll be happy to take care of it.
> 
> Christian
> 
> On Thursday, January 2, 2003, at 12:10 PM, Li Chunshen ((Don)) wrote:
> 
> > Christian,
> >
> > No, I didn't submit it (I don't like to be a
> > secretary), you please, no, you are not a secretary
> > either :) for that may be part of your job.
> > Thanks.
> >
> > Don Li
> >
> > --- Christian Cantrell <[EMAIL PROTECTED]>
> > wrote:
> >> Good point.  You could always call the other
> >> functions using the same
> >> routine that CFM pages would be expected to use, but
> >> I can see where it
> >> would be easier (more maintainable) to keep several
> >> functions in a
> >> single file.  I have several functions that call
> >> other functions, and
> >> many of them are only one or two lines, so I'm sure
> >> it would get
> >> annoying having directories full of files with
> >> functions containing
> >> only a single line.  The idea Jim proposed gets
> >> around this limitation
> >> nicely (dir.file.function).
> >>
> >> Thanks for the feedback, everyone.  Li, did you
> >> submit this, or shall I?
> >>
> >> Christian
> >>
> >> On Thursday, January 2, 2003, at 09:34 AM, Ben Doom
> >> wrote:
> >>
> >>> One thing to think about:  CF probably shouldn't
> >> require one and only
> >>> one
> >>> UDF per file.  Occasionally it makes sense for me
> >> to write UDFs that
> >>> call
> >>> other UDFs (either because the functionality
> >> already exists, will be
> >>> needed
> >>> elsewhere, or it just makes the 'main' UDF easier
> >> to read) and I
> >>> generally
> >>> include those subroutines in the same file.  If I
> >> had to have a
> >>> separate
> >>> file for each, it would be rather confusing IMHO.
> >>>
> >>>
> >>> --  Ben Doom
> >>> Programmer & General Lackey
> >>> Moonbow Software, Inc
> >>>
> >>> -Original Message-
> >>> From: Christian Cantrell
> >> [mailto:[EMAIL PROTECTED]]
> >>> Sent: Wednesday, January 01, 2003 6:01 PM
> >>> To: CF-Talk
> >>> Subject: Re: Some idea about the Efficiency of
> >> UDFs
> >>>
> >>>
> >>> Interesting idea.  So how exactly would this work?
> >>  Would ColdFusion
> >>> expect one function per file, with the requirement
> >> that the file and
> >>> the function have the same name?  Then you could
> >> call any arbitrary
> >>> UDF, and the CF server would look in the proper
> >> directory for the right
> >>> file, then execute the function in that file.  How
> >> else could this
> >>> work?
> >>>
> >>> Let's flesh it out a bit here, then I invite you
> >> to submit your idea to
> >>> Macromedia at the following URL:
> >>>
> >>>
> >>
> > http://www.macromedia.com/support/email/wishform/?6213=3
> >>>
> >>> Christian
> >>>
> >>> On Wednesday, January 1, 2003, at 04:40 PM, Li
> >> Chunshen ((Don)) wrote:
> >>>
>  According to Macromedia's CFMX References on
> >> Using
>  UDFs effectively:
> 
>  "Consider the following techniques for making
> >> your
>  functions available to your ColdFusion pages:
> 
>  If you consistently call a small number of UDFs,
>  consider putting their definitions on the
>  Application.cfm page.
>  If you call UDFs in only a few of your
> >> application
>  pages, do not include their definitions in
>  Application.cfm.
>  If you use many UDFs, put their definitions on
> >> one or
>  more ColdFusion pages that contain only UDFs. You
> >> can
>  include the UDF definition page in any page that
> >> calls
>  the UDFs. "
> 
>  I agree with everything it states, and I think it
>  might help more if CFMX predefines a UDF library
> >> path
>  such as UDFlib under CFMX installation instead of
> >> an
>  arbitrary directory, I can see several benefits
> >> of
>  this approach:
>  consistency -- especially helpful for large
>  development environment;
>  easier for reuse -- across applications/projects
>  (this one is similar to CFMODULE's dot notation
>  method, I love it)
> 
>  And I don't see any downside of it.  Thanks.
> 
>  DL
> 
> 
>  --- Matthew Walker <[EMAIL PROTECTED]>
> >> wrote:
> > These two cfmx UDFs from cflib.org may help:
> >
> >
> > 
> > function DSNExists(DSN) {
> > var factory =
> >
> 
> >>
> > createObject("java","coldfusion.server.ServiceFactory");
> > var DSNs =
> > fact

grrrrr ... CFSchedule

2003-01-02 Thread Owens, Howard
I first tried using CFSchedule a couple of years ago ... when I was still
running CF 4.01 on a 4.0 SP4 NTWS.  Could never get it to work. Gave up.

Hadn't tried again until this week. I'm using CF 5.0, on Win2K with IIS.

I set up scheduled tasks up in the CF Admin.  If I run them manually,
through the admin, they run fine.  But as far as running on schedule, it
ain't happening.

The scheduler.log file shows that the templates ran, but the results that
should have been produced at not their -- no e-mails sent, nothing written
to the application log, no database entries ... zilch.

Any suggestions on why the scheduled events trigger but don't produce any
results?

H.


~~
Howard Owens
Internet Operations Coordinator
InsideVC.com/Ventura County Star
[EMAIL PROTECTED]
AIM: GoCatGo1956
~~

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



Re: Errors: can not locate info on

2003-01-02 Thread Richard Meredith-Hardy
I don't know about your client var problem, but I beleve the CF
documentation says somewhere it is a bad idea to allow verity searches
to happen whilst some sort of management of the collection is going on
eg a re-index.  I consequently use an application var which is checked
before a CFSEARCH is allowed to happen and if it is false then a message
pops up saying something like "Sorry, the search engine is unavailable,
please try again in a few minutes" 

John Lucas wrote:
> 
> I'm starting to think that our CF 5 installation is corrupted though the
> box has been running smoothly for over a year and a half and the areas
> that seem to be affected are areas where the code has not been changed
> in months.  Over this week, we've encountered another two errors that I
> can not locate information on that made all of our applications
> unavailable.
> 
> The first (in the application log): Synchronization error. Please paste
> the text of this error into a mail message to the system administrator.
> The service timed-out waiting for the operating system's attempt to
> guarantee one thread mutually exclusive access to generate a unique Cold
> Fusion client ID.
> 
> The second (in the server log): The mutex timed-out in
> GenerateUniqueClient().
> 
> When these errors were encountered, new visitors to the site could not
> view it because the client variables were not available to them.
> 
> On this particular server, we are also having a problem with verity
> search collections.  One minute we get collection failed to open errors,
> the next minute the collection is available.  The collections are not
> using the K2 server as I do not want to introduce another process into
> the mix until I've resolved the existing issues.
> 
> It also seems that right before the server has trouble, a series of
> searches are conducted with the collection unavailable.  Although this
> may be completely unrelated.  I am in the process of putting a more
> detailed analysis of the problem together so that I can call tech
> support, but if anyone has any info on the above to errors, I would
> greatly appreciate it.
> 
> TIA,
> John
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Some idea about the Efficiency of UDFs

2003-01-02 Thread Christian Cantrell
Well, it's hard for us to know that you are interested in a feature if  
you don't submit a request for it.  I don't consider submitting feature  
requests to be secretary work, so I'll be happy to take care of it.

Christian

On Thursday, January 2, 2003, at 12:10 PM, Li Chunshen ((Don)) wrote:

> Christian,
>
> No, I didn't submit it (I don't like to be a
> secretary), you please, no, you are not a secretary
> either :) for that may be part of your job.
> Thanks.
>
> Don Li
>
> --- Christian Cantrell <[EMAIL PROTECTED]>
> wrote:
>> Good point.  You could always call the other
>> functions using the same
>> routine that CFM pages would be expected to use, but
>> I can see where it
>> would be easier (more maintainable) to keep several
>> functions in a
>> single file.  I have several functions that call
>> other functions, and
>> many of them are only one or two lines, so I'm sure
>> it would get
>> annoying having directories full of files with
>> functions containing
>> only a single line.  The idea Jim proposed gets
>> around this limitation
>> nicely (dir.file.function).
>>
>> Thanks for the feedback, everyone.  Li, did you
>> submit this, or shall I?
>>
>> Christian
>>
>> On Thursday, January 2, 2003, at 09:34 AM, Ben Doom
>> wrote:
>>
>>> One thing to think about:  CF probably shouldn't
>> require one and only
>>> one
>>> UDF per file.  Occasionally it makes sense for me
>> to write UDFs that
>>> call
>>> other UDFs (either because the functionality
>> already exists, will be
>>> needed
>>> elsewhere, or it just makes the 'main' UDF easier
>> to read) and I
>>> generally
>>> include those subroutines in the same file.  If I
>> had to have a
>>> separate
>>> file for each, it would be rather confusing IMHO.
>>>
>>>
>>> --  Ben Doom
>>> Programmer & General Lackey
>>> Moonbow Software, Inc
>>>
>>> -Original Message-
>>> From: Christian Cantrell
>> [mailto:[EMAIL PROTECTED]]
>>> Sent: Wednesday, January 01, 2003 6:01 PM
>>> To: CF-Talk
>>> Subject: Re: Some idea about the Efficiency of
>> UDFs
>>>
>>>
>>> Interesting idea.  So how exactly would this work?
>>  Would ColdFusion
>>> expect one function per file, with the requirement
>> that the file and
>>> the function have the same name?  Then you could
>> call any arbitrary
>>> UDF, and the CF server would look in the proper
>> directory for the right
>>> file, then execute the function in that file.  How
>> else could this
>>> work?
>>>
>>> Let's flesh it out a bit here, then I invite you
>> to submit your idea to
>>> Macromedia at the following URL:
>>>
>>>
>>
> http://www.macromedia.com/support/email/wishform/?6213=3
>>>
>>> Christian
>>>
>>> On Wednesday, January 1, 2003, at 04:40 PM, Li
>> Chunshen ((Don)) wrote:
>>>
 According to Macromedia's CFMX References on
>> Using
 UDFs effectively:

 "Consider the following techniques for making
>> your
 functions available to your ColdFusion pages:

 If you consistently call a small number of UDFs,
 consider putting their definitions on the
 Application.cfm page.
 If you call UDFs in only a few of your
>> application
 pages, do not include their definitions in
 Application.cfm.
 If you use many UDFs, put their definitions on
>> one or
 more ColdFusion pages that contain only UDFs. You
>> can
 include the UDF definition page in any page that
>> calls
 the UDFs. "

 I agree with everything it states, and I think it
 might help more if CFMX predefines a UDF library
>> path
 such as UDFlib under CFMX installation instead of
>> an
 arbitrary directory, I can see several benefits
>> of
 this approach:
 consistency -- especially helpful for large
 development environment;
 easier for reuse -- across applications/projects
 (this one is similar to CFMODULE's dot notation
 method, I love it)

 And I don't see any downside of it.  Thanks.

 DL


 --- Matthew Walker <[EMAIL PROTECTED]>
>> wrote:
> These two cfmx UDFs from cflib.org may help:
>
>
> 
>   function DSNExists(DSN) {
>   var factory =
>

>>
> createObject("java","coldfusion.server.ServiceFactory");
>   var DSNs =
> factory.getDataSourceService().getNames();
>   return
> yesNoFormat(listFindNoCase(arrayToList(DSNs),
> DSN));
>   }
> 
>
>
> 
> > RETURNTYPE="boolean">
> REQUIRED="yes">
>
>
>
>
>
>
>
>
>   
>    TYPE="JAVA"
>
> CLASS="coldfusion.server.ServiceFactory"
> NAME="factory">
>   
>    dsService=factory.getDataSourceService()>
>   
>   > result=dsService.verifyDatasource(dsn)>
>
>   
> 
>
> 
>
>
>
> 
>
>> -Original Message-
>> From: Li Chunshen (Don)
>> [mailt

RE: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Rob Rohan
I'll go with that - adoption of tcp/ip as the birth

Rob

-Original Message-
From: Mark Broner [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 10:52 AM
To: CF-Talk
Subject: Re: Happy Birthday!! (Sorry. Wrong List)


On 1 January 1983 the Advanced Research Projects Agency Network (Arpanet) of
the US Department of Defence - the forerunner of the internet - was switched
to the TCP/IP protocol.

http://www.vnunet.com/News/1137772



- Original Message -
From: "Rob Rohan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 02, 2003 11:46 AM
Subject: RE: Happy Birthday!! (Sorry. Wrong List)


> ARPA's Program Plan for the ARPANET was titled "Resource Sharing Computer
> Networks". It was submitted June 3, 1968, and approved by the Director
June
> 21, 1968.
>
> United States Defense Advanced Research Project Agency (ARPA) Established
in
> 1969
>
> 2003 - 1969 = 34
>
> 20?
>
> Rob
>
> -Original Message-
> From: Robert Bailey [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:30 AM
> To: CF-Talk
> Subject: RE: Happy Birthday!! (Sorry. Wrong List)
>
>
> Wow, has it been 20 years?
>
> -Original Message-
> From: Jacob [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:25 AM
> To: CF-Talk
> Subject: Happy Birthday!! (Sorry. Wrong List)
>
> Was meant for CF-Community.
>
> CF-Community
> CF-List
>
> right next to each other in my address book.
>
> Sorry
>
>
>
>

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



Re: Happy Birthday!!

2003-01-02 Thread Jeffry Houser
  And you know, I didn't even move it to the right list.
  I'm sorry.

At 01:55 PM 1/2/2003 -0500, you wrote:

>   Moved from cf-talk.
>
>   Today is the birthday specifically?
>   I wonder how you define the birth of the Internet.  It was something a
>long-time in creating and all that.
>   I bet it has been longer than 20 years.  ( Research started a lot longer
>than 20 years ago )
>
>At 10:23 AM 1/2/2003 -0800, Jacob wrote:
>
> >Happy Birthday to you
> >Happy Birthday to you
> >Happy Birthday Dear Internet
> >Happy Birthday to you...
> >
> >20 years old
> >
> >
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Robert Bailey
So are we talking about the birth of a protocol, and not the internet
itself? A, happy birthday TCP/IP then, heh. So when we going to IPV6
already? heh

-Original Message-
From: Mark Broner [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 10:52 AM
To: CF-Talk
Subject: Re: Happy Birthday!! (Sorry. Wrong List)

On 1 January 1983 the Advanced Research Projects Agency Network
(Arpanet) of
the US Department of Defence - the forerunner of the internet - was
switched
to the TCP/IP protocol.

http://www.vnunet.com/News/1137772



- Original Message -
From: "Rob Rohan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 02, 2003 11:46 AM
Subject: RE: Happy Birthday!! (Sorry. Wrong List)


> ARPA's Program Plan for the ARPANET was titled "Resource Sharing
Computer
> Networks". It was submitted June 3, 1968, and approved by the Director
June
> 21, 1968.
>
> United States Defense Advanced Research Project Agency (ARPA)
Established
in
> 1969
>
> 2003 - 1969 = 34
>
> 20?
>
> Rob
>
> -Original Message-
> From: Robert Bailey [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:30 AM
> To: CF-Talk
> Subject: RE: Happy Birthday!! (Sorry. Wrong List)
>
>
> Wow, has it been 20 years?
>
> -Original Message-
> From: Jacob [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:25 AM
> To: CF-Talk
> Subject: Happy Birthday!! (Sorry. Wrong List)
>
> Was meant for CF-Community.
>
> CF-Community
> CF-List
>
> right next to each other in my address book.
>
> Sorry
>
>
>
> 

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



RE: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Everett, Al
Not the internet so much as TCP/IP.

http://www.smh.com.au/articles/2003/01/02/1041196726476.html

Follow-ups to cf-community, please.

> -Original Message-
> From: Rob Rohan [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 1:46 PM
> To: CF-Talk
> Subject: RE: Happy Birthday!! (Sorry. Wrong List)
> 
> 
> ARPA's Program Plan for the ARPANET was titled "Resource 
> Sharing Computer
> Networks". It was submitted June 3, 1968, and approved by the 
> Director June
> 21, 1968.
> 
> United States Defense Advanced Research Project Agency (ARPA) 
> Established in
> 1969
> 
> 2003 - 1969 = 34
> 
> 20?
> 
> Rob
> 
> -Original Message-
> From: Robert Bailey [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:30 AM
> To: CF-Talk
> Subject: RE: Happy Birthday!! (Sorry. Wrong List)
> 
> 
> Wow, has it been 20 years?
> 
> -Original Message-
> From: Jacob [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:25 AM
> To: CF-Talk
> Subject: Happy Birthday!! (Sorry. Wrong List)
> 
> Was meant for CF-Community.
> 
> CF-Community
> CF-List
> 
> right next to each other in my address book.
> 
> Sorry
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Mark Broner
On 1 January 1983 the Advanced Research Projects Agency Network (Arpanet) of
the US Department of Defence - the forerunner of the internet - was switched
to the TCP/IP protocol.

http://www.vnunet.com/News/1137772



- Original Message -
From: "Rob Rohan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 02, 2003 11:46 AM
Subject: RE: Happy Birthday!! (Sorry. Wrong List)


> ARPA's Program Plan for the ARPANET was titled "Resource Sharing Computer
> Networks". It was submitted June 3, 1968, and approved by the Director
June
> 21, 1968.
>
> United States Defense Advanced Research Project Agency (ARPA) Established
in
> 1969
>
> 2003 - 1969 = 34
>
> 20?
>
> Rob
>
> -Original Message-
> From: Robert Bailey [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:30 AM
> To: CF-Talk
> Subject: RE: Happy Birthday!! (Sorry. Wrong List)
>
>
> Wow, has it been 20 years?
>
> -Original Message-
> From: Jacob [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 10:25 AM
> To: CF-Talk
> Subject: Happy Birthday!! (Sorry. Wrong List)
>
> Was meant for CF-Community.
>
> CF-Community
> CF-List
>
> right next to each other in my address book.
>
> Sorry
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Robert Bailey
I wrote that response without really thinking, lol. Then I sat back to
think a bit after I realized that the internet was here before I was
born and I am older then 20, lol

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 10:46 AM
To: CF-Talk
Subject: RE: Happy Birthday!! (Sorry. Wrong List)

ARPA's Program Plan for the ARPANET was titled "Resource Sharing
Computer
Networks". It was submitted June 3, 1968, and approved by the Director
June
21, 1968.

United States Defense Advanced Research Project Agency (ARPA)
Established in
1969

2003 - 1969 = 34

20?

Rob

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 10:30 AM
To: CF-Talk
Subject: RE: Happy Birthday!! (Sorry. Wrong List)


Wow, has it been 20 years?

-Original Message-
From: Jacob [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 10:25 AM
To: CF-Talk
Subject: Happy Birthday!! (Sorry. Wrong List)

Was meant for CF-Community.

CF-Community
CF-List

right next to each other in my address book.

Sorry




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



Re: Happy Birthday!!

2003-01-02 Thread Jeffry Houser
  Moved from cf-talk.

  Today is the birthday specifically?
  I wonder how you define the birth of the Internet.  It was something a 
long-time in creating and all that.
  I bet it has been longer than 20 years.  ( Research started a lot longer 
than 20 years ago )

At 10:23 AM 1/2/2003 -0800, Jacob wrote:

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



RE: Web Hosting for CFMX and MySQL

2003-01-02 Thread Kevin Graeme
Thanks.

> -Original Message-
> From: Chris Kief [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 12:43 PM
> To: CF-Talk
> Subject: RE: Web Hosting for CFMX and MySQL
>
>
> It's a skinned version of Ensim (http://www.ensim.com).
>
> chris
>
>
> -Original Message-
> From: Kevin Graeme [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 7:13 AM
> To: CF-Talk
> Subject: RE: Web Hosting for CFMX and MySQL
>
> Wow. Nice control panel for that hosting! Anyone know what it is?
>
> -Kevin
>
> > -Original Message-
> > From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, January 02, 2003 5:02 AM
> > To: CF-Talk
> > Subject: Re: Web Hosting for CFMX and MySQL
> >
> >
> > > Does anyone know of any web hosting company that provides the above
> > > solution?
> >
> > I never tried them, since I try to stay away from MySQL and
> still looking
> > for a CF/Postgres host:
> >
> > http://www.mediatemple.net/
> >
> > Massimo
> >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Happy Birthday!!

2003-01-02 Thread Smith, Matthew P -CONT(DYN)
http://forums.fark.com/cgi/fark/comments.pl?IDLink=394524


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 12:43 PM
To: CF-Talk
Subject: RE: Happy Birthday!!

Wait, nm, wasn't it born in 1969? Yeah yeah, Oct 29, 1969 when the first
2 computers talked to each other over the network, Sept 2 when the first
computer talked to a router of the same year, so 20 years of what? And
mosaic browser came out in 1993. OK, I am lost. I bite, what came out 20
years ago?

-Original Message-
From: Jacob [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 10:24 AM
To: CF-Talk
Subject: Happy Birthday!!

Happy Birthday to you
Happy Birthday to you
Happy Birthday Dear Internet
Happy Birthday to you...

20 years old



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



RE: Web Hosting for CFMX and MySQL

2003-01-02 Thread Russ
Isn't there an issue with Ensim and CFMX?

We just switched to Webmin and I thought that some incompatibilities
with Ensim was one of the reasons.

> -Original Message-
> From: Chris Kief [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 12:43 PM
> To: CF-Talk
> Subject: RE: Web Hosting for CFMX and MySQL
> 
> 
> It's a skinned version of Ensim (http://www.ensim.com).
> 
> chris
> 
> 
> -Original Message-
> From: Kevin Graeme [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 7:13 AM
> To: CF-Talk
> Subject: RE: Web Hosting for CFMX and MySQL
> 
> Wow. Nice control panel for that hosting! Anyone know what it is?
> 
> -Kevin
> 
> > -Original Message-
> > From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, January 02, 2003 5:02 AM
> > To: CF-Talk
> > Subject: Re: Web Hosting for CFMX and MySQL
> >
> >
> > > Does anyone know of any web hosting company that provides 
> the above
> > > solution?
> >
> > I never tried them, since I try to stay away from MySQL and 
> still looking
> > for a CF/Postgres host:
> >
> > http://www.mediatemple.net/
> >
> > Massimo
> >
> > 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Rob Rohan
ARPA's Program Plan for the ARPANET was titled "Resource Sharing Computer
Networks". It was submitted June 3, 1968, and approved by the Director June
21, 1968.

United States Defense Advanced Research Project Agency (ARPA) Established in
1969

2003 - 1969 = 34

20?

Rob

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 10:30 AM
To: CF-Talk
Subject: RE: Happy Birthday!! (Sorry. Wrong List)


Wow, has it been 20 years?

-Original Message-
From: Jacob [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 02, 2003 10:25 AM
To: CF-Talk
Subject: Happy Birthday!! (Sorry. Wrong List)

Was meant for CF-Community.

CF-Community
CF-List

right next to each other in my address book.

Sorry



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



RE: Happy Birthday!!

2003-01-02 Thread Robert Bailey
Wait, nm, wasn't it born in 1969? Yeah yeah, Oct 29, 1969 when the first
2 computers talked to each other over the network, Sept 2 when the first
computer talked to a router of the same year, so 20 years of what? And
mosaic browser came out in 1993. OK, I am lost. I bite, what came out 20
years ago?

-Original Message-
From: Jacob [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 10:24 AM
To: CF-Talk
Subject: Happy Birthday!!

Happy Birthday to you
Happy Birthday to you
Happy Birthday Dear Internet
Happy Birthday to you...

20 years old


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



RE: Web Hosting for CFMX and MySQL

2003-01-02 Thread Chris Kief
It's a skinned version of Ensim (http://www.ensim.com).

chris


-Original Message-
From: Kevin Graeme [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 7:13 AM
To: CF-Talk
Subject: RE: Web Hosting for CFMX and MySQL

Wow. Nice control panel for that hosting! Anyone know what it is?

-Kevin

> -Original Message-
> From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 02, 2003 5:02 AM
> To: CF-Talk
> Subject: Re: Web Hosting for CFMX and MySQL
>
>
> > Does anyone know of any web hosting company that provides the above
> > solution?
>
> I never tried them, since I try to stay away from MySQL and still looking
> for a CF/Postgres host:
>
> http://www.mediatemple.net/
>
> Massimo
>
> 

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



RE: Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Robert Bailey
Wow, has it been 20 years?

-Original Message-
From: Jacob [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 10:25 AM
To: CF-Talk
Subject: Happy Birthday!! (Sorry. Wrong List)

Was meant for CF-Community.

CF-Community
CF-List

right next to each other in my address book.

Sorry


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



Re: Page context

2003-01-02 Thread Paul Hastings
> You can manually cache these variables in the application scope, but I
> was looking for something more specific. An example of such data might
> be: a default sort order, l10n texts etc.

since you mentioned locales, the wheels will fly off in an environment where
locales are user (session) based.

> So this would work like a normal client or session variable, but these
> variables would be unique for each page (haven't though about includes

coming from an i18n world i would argue for unique user/pages. or am i
misunderstanding your intent?

> keywords etc. One could store these in the clientscope or the session
> scope, but then these would be accessible from any other page aswell. So
> in this case there would be a pageSession and a pageClient scope to
> handle these kinds of data.

ah yes. makes sense.

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



Happy Birthday!! (Sorry. Wrong List)

2003-01-02 Thread Jacob
Was meant for CF-Community.

CF-Community
CF-List

right next to each other in my address book.

Sorry

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



Happy Birthday!!

2003-01-02 Thread Jacob
Happy Birthday to you
Happy Birthday to you
Happy Birthday Dear Internet
Happy Birthday to you...

20 years old

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



CFMX / JDBC err while SQL Query Analyzer OK

2003-01-02 Thread Li Chunshen \(Don\)
A simple query against a SQL2000 database as follows:
select top 10
OrderID,ProductID,UnitPrice,Quantity,Discount,Amount
from [dbo].[Order Details] 
order by OrderID desc 

CFMX using JDBC for connection throws the following
err:
[Macromedia][SQLServer JDBC Driver]Value can not be
converted to requested type. 
while SQL Analyzer executes fine and returns expected
resultsets.

Data type:
int(4), int(4), money(8), smallint(2), real(4), 
real(4) NULLABLE (only this column)

SAMPLE DATA:
10248   11  14  12  0   168
10248   42  9.8 10  0   98
10248   72  34.85   0   174
10249   14  18.69   0   167.4
10249   51  42.440  0   1696
10250   41  7.7 10  0   77
10250   51  42.435  0.151261.4

What's going on?
I'd like to make 'friends' with CFMX but CFMX doesn't
seem to feel the same way, but we're in the same boat,
so, we are stuck together now.

Thanks.

DL



__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Instantiated component reference

2003-01-02 Thread Raymond Camden
Try bracket notation. Assume X is the UUID:



===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

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

> -Original Message-
> From: Robert Polickoski [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, January 02, 2003 11:03 AM
> To: CF-Talk
> Subject: Instantiated component reference
> 
> 
> Hello all,
> 
> I am trying to set a local variable in an instantiated component 
> from outside the component.  It has a reference ID that is 
> assigned by the server using CreateUUID().  However, when I try to 
> reference it, I get the below error.  Does anybody have any 
> suggestions?
> 
> 
> The string "SERVER.stObjects.7FCC2AC7-ABAA-1582-
> E7F8A4739E33862B.subMenuVisibility.ulAuthorMenu" is not a valid 
> ColdFusion variable name.  
> Valid variable names must start with a letter, and can only 
> contain letter, numbers, and underscores.  
> 
> 
> Thank you in advance.
> 
> Robert J. Polickoski
> Senior Programmer, ISRD Inc.
> (540) 842-6339
> [EMAIL PROTECTED]
> AIM - RobertJFP 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Tutorials

2003-01-02 Thread Kris Pilles
I think Ben Forta also has a beginner CF website...


Webmonkey is good too



-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 12:48 PM
To: CF-Talk
Subject: Tutorials


I've got a couple of high school kids who dropped by the office the 
other day. They are taking a class on web development. After speaking 
with them for a couple of hours they are really jazzed about getting 
into CF, but all of the tutorials that they have seen up til now are of 
a more advanced nature. Does anyone know a good "ground-up" tutorial 
site they could tap into?

Cutter


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



RE: Tutorials

2003-01-02 Thread Dharmesh Goel
Came across this on the cf community list.

http://www.easycfm.com

Dharmesh

-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]]
Sent: January 2, 2003 12:48 PM
To: CF-Talk
Subject: Tutorials


I've got a couple of high school kids who dropped by the office the 
other day. They are taking a class on web development. After speaking 
with them for a couple of hours they are really jazzed about getting 
into CF, but all of the tutorials that they have seen up til now are of 
a more advanced nature. Does anyone know a good "ground-up" tutorial 
site they could tap into?

Cutter


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



Re: Tutorials

2003-01-02 Thread Bruce Sorge
webmonkey.com has some good beginner and intermediate tutorials.
- Original Message -
From: "Cutter (CF_Talk)" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, January 02, 2003 11:47 AM
Subject: Tutorials


> I've got a couple of high school kids who dropped by the office the
> other day. They are taking a class on web development. After speaking
> with them for a couple of hours they are really jazzed about getting
> into CF, but all of the tutorials that they have seen up til now are of
> a more advanced nature. Does anyone know a good "ground-up" tutorial
> site they could tap into?
>
> Cutter
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Looking for a great CFMX book to buy!

2003-01-02 Thread Cutter (CF_Talk)
Ben Forta has a slew of new books coming out on MX dev. Check out his 
site benforta.com

Cutter

Che Vilnonis wrote:

>I really enjoyed the "Professional CF 5.0" by WROX Press.
>Now I'm gonna dive into MX.
>Can anyone recommend a GREAT book for CFMX?
>
>Thanks.
>
>Ché Vilnonis
>Application Developer
>Advertising Systems Incorporated
>8470C Remington Avenue
>Pennsauken, NJ 08110
>p: 856.488.2211
>f: 856.488.1990
>www.asitv.com
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Tutorials

2003-01-02 Thread Robert Bailey
I have always suggested www.webmoney.com

Seems to have helped a lot of my friends


-Original Message-
From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 02, 2003 9:48 AM
To: CF-Talk
Subject: Tutorials

I've got a couple of high school kids who dropped by the office the 
other day. They are taking a class on web development. After speaking 
with them for a couple of hours they are really jazzed about getting 
into CF, but all of the tutorials that they have seen up til now are of 
a more advanced nature. Does anyone know a good "ground-up" tutorial 
site they could tap into?

Cutter


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



  1   2   >