RE: Log reporting error - No actual error

2002-09-17 Thread Mosh Teitelbaum

Jeez.  Well, I can't see any problems in the code that you posted.

If you try to CFOUTPUT FORM.FormFields, what does it give you?  And, if it
gives you a list as you would expect, try iterating over that list,
evaluating each one as in:


FORM.FormFields = #FORM.FormFields#


FORM.#CurrEle# = 
#Evaluate("FORM.#CurrEle#")#


FORM.FormFields is Not Defined


--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


> -Original Message-
> From: Scott Brady [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 3:12 PM
> To: CF-Talk
> Subject: RE: Log reporting error - No actual error
>
>
> I can give you the relevant parts, without posting all of the actual code:
>
> 
> 
>"
>"
> 
>
> 
> INSERT INTO Orders
> (
> FirstName
> )
> VALUES
> (
> '#form.FirstName#'
> )
> 
>
>
> .. and then it displays the next page.
>
> (That page has a form on it, as well, which does the same thing
> with submissions).
>
> It appears to happen with every field in the form (so, if you
> were to cfparam FORM.firstname, then the error would report for
> FORM.lastname [the next field]).
>
> 
> Scott Brady
> http://www.scottbrady.net/
>
>
>
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Joe Eugene

Would the below be an easy change in CFMX?


or

int foobar = 1;


Would declare a coldfusion.runtime.Integer instead of the following.


or

foobar = 1;


Would declare a coldfusion.runtime.Variable.

Joe



> -Original Message-
> From: Matt Liotta [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, September 18, 2002 1:12 AM
> To: CF-Talk
> Subject: RE: FW: Jsp Vs Cfm (CFMX) -- Test Code
> 
> 
> Well CF could use the same technique that VB did. VB optionally allows
> variables to be declared as a type. If no type is declared then the
> variable is considered of type variant. For example, the following could
> work with CF.
> 
> 
> or
> 
>   int foobar = 1;
> 
> 
> Would declare a coldfusion.runtime.Integer instead of the following.
> 
> 
> or
> 
>   foobar = 1;
> 
> 
> Would declare a coldfusion.runtime.Variable.
> 
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> 888-408-0900 x901
> 
> > -Original Message-
> > From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 17, 2002 9:56 PM
> > To: CF-Talk
> > Subject: Re: FW: Jsp Vs Cfm (CFMX) -- Test Code
> > 
> > On Tuesday, September 17, 2002, at 09:41 , Dick Applebaum wrote:
> > > Rather I suggest that CFMX allow us to tell it a variable's type
> > > (optionally) so that it can use that to generate efficient code,
> > 
> > That would make ColdFusion quite a different language! :)
> > 
> > Yes, it's certainly one possible approach, allowing the user to
> declare
> > variables with a type (and extending the CF types to include "integer"
> > would also be a useful enhancement, instead of just "numeric" and
> "binary"
> > ).
> > 
> > I actually prefer the code analysis approach since it allows CFMX's
> > compiler to evolve without requiring users to change their code and
> could
> > substantially speed up certain constructs in legacy code.
> > 
> > "If you're not annoying somebody, you're not really alive."
> > -- Margaret Atwood
> > 
> > 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Joe Eugene

Sean,

I would love to see this happen... an option to declare Types...
same a locksnothing is enforced.. kinda deal..

> Yes, it's certainly one possible approach, allowing the user to declare
> variables with a type (and extending the CF types to include "integer"
> would also be a useful enhancement, instead of just "numeric" and "binary"
> ).

Joe

> -Original Message-
> From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, September 18, 2002 12:56 AM
> To: CF-Talk
> Subject: Re: FW: Jsp Vs Cfm (CFMX) -- Test Code
>
>
> On Tuesday, September 17, 2002, at 09:41 , Dick Applebaum wrote:
> > Rather I suggest that CFMX allow us to tell it a variable's type
> > (optionally) so that it can use that to generate efficient code,
>
> That would make ColdFusion quite a different language! :)
>
>
> I actually prefer the code analysis approach since it allows CFMX's
> compiler to evolve without requiring users to change their code and could
> substantially speed up certain constructs in legacy code.
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Dick Applebaum

On Tuesday, September 17, 2002, at 10:10 PM, Sean A Corfield wrote:

> On Tuesday, September 17, 2002, at 09:18 , Dick Applebaum wrote:
>> But, if the problem is caused by lack of typing, it seems to me that
>> this is something MM can fix rather easily by allowing type definition
>> by those who want to do it, and generating efficient code if it is
>> present or use the current generation if it is not.
>
> Not "easily", no. Adding type specifications to a type-less language -
> especially *optional* type specifications - complicates the compiler to
> quite a degree. Every reference to a variable has to be checked for 
> known
> type information and, if present, either generate the appropriate code 
> or
> warn of inappropriate usage. (If not present, it generates the same 
> code
> as now). Read that carefully: *every* reference. That potentially 
> impacts
> a lot of places in the code generator.
>

Sean, even I can write a  pre-compile scan that builds a table of any 
variables that are defined and typed -- and the a post-compile scan 
that replaces the currently generated code with optimal code for any 
variables that are defined.  It'd be a kludge, but it would work. 
(where is that old Pascal book that with the compiler example?)

You are giving reasons that it would be hard to do it right -- 
admittedly true!  However the question should be: is it worth doing? 
Not today or tomorrow, but whenever it makes sense for competitive, 
sales and technical reasons!

>> I think that CF would lose little and gain quite a lot if it allowed 
>> an
>> optional type definition.
>
> I agree that being able to declare types in CF would be a nice 
> enhancement.
>   But it would be a major change to the language.

Yes it would -- but being optional it would be transparent to those who 
did not use it.

>
>> Think of it as extending the reach of CF to places it could not go
>> before.
>
> And then folks will want bitwise operations and full Java expression
> syntax inside cfscript! :)
>

If these operations  were justified, why not (although, really,  how 
much demand is there for it -- we aren't using CF to write compilers, 
file systems or db engines -- just how often does one use bitmaps? ).

>> BTW, nulls should also be allowed in CF!
>
> Hah! Adding 'null' to a language that doesn't currently support it is a
> *major* change and it's mostly a run-time change. It would cause a huge
> ripple through the CF language to add null because the semantics need 
> to
> be defined (in documentation!) and it could impact every single 
> expression
> in the language. Consider isStruct() - should isStruct( null ) return
> false or should it just fail with a null pointer exception (which is 
> what
> happens now if you manage to feed it a null). What about isDefined()?
> Right now, if you manage to create a struct key entry with a null 
> value,
> isDefined( "str.key" ) is false but structKeyExists( str, "key" ) is 
> true.
>   In fact isDefined( "v" ) is false whenever either 'v' is not 
> declared *or*
>   it has a null value.

Hah, I knew that would get you!   OK, I'll drop down to Java just to 
get a null.  But the ability to pass a null only in cfobject would be a 
start -- yes it would apply to all variable types (oh, there *are* 
variable types), but the changes would be localized to the cfobject 
tag, and an IsNull function that are sensitive to all variable types.

But, null is something that CF eventually must address -- surprised 
that they didn't do it in CFMX.

Just remember that these are not meant as criticisms, but as ways to 
make one of the best systems even better --

If we didn't care, we wouldn't bother!

Dick

"All the woulda, coulda, shouldas lyin' in the sun...
..talkin' 'bout what they woulda, coulda, shoulda done.

All those woulda, coulda, shouldas went out and hid
.. from one little did!"

- Shel Silverstein


>
> Sean A Corfield -- http://www.corfield.org/blog/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFChart w/o video card possible?

2002-09-17 Thread Fitch, Tyler

Hey Eric,
 
We ran into the same thing!  it was fixed once we installed a video driver.  we 
originally thought it might be a generator conflict(don't ask why we still had that).
 
We brought it up with MM but never heard back on it.  I'm glad someone else 
encountered the problem.
 
I don't know too much to do other than install a video driver.  It needs it for 
something or other.
 
HTH,
 
t

-Original Message- 
From: Eric [mailto:[EMAIL PROTECTED]] 
Sent: Tue 9/17/2002 4:33 PM 
To: CF-Talk 
Cc: 
Subject: CFChart w/o video card possible?



An odd question, but one I had to ask.  I'm currently evaluating CFMX at
work and was given a dinky old Pentium 2 to do the testing on.
Recently, the company was able to scrounge up a MaxAttach 6000 NAS
server for me (a dual P3 800 rack mounted network attached storage
server, incase you don't know).  So I installed CFMX on the NAS server
and it's really been flying; until I tried a little application I built
using CFCHART.  It gives me a 500 error about something amiss in the
graphing engine, and it worked fine on the P2.  Doing some more
research, it looks to be a video card driver issue.



Well, the thing is, it's a NAS unit, with no video card.  When I connect
trough terminal services and look at the display adapter in the control
panel, it's listed as "null VGA".  Any ideas?  Thoughts?



Thanks,

RiX



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Dick Applebaum

Yes!

On Tuesday, September 17, 2002, at 10:12 PM, Matt Liotta wrote:

> Well CF could use the same technique that VB did. VB optionally allows
> variables to be declared as a type. If no type is declared then the
> variable is considered of type variant. For example, the following 
> could
> work with CF.
>
> 
> or
> 
>   int foobar = 1;
> 
>
> Would declare a coldfusion.runtime.Integer instead of the following.
>
> 
> or
> 
>   foobar = 1;
> 
>
> Would declare a coldfusion.runtime.Variable.
>
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> 888-408-0900 x901
>
>> -Original Message-
>> From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
>> Sent: Tuesday, September 17, 2002 9:56 PM
>> To: CF-Talk
>> Subject: Re: FW: Jsp Vs Cfm (CFMX) -- Test Code
>>
>> On Tuesday, September 17, 2002, at 09:41 , Dick Applebaum wrote:
>>> Rather I suggest that CFMX allow us to tell it a variable's type
>>> (optionally) so that it can use that to generate efficient code,
>>
>> That would make ColdFusion quite a different language! :)
>>
>> Yes, it's certainly one possible approach, allowing the user to
> declare
>> variables with a type (and extending the CF types to include "integer"
>> would also be a useful enhancement, instead of just "numeric" and
> "binary"
>> ).
>>
>> I actually prefer the code analysis approach since it allows CFMX's
>> compiler to evolve without requiring users to change their code and
> could
>> substantially speed up certain constructs in legacy code.
>>
>> "If you're not annoying somebody, you're not really alive."
>> -- Margaret Atwood
>>
>>
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Matt Liotta

Well CF could use the same technique that VB did. VB optionally allows
variables to be declared as a type. If no type is declared then the
variable is considered of type variant. For example, the following could
work with CF.


or

int foobar = 1;


Would declare a coldfusion.runtime.Integer instead of the following.


or

foobar = 1;


Would declare a coldfusion.runtime.Variable.

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

> -Original Message-
> From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 9:56 PM
> To: CF-Talk
> Subject: Re: FW: Jsp Vs Cfm (CFMX) -- Test Code
> 
> On Tuesday, September 17, 2002, at 09:41 , Dick Applebaum wrote:
> > Rather I suggest that CFMX allow us to tell it a variable's type
> > (optionally) so that it can use that to generate efficient code,
> 
> That would make ColdFusion quite a different language! :)
> 
> Yes, it's certainly one possible approach, allowing the user to
declare
> variables with a type (and extending the CF types to include "integer"
> would also be a useful enhancement, instead of just "numeric" and
"binary"
> ).
> 
> I actually prefer the code analysis approach since it allows CFMX's
> compiler to evolve without requiring users to change their code and
could
> substantially speed up certain constructs in legacy code.
> 
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
> 
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



code optimization (was RE: Jsp Vs Cfm (CFMX) -- Test Code)

2002-09-17 Thread Matt Liotta

After having seen thread after thread on this list and others discussing
code optimization for CF I am left with the following impression. People
seem to be missing the forest for the trees.

Every idea/technique that has been suggested thus far for code
optimization is a waste of time for almost all applications. Sure some
of these ideas/techniques code save a few milliseconds here and there,
but they offer very small gains in scalability. There are much simpler
ways to achieve greater scalability in less time than code optimization
e.g. caching. I suggest people spend their time seeking out these ways
instead of spending time on code optimization. You should only spend
time on code optimization after every other performance enhancement has
been tried. Further, servers are so cheap these days that adding
additional hardware tends to be far cheaper than developer time.

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

> -Original Message-
> From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 9:18 PM
> To: CF-Talk
> Subject: Re: Jsp Vs Cfm (CFMX) -- Test Code
> 
> Daron
> 
> I think the point that Joe, I and some others are trying too make is
> that we want *more* optimized CF-generated Java code rather than code
> in Java itself.
> 
> The reason that a knowledgeable Java person like joe is looking at the
> CF-Generated code is to see if he can determine why it is so slow --
so
> that maybe something can be done to improve the performance of
> CF-generated code by:
> 
> 1) avoiding things that cause inefficient code generation
> 
> 2) making suggestions how/where code-generation could be improved.
> 
> I am not a Java heavy, and I have the same goal.  I can look at the
> generated code and see it is correct, but inefficient (though I can't
> say how).
> 
> But, if the problem is caused by lack of typing, it seems to me that
> this is something MM can fix rather easily by allowing type definition
> by those who want to do it, and generating efficient code if it is
> present or use the current generation if it is not.
> 
> Sean made a point that CF has to assume that numbers (including loop
> counters) are real -- I can understand that -- if CF is not told
> differently.
> 
> However if one had the option of defining a type attribute of long for
> x, Cf could generate much better code.
> 
> I've programmed a lot of loops in since my first programming class in
> 1956 (yes I am old).  I have yet to use a real as a loop counter
except
> in some classroom problem.
> 
> I think that CF would lose little and gain quite a lot if it allowed
an
> optional type definition.
> 
> Then it could generate better Java code.
> 
> And there would be less need to program parts of your application in
> Java.
> 
> Think of it as extending the reach of CF to places it could not go
> before.
> 
> BTW, nulls should also be allowed in CF!
> 
> Dick
> 
> On Tuesday, September 17, 2002, at 11:19 PM, Darron J. Schall wrote:
> 
> > I see the argument you're making... but you misread/misunderstood
the
> > point of what I was saying
> >
> > CFMX is awesome in that it allows you to develop applications very
> > rapidly. Compared to java, it's much simpler and allows for faster
> > development.  Java is awesome in that it allows for complex
> > enterprise-level computations to be done in an efficient/optimized
> > manner.  It may take longer to code if you don't know it that well,
but
> > if you don't know it that well then you don't fall into the category
of
> > people that I was trying to make a point to.
> >
> > It makes sense from a programming standpoint to handle the
"difficult"
> > things in java where you know your code will be as optimized as you
can
> > make it, rather than trying to make the CFMX compiler optimize code
> > that
> > you could probably better optimize yourself (I apologize for this
> > sounding redundant, it's late...).  When you're digging into the
java
> > files generated by the pages and looking at how it could be
optimized,
> > doesn't it make sense to just write the optimized code in java if
you
> > know what you're doing?  If you don't agree, then, again, you're
> > missing
> > the point.  You still use CFMX, but when performance counts and
highly
> > optimized files are necessary, it starts becoming more of a
front-end
> > with a java enterprise-level backend on large-scale applications.
> >
> > I wasn't knocking CFMX at all -- I was saying that it makes sense to
> > optimize your own "complex" code with java if you've got the
> > experience... Java + CFMX is a great marriage, when used in
conjunction
> > at the right times.  :-)
> >
> > -Darron
> >
> > -Original Message-
> > From: Joe Eugene [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 17, 2002 2:29 PM
> > To: CF-Talk
> > Subject: RE: Jsp Vs Cfm (CFMX) -- Test Code
> >
> >> That way you don't have to rely on the CFMX compiler at all, and
you
>

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Sean A Corfield

On Tuesday, September 17, 2002, at 09:18 , Dick Applebaum wrote:
> But, if the problem is caused by lack of typing, it seems to me that
> this is something MM can fix rather easily by allowing type definition
> by those who want to do it, and generating efficient code if it is
> present or use the current generation if it is not.

Not "easily", no. Adding type specifications to a type-less language - 
especially *optional* type specifications - complicates the compiler to 
quite a degree. Every reference to a variable has to be checked for known 
type information and, if present, either generate the appropriate code or 
warn of inappropriate usage. (If not present, it generates the same code 
as now). Read that carefully: *every* reference. That potentially impacts 
a lot of places in the code generator.

> I think that CF would lose little and gain quite a lot if it allowed an
> optional type definition.

I agree that being able to declare types in CF would be a nice enhancement.
  But it would be a major change to the language.

> Think of it as extending the reach of CF to places it could not go
> before.

And then folks will want bitwise operations and full Java expression 
syntax inside cfscript! :)

> BTW, nulls should also be allowed in CF!

Hah! Adding 'null' to a language that doesn't currently support it is a 
*major* change and it's mostly a run-time change. It would cause a huge 
ripple through the CF language to add null because the semantics need to 
be defined (in documentation!) and it could impact every single expression 
in the language. Consider isStruct() - should isStruct( null ) return 
false or should it just fail with a null pointer exception (which is what 
happens now if you manage to feed it a null). What about isDefined()? 
Right now, if you manage to create a struct key entry with a null value, 
isDefined( "str.key" ) is false but structKeyExists( str, "key" ) is true.
  In fact isDefined( "v" ) is false whenever either 'v' is not declared *or*
  it has a null value.

Sean A Corfield -- http://www.corfield.org/blog/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Sean A Corfield

On Tuesday, September 17, 2002, at 09:41 , Dick Applebaum wrote:
> Rather I suggest that CFMX allow us to tell it a variable's type
> (optionally) so that it can use that to generate efficient code,

That would make ColdFusion quite a different language! :)

Yes, it's certainly one possible approach, allowing the user to declare 
variables with a type (and extending the CF types to include "integer" 
would also be a useful enhancement, instead of just "numeric" and "binary"
).

I actually prefer the code analysis approach since it allows CFMX's 
compiler to evolve without requiring users to change their code and could 
substantially speed up certain constructs in legacy code.

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Dick Applebaum

Sean

I was not suggesting that CFMX try to track an variable to determine  
its type.

Rather I suggest that CFMX allow us to tell it a variable's type  
(optionally) so that it can use that to generate efficient code,

How hard can it be -- even VBS and JavaScript can do it?

Sure, if you don't do things right the code will break -- but the user  
who wants efficiency takes on additional responsibility. -- makes  
development/debugging somewhat more difficult (but less difficult than  
dropping down to Java).

You wouldn't do it everywhere in a program -- just where it makes sense.

Again, I say we are told to lock and scope for best practices -- why  
cant we type where it counts?

Dick

On Tuesday, September 17, 2002, at 08:00 PM, Sean A Corfield wrote:

> On Tuesday, September 17, 2002, at 09:06 , Dick Applebaum wrote:
>>for
>> (X.set(((java.lang.Object)("1")));_compare(this._autoscalarize(X),1000 
>> 00
>> 0.0)<=0;X.set(coldfusion.runtime.Cast._Object((coldfusion.runtime.Cast 
>> ._
>> double(this._autoscalarize(X)))+(1.0{{
>
> Note the assumption that all numbers in CF are (potentially) floating
> point! CF doesn't have a built-in 'int' type so there is no way to tell
> the compiler not to do the more complicated stuff... except... well...
> many years ago (when I was working in the compiler industry) I worked  
> on a
> deep-flow code analyzer that could track values (and types) and make
> optimizations based on what it found... That sort of analysis *could*
> determine that x and loops were set to integers and adjust the code
> accordingly... however, it would need to introduce alias variables (of
> type 'int') that shadowed the real values and then determine that it  
> could
> hoist the real/shadow synchronization out of the loop. This sort of  
> stuff
> is *hard*... You have to consider 'threats' to variables that are being
> shadowed (i.e., anything that could change their value that isn't part  
> of
> the mainline code, e.g., a function call - which could set caller.x =  
> 123.
> 45).
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Dick Applebaum

Daron

I think the point that Joe, I and some others are trying too make is 
that we want *more* optimized CF-generated Java code rather than code 
in Java itself.

The reason that a knowledgeable Java person like joe is looking at the 
CF-Generated code is to see if he can determine why it is so slow -- so 
that maybe something can be done to improve the performance of 
CF-generated code by:

1) avoiding things that cause inefficient code generation

2) making suggestions how/where code-generation could be improved.

I am not a Java heavy, and I have the same goal.  I can look at the 
generated code and see it is correct, but inefficient (though I can't 
say how).

But, if the problem is caused by lack of typing, it seems to me that 
this is something MM can fix rather easily by allowing type definition 
by those who want to do it, and generating efficient code if it is 
present or use the current generation if it is not.

Sean made a point that CF has to assume that numbers (including loop 
counters) are real -- I can understand that -- if CF is not told 
differently.

However if one had the option of defining a type attribute of long for 
x, Cf could generate much better code.

I've programmed a lot of loops in since my first programming class in 
1956 (yes I am old).  I have yet to use a real as a loop counter except 
in some classroom problem.

I think that CF would lose little and gain quite a lot if it allowed an 
optional type definition.

Then it could generate better Java code.

And there would be less need to program parts of your application in 
Java.

Think of it as extending the reach of CF to places it could not go 
before.

BTW, nulls should also be allowed in CF!

Dick

On Tuesday, September 17, 2002, at 11:19 PM, Darron J. Schall wrote:

> I see the argument you're making... but you misread/misunderstood the
> point of what I was saying
>
> CFMX is awesome in that it allows you to develop applications very
> rapidly. Compared to java, it's much simpler and allows for faster
> development.  Java is awesome in that it allows for complex
> enterprise-level computations to be done in an efficient/optimized
> manner.  It may take longer to code if you don't know it that well, but
> if you don't know it that well then you don't fall into the category of
> people that I was trying to make a point to.
>
> It makes sense from a programming standpoint to handle the "difficult"
> things in java where you know your code will be as optimized as you can
> make it, rather than trying to make the CFMX compiler optimize code 
> that
> you could probably better optimize yourself (I apologize for this
> sounding redundant, it's late...).  When you're digging into the .java
> files generated by the pages and looking at how it could be optimized,
> doesn't it make sense to just write the optimized code in java if you
> know what you're doing?  If you don't agree, then, again, you're 
> missing
> the point.  You still use CFMX, but when performance counts and highly
> optimized files are necessary, it starts becoming more of a front-end
> with a java enterprise-level backend on large-scale applications.
>
> I wasn't knocking CFMX at all -- I was saying that it makes sense to
> optimize your own "complex" code with java if you've got the
> experience... Java + CFMX is a great marriage, when used in conjunction
> at the right times.  :-)
>
> -Darron
>
> -Original Message-
> From: Joe Eugene [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 2:29 PM
> To: CF-Talk
> Subject: RE: Jsp Vs Cfm (CFMX) -- Test Code
>
>> That way you don't have to rely on the CFMX compiler at all, and you
> can
>> work in all of your own optimizations, AND you don't have to deal with
> JSP
>> at all either.
>
>So what does the $5000 software do? Oh Yea i can start writing this
> with
>C#, that does NOT require any other software and it will still be
> faster
> right?
>So whats your argument to your CLIENT for using CFMX just "RAD"?
>
>  Joe
>
>> -Original Message-
>> From: Darron J. Schall [mailto:[EMAIL PROTECTED]]
>> Sent: Tuesday, September 17, 2002 4:12 PM
>> To: CF-Talk
>> Subject: Re: Jsp Vs Cfm (CFMX) -- Test Code
>>
>>
>> Just chiming in here...
>>
>> If you're doing some code that you know can be optimized (by
>> looking at the
>> java file produced by CFMX), then doesn't is make sense to just
>> optimize it
>> yourself in java?  I would imagine that if you ARE looking at the
>> java code,
>> then you at least know enough to get around.  If that's the case
>> and you're
>> really worried about performace, just write you own class and methods,
> and
>> call them via
>>
>> 
>
>>
>> Just my    0010 cents.
>>
>> -Darron
>>
>>
>>
>
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetp

Re: Flash Movies // https // WTF

2002-09-17 Thread Sean A Corfield

On Tuesday, September 17, 2002, at 08:01 , Tony Weeg wrote:
> cant figger out how to remove the flash player, i already tried that
> how doth i do that?

I searched mm.com for "uninstall flash player" and found this technote:

http://www.macromedia.com/support/flash/ts/documents/remove_player.htm

Sean A Corfield -- http://www.corfield.org/blog/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: For Jesse

2002-09-17 Thread Dick Applebaum

Absolutely--- Not!

I once ragged a contemporary for sloshing around in the "Bowels of BSD" 
-- not a pretty thought!

My only prior 'Nix experience is Quinx on PC (pre windows) and Yellow 
Dog Linux on the Mac -- both were more trouble than they were worth.

I ran across the quote in a column by Tim O'Reilly

http://www.macdevcenter.com/pub/a/mac/2002/09/17/switcher.html?page=3

The attribution is to Steven Champeon, a contributor to Unix Power 
Tools, 3rd Edition writes that OS X is for people who love Unix and the 
Mac

I laughed out loud when I read it & thought of Jesse -- could just as 
easily been for Matt!

Nothing meant here, except to try and share a laugh -- it is funny (at 
least to me).

Dick

Dick

On Tuesday, September 17, 2002, at 08:22 PM, Steve Foster wrote:

> I take it you were a BSD fan before OSX?

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: For Jesse

2002-09-17 Thread Steve Foster

I take it you were a BSD fan before OSX?
  - Original Message - 
  From: Dick Applebaum 
  To: CF-Talk 
  Sent: Tuesday, September 17, 2002 6:39 PM
  Subject: For Jesse


  BSD is for people who love Unix.
  Linux is for people who hate Microsoft.

  
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Darron J. Schall

I see the argument you're making... but you misread/misunderstood the
point of what I was saying

CFMX is awesome in that it allows you to develop applications very
rapidly. Compared to java, it's much simpler and allows for faster
development.  Java is awesome in that it allows for complex
enterprise-level computations to be done in an efficient/optimized
manner.  It may take longer to code if you don't know it that well, but
if you don't know it that well then you don't fall into the category of
people that I was trying to make a point to.  

It makes sense from a programming standpoint to handle the "difficult"
things in java where you know your code will be as optimized as you can
make it, rather than trying to make the CFMX compiler optimize code that
you could probably better optimize yourself (I apologize for this
sounding redundant, it's late...).  When you're digging into the .java
files generated by the pages and looking at how it could be optimized,
doesn't it make sense to just write the optimized code in java if you
know what you're doing?  If you don't agree, then, again, you're missing
the point.  You still use CFMX, but when performance counts and highly
optimized files are necessary, it starts becoming more of a front-end
with a java enterprise-level backend on large-scale applications.

I wasn't knocking CFMX at all -- I was saying that it makes sense to
optimize your own "complex" code with java if you've got the
experience... Java + CFMX is a great marriage, when used in conjunction
at the right times.  :-)

-Darron

-Original Message-
From: Joe Eugene [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 2:29 PM
To: CF-Talk
Subject: RE: Jsp Vs Cfm (CFMX) -- Test Code

> That way you don't have to rely on the CFMX compiler at all, and you
can
> work in all of your own optimizations, AND you don't have to deal with
JSP
> at all either.

   So what does the $5000 software do? Oh Yea i can start writing this
with
   C#, that does NOT require any other software and it will still be
faster
right?
   So whats your argument to your CLIENT for using CFMX just "RAD"?

 Joe

> -Original Message-
> From: Darron J. Schall [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 4:12 PM
> To: CF-Talk
> Subject: Re: Jsp Vs Cfm (CFMX) -- Test Code
>
>
> Just chiming in here...
>
> If you're doing some code that you know can be optimized (by
> looking at the
> java file produced by CFMX), then doesn't is make sense to just
> optimize it
> yourself in java?  I would imagine that if you ARE looking at the
> java code,
> then you at least know enough to get around.  If that's the case
> and you're
> really worried about performace, just write you own class and methods,
and
> call them via
>
> 

>
> Just my    0010 cents.
>
> -Darron
>
>
> 

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Flash Movies // https // WTF

2002-09-17 Thread Tony Weeg

cant figger out how to remove the flash player, i already tried that
how doth i do that?
tw

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 10:40 PM
To: CF-Talk
Subject: Re: Flash Movies // https // WTF


On Tuesday, September 17, 2002, at 05:19 , Tony Weeg wrote:
> I don't "think" anything is wrong, what I do think is that if
macromedia
> doesn't have the code base that is referenced in that line under an
> https type cert, will people have issues with that?

I don't know off-hand. We have https on the Online Store but that's on a

separate set of servers... I accessed the https version of the downloads

link and didn't get any security warnings (IE5.2). Sounds like your
system 
is a good candidate for a test? Maybe you could remove your Flash Player

and try the page to see what happens?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Sean A Corfield

On Tuesday, September 17, 2002, at 09:06 , Dick Applebaum wrote:
>for
> (X.set(((java.lang.Object)("1")));_compare(this._autoscalarize(X),10
> 0.0)<=0;X.set(coldfusion.runtime.Cast._Object((coldfusion.runtime.Cast._
> double(this._autoscalarize(X)))+(1.0{{

Note the assumption that all numbers in CF are (potentially) floating 
point! CF doesn't have a built-in 'int' type so there is no way to tell 
the compiler not to do the more complicated stuff... except... well... 
many years ago (when I was working in the compiler industry) I worked on a 
deep-flow code analyzer that could track values (and types) and make 
optimizations based on what it found... That sort of analysis *could* 
determine that x and loops were set to integers and adjust the code 
accordingly... however, it would need to introduce alias variables (of 
type 'int') that shadowed the real values and then determine that it could 
hoist the real/shadow synchronization out of the loop. This sort of stuff 
is *hard*... You have to consider 'threats' to variables that are being 
shadowed (i.e., anything that could change their value that isn't part of 
the mainline code, e.g., a function call - which could set caller.x = 123.
45).

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: run CF from db

2002-09-17 Thread Matthew Walker

The trick is simply to keep a permanent copy of the data as a file, then
it only needs to be compiled once, or at least once for each update.

> -Original Message-
> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 10:36 a.m.
> To: CF-Talk
> Subject: Re: run CF from db
> 
> 
> Nick Varner wrote:
> > Is there a way to evaluate Coldfusion after it is pulled 
> from a db instead
> > of CF thinking its text? 
> 
> Writing it to a temp file and cfincluding it is an option, 
> but I don't 
> recommend it. As soon as you are on CF MX, compilation will kill your 
> performance.
> 
> Jochem
> 
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: setCredentials() &

2002-09-17 Thread Sean A Corfield

On Tuesday, September 17, 2002, at 02:29 , Ben Johnson wrote:
> (Note that the  is not in the  because I don't
> want to maintain a session on the server-side but rather with Flash
> Remoting headers)

Beware: cfloginuser does not work outside cflogin! It seems to for the 
page you are on but it does not maintain the information beyond that 
single page invocation. That might be part of your problem.

> This code works great all the time except for the first time that we
> call the CFCs on the server after not using the app for a while.

So the session information has timed out...?

Sean A Corfield -- http://www.corfield.org/blog/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: run CF from db

2002-09-17 Thread Hal Helms

I haven't tried this trick with CFMX, but 18 months ago or so, Rick Moon
and I were faced with this problem: the situation required a LOT of code
to be stored in the DB and then executed dynamically. That meant writing
and then reading a file, which I was very concerned with for performance
reasons. We ended up creating a RAM disk and using that. We got
excellent performance. Now, that may all be different with CFMX, but may
be worth a look still.

Hal Helms
Preorder "Discovering ColdFusion Components (CFCs)" at
www.techspedition.com

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 6:36 PM
To: CF-Talk
Subject: Re: run CF from db


Nick Varner wrote:
> Is there a way to evaluate Coldfusion after it is pulled from a db 
> instead of CF thinking its text?

Writing it to a temp file and cfincluding it is an option, but I don't 
recommend it. As soon as you are on CF MX, compilation will kill your 
performance.

Jochem


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Flash Movies // https // WTF

2002-09-17 Thread Sean A Corfield

On Tuesday, September 17, 2002, at 05:19 , Tony Weeg wrote:
> I don't "think" anything is wrong, what I do think is that if macromedia
> doesn't have the code base that is referenced in that line under an
> https type cert, will people have issues with that?

I don't know off-hand. We have https on the Online Store but that's on a 
separate set of servers... I accessed the https version of the downloads 
link and didn't get any security warnings (IE5.2). Sounds like your system 
is a good candidate for a test? Maybe you could remove your Flash Player 
and try the page to see what happens?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Joe Eugene

> That way you don't have to rely on the CFMX compiler at all, and you can
> work in all of your own optimizations, AND you don't have to deal with JSP
> at all either.

   So what does the $5000 software do? Oh Yea i can start writing this with
   C#, that does NOT require any other software and it will still be faster
right?
   So whats your argument to your CLIENT for using CFMX just "RAD"?

 Joe

> -Original Message-
> From: Darron J. Schall [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 4:12 PM
> To: CF-Talk
> Subject: Re: Jsp Vs Cfm (CFMX) -- Test Code
>
>
> Just chiming in here...
>
> If you're doing some code that you know can be optimized (by
> looking at the
> java file produced by CFMX), then doesn't is make sense to just
> optimize it
> yourself in java?  I would imagine that if you ARE looking at the
> java code,
> then you at least know enough to get around.  If that's the case
> and you're
> really worried about performace, just write you own class and methods, and
> call them via
>
> 

>
> Just my    0010 cents.
>
> -Darron
>
>
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX vs Apache

2002-09-17 Thread Sarah Atkinson

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_000_01C25EB8.E3569190
Content-Type: multipart/alternative;
boundary="_=_NextPart_001_01C25EB8.E3569190"


--_=_NextPart_001_01C25EB8.E3569190
Content-Type: text/plain

 

Hi,

 

Calling all users of Apache ... I'm after anyone that has installed CFMX on
Redhat with Apache as their webserver?

 

I am wondering what the CFMX alternative of the Apache CF module is - as
obviously the foundations are quite different to CF5.

 

Current status:

 

New server with the following installed:

 

Redhat 7.2

Apache 1.3.22

CFMX

 

Serving .html files fine. Just need to do relevant tweaking for Apache to
communicate with CFMX.

 

Any pointers towards documentation would be appreciated.

 

Thanks,

Sarah. 

 

 

 

Sarah Atkinson
ColdFusion Programmer

Lonely Planet Publications, Aust.
Telephone: +61 3 8379 8000
Fax: +61 3 8379 8111
[EMAIL PROTECTED]  

 


--_=_NextPart_001_01C25EB8.E3569190
Content-Type: text/html



















 

Hi,

 

Calling all users of Apache ... I'm after anyone that has
installed CFMX on Redhat with Apache as their webserver?

 

I am wondering what the CFMX alternative of the Apache CF
module is - as obviously the foundations are quite different to CF5.

 

Current status:

 

New server with the following installed:

 

Redhat 7.2

Apache 1.3.22

CFMX

 

Serving .html files fine. Just need to do relevant
tweaking for Apache to communicate with CFMX.

 

Any pointers towards documentation would be 
appreciated.

 

Thanks,

Sarah. 

 

 

 

Sarah Atkinson
ColdFusion 
Programmer
cid:[EMAIL PROTECTED]";
align=baseline border=0>
Lonely Planet
Publications, Aust.
Telephone: +61
3 8379 8000
Fax: +61 3 8379 8111
mailto:[EMAIL PROTECTED]";>[EMAIL PROTECTED]

 







--_=_NextPart_001_01C25EB8.E3569190--

--_=_NextPart_000_01C25EB8.E3569190
Content-Type: image/jpeg;
name="image001.jpg"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="image001.jpg"
Content-ID: <[EMAIL PROTECTED]>

/9j/4AAQSkZJRgABAQEAYABgAAD//gAcU29mdHdhcmU6IE1pY3Jvc29mdCBPZmZpY2X/2wBDAAoH
BwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4+JS5ESUM8
SDc9Pjv/wAALCAA7AHUBAREA/8QAHQUBAQEAAAMEBQYHAQII/8QANhAAAQQB
AgQEBAMHBQAAAQIDBAUABhEHEiExE0FRYSIycYGhwdEUFSMkM1KRFkJTorH/3QAEACj/2gAI
AQEAAD8A2XDDDEHnW2UKcdWlDaElS1KOwA98zu84plyaazSMBdpLG6S7seRJ9h5/XtjNNLxVutly
7pusSobhLSgkj7Jz0dG8TYBDkbV5lq/sccUR/wBs8o19q7SryGdX0/jRt9jLZTsR/joc0OmvK6/g
pm1kpL7Sh12PVPsR5ZJjtncMM8nfmPXyzJtUWtjxA1IrSdI6W66Of5ySk9Fbd+vp7eeaBpzS
9TpiEmJWx0pIHxukbrWfUnJr7Yb4jJjMTI62JLKHmljZSFjcHMl1BRzOGtwnUun+ZVWtYEuLudkg
/l6H1zUKi1jXdXHsoa+ZiQgLT7ex98kB2zuGGZZwt1lcagtLFq3kpWyxHS4kkbBJKs0WLaV8tam4
s+O+tPzJbdSSPsMJNrAhupalTo7C1fKlx0JP44hdFx+hkiJMZjuOtFLchatkJ3898qOnqyPpLQFu
5X2MWZYhl2Q7IYWFfFykjt6Y34Z65dt6ySvUFkyJPjJSylZCSpO3kPPrl9RcVzk0wUTWFSh3ZSsc
w+2LPPtR2lPPuoabT8ylqCQPvkTa3sdWnLCZVzmX3Y7ClpU0oLIIHoMq3D2+f1XpWz/1K+06z4nh
KUvZKeUjtvn/0Lbw5pF0EWbBRcRbGJ4vMyGHAotexy0uXFc1LEVyfGQ//wAanQFf4xaRMjxGfGkv
tsN/3OLCR/nIm81ZAptPu3KFJmMNEA+AsK33988ac1lVagqkTxJZi85/pOvJCk/XPnSJLktBcFmW
qMzNUlt4pPcb79cuOrdMxdAKrbbT9ytUlw9UlwEnp8w28vrkZTUh1lHvrezmPftURvxUnvzH9MjW
bmytI9fSTZUpyC0vYNNfMoE/XrkxMobOjkvydPV9tGhmKpEpMxI35SNlHYHqNsrlQEC5gk7JAeR8
XoN80SlCVcdZC0lKt1K6g7j5cX4qTZFhq2u02uaYkFwJU4onYbk9z65XtZ0EfQk+OiktHSiYwpLy
Cvfoem59jkBSh20mQ9OvT1xa+TIBc67AH8/vlh1TWnhnqOMrTdotSn2iotrPMUeXXbvvv0yJj6fb
sNG2GpnZbxmR5ASAT337nf1zkWymaqsYMO6cmz4zCPDRHikBxQHl1PU++KWlZaUzVgiDHsI1O7yp
cbllJKfQKAOWrQmkdNTtOonzbUNSH1ELbU+lHKR5AE++TFZwaitMzGbKaH0voAaW2nZTKgd+Yfpn
qr4L18WYJFhZvT0tghtpSdk+2/U9PbH+nuGrlLCuo6rBDgs0cg5UbeHkM/worarSjy7GzU2/GUXh
MZQSUJ9CPPPelNBV9jVSbGPqKTZGUw4wy4sqCW1EFJJBPUjftkBdcO6LTcNhq41KI0pxe7aktlW6
duvTuPriHDSO0viSkQH3JMZpKyHljqsbdz6b+mPOKcIWXEuvgqd8JL7SEc467bnvljhcHK6OiQuV
YvT5C2illTo+FskbBXfrtjdvgvF/crkWTY/zaXOdqU2nblHmCPzyAqOHVfqRh5FXqJUqRGd5ZLy0
K5R6AE98uEThguNoqdQfvNJXLeDnihHRO3ltjNzg5FVUxG2bNUaxjghUlpOwd39t+meazh/QQY9l
Atb8SprzfI4VukeACRsdievXbqcSrOD9cw7IYevi46jlKkBA3QDvtv1881bbDb0w29OmIvMtvsrZ
dSFNuJKVpPYg9xmT1s5/hdq5+rsCs0Ng5zx

Re: CFMX cfchart colors

2002-09-17 Thread David Fafard

This is what I have and each series is getting the color I specify
using the seriescolor.

Dave


 
 
 



 
 
 




- Original Message -
From: "Eric O'Brien" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 17, 2002 5:19 PM
Subject: CFMX cfchart colors


> I'm trying to find a way to make each data point for a chart series a
unique
> color.  The colorlist attribute seems to only be  available for pie
> charts??? It seems pretty weak that Macromedia would not include this
basic
> functionality. Any ideas?
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: soEditor was RE: TextArea & MS Word

2002-09-17 Thread S . Isaac Dealey

You mean placing Flash movies within the content area? ...

I'm not real certain exactly how I'm going to implement it as of yet -- my
cms has a "preview" feature which allows you to preview a page if you have
it open in the content editor, but when editing smaller bits of content (
menus, news articles which might be a subclass of Text instead of being a
subclass of Page for various reasons ), much of the formatting may depend
heavily on elements of the page which would be unknown at the level at which
the content is being edited, so previewing a menu for instance, might mean
nothing without knowing what style sheet or other formatting elements might
apply to the page, since the menu might be included in many different pages
with many different layouts and style definitions...

But now I'm rambling and probably not making a whole lot of sense... So...

I'm not real sure how I plan to implement it at this point... I'd like to
implement it in a way that's inclusive of the #coldfusionvariable# macro
method of embedding these smaller content items within pages and other
containers, so I guess I'll be spending some time on those forums. :) It's
good to know that you were able to use your own Image management tool
without much difficulty, as I may be trying to do much the same...

Isaac
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

> Flash!!!  It currently doesn't support flash, although if
> you hand code it
> and use full paths you can get the flash to run on the
> page.

> That and I used my own Image Manager tool.

> There are one or two other issues that can be resolved
> pretty easily, see
> the soeditor forum.

> Layout control is quite good, I have used it on 3 apps,
> two internal and
> http://www.cfmevolution.co.uk/devcenter/spinners/

> Which is still under construction.

> Mark Stephenson
> New Media Director
> Evolution Internet
> T: 0870 757 1631
> F: 0870 757 1632
> W: www.evolutioninternet.co.uk
> E: [EMAIL PROTECTED]


> This email, together with any attachments, is for the
> exclusive and
> confidential use of the addressee(s).  Any other
> distribution, use or
> reproduction without the sender's prior consent is
> unauthorised and strictly
> prohibited.  If you have received this message in error,
> please
> notify the sender by email immediately and delete the
> message from your
> computer without making any copies.




> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
> Sent: 17 September 2002 20:18
> To: CF-Talk
> Subject: soEditor was RE: TextArea & MS Word


> Out of curiosity ( I'm going to be implementing it soon ),
> what minor
> changes?

>> I have the Full soEditor, It Rocks... With a few minor
>> changes!!!  Get the
>> source code and have a play

>> Mark Stephenson
>> New Media Director
>> Evolution Internet
>> T: 0870 757 1631
>> F: 0870 757 1632
>> W: www.evolutioninternet.co.uk
>> E:
> [EMAIL PROTECTED]

> Isaac Dealey
> Certified Advanced ColdFusion 5 Developer

> www.turnkey.to
> 954-776-0046



> __
> 
> Your ad could be here. Monies from ads go to support these
> lists and provide more resources for the community.
> http://www.fusionauthority.com/ads.cfm
> FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
> Archives:
> http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe:
> http://www.houseoffusion.com/index.cfm?sidebar=lists



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX updater - service pack?

2002-09-17 Thread Dick Applebaum

On Tuesday, September 17, 2002, at 04:41 PM, Gyrus wrote:

> - Original Message -
> From: "Dick Applebaum" <[EMAIL PROTECTED]>
>> OK, humor me (I have no real server experience).
>>
>> Why is an updater like CFMX at a disadvantage when compared to a
>> service pack.
> ---
>
> Yeah, I've been watching this thread with curiosity - can someone 
> humour me
> too? ;-)
>
> The main issue being discussed seems to portability, no? You download 
> the
> file, copy it around your network, wherever, and the machines that 
> install
> it don't need to be connected to the net. Isn't this is the case with 
> the
> CFMX updater? I downloaded over 14 MB. Don't tell me that was the
> 'installer' front for something that was downloading other stuff from 
> the MM
> site when you ran it! :-o
>

No, it is self-contained (at leats the unsupported Mac OS X versions 
were).

I really resent those downloaded front-end stubs  to a massive 
CPU-monopolizing download.  This was particularly irritating when I  
lived in the foothils and only could get a 33.1 dial-up line.  I'd 
schedule my downloads during off-hours, only to be surprised by another 
3-4 hour download during the install.  MS perfected this technique 
(it's as if they were embarassed by the size of the download)

> Appreciate there's more issues with regard to tracking changes, etc., 
> but on
> this portability front - is there a strict, official difference 
> between a
> service pack and an updater?

me too -- the updater does its job, and does it well!

Dick


>
> in ignorance,
>
> - Gyrus
>
> 
> - [EMAIL PROTECTED]
> work: http://www.tengai.co.uk
> play: http://www.norlonto.net
> - PGP key available
> 
>
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: iframe problem

2002-09-17 Thread S . Isaac Dealey

hmm... application.cfm should have occurred to me. :) Good technique to
protect the include files if you're using FuseBox. :) Glad you found it. :)

Isaac
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

> Hello,

> Actually,

> I had this in my application.cfm which was "causing" the
> problem.

> 
> 
> 

> I've added an "AND" clause to the comparison and all's
> good now!

> Thanks


> - Original Message -
> From: "S. Isaac Dealey" <[EMAIL PROTECTED]>

>> > When I specify a CFM file for the src attribute of an
>> > iframe tag, the
>> > frame
>> > goes into some sort of endless loop and keeps loading
>> > itself into
> itself.
>> > If
>> > I change the extension of the file to .html, all's
>> > fine. The file is
>> > currently static, but I need it to be dynamic. Thanks
>> > for any tips!
>>
>> I'd need to see the source of the file that's creating
>> the recursion to
>> offer any suggestions...
>>
>> Isaac Dealey



> __
> 
> Signup for the Fusion Authority news alert and keep up
> with the latest news in ColdFusion and related topics.
> http://www.fusionauthority.com/signup.cfm
> FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
> Archives:
> http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe:
> http://www.houseoffusion.com/index.cfm?sidebar=lists



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



For Jesse

2002-09-17 Thread Dick Applebaum

BSD is for people who love Unix.
Linux is for people who hate Microsoft.

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Timezones and CF

2002-09-17 Thread Michael Kear

I have the same issue, because my server is in WashingtonDC and I want to be
showing Australian Eastern Time.  So I have the following line in my
application.cfm file:

<.cfset austime= #now()# + #createTimeSpan(0,8,0,0)#>


and instead of using Now() anywhere, I just use the variable #austime#.
This variable also advances the date as well as the time.  It's accurate to
5 minutes, which is how accurate the sysadmin keeps the clock on the server.
I'm taking issue with him on that but that's another story.


When daylight savings changes,  since ours moves in the opposite direction
to the US daylight saving and on different dates, I just have to change the
timespan value in one file to correct my times again all over my sites.


Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks


-Original Message-
From: Mark [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 18 September 2002 9:51 AM
To: CF-Talk
Subject: Re: Timezones and CF

The date only needs be updated between 12.00 midnight and 5.00am gmt - and
to add insult to injury - what about Daylight savinng that happens just
about halloween?

> You seem to be saying #dateadd("h",5,now())#
> doesn't increment the day. Try this test,
>
> 
> #now()#
> #dateadd("h",24,now())#
> 
>
> You should find the date has advanced by one.
>



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Timezones and CF

2002-09-17 Thread Matthew Walker

What you need to do is stop using now(). Create your own variable
containing the correct time as I suggested earlier, e.g. by adding
 to application.cfm.

Then whenever you would use now() use request.gmt instead. 

#timeformat(request.gmt,"HH:mm")#
#dateformat(request.gmt,"dd/mm/")#

> -Original Message-
> From: Mark [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 11:51 a.m.
> To: CF-Talk
> Subject: Re: Timezones and CF
> 
> 
> The date only needs be updated between 12.00 midnight and 
> 5.00am gmt - and
> to add insult to injury - what about Daylight savinng that 
> happens just
> about halloween?
> 
> > You seem to be saying #dateadd("h",5,now())#
> > doesn't increment the day. Try this test,
> >
> > 
> > #now()#
> > #dateadd("h",24,now())#
> > 
> >
> > You should find the date has advanced by one.
> >
> 
> 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Timezones and CF

2002-09-17 Thread Mark

The date only needs be updated between 12.00 midnight and 5.00am gmt - and
to add insult to injury - what about Daylight savinng that happens just
about halloween?

> You seem to be saying #dateadd("h",5,now())#
> doesn't increment the day. Try this test,
>
> 
> #now()#
> #dateadd("h",24,now())#
> 
>
> You should find the date has advanced by one.
>


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Timezones and CF

2002-09-17 Thread Matthew Walker

You seem to be saying #dateadd("h",5,now())#
doesn't increment the day. Try this test,


#now()#
#dateadd("h",24,now())#


You should find the date has advanced by one.
 

> -Original Message-
> From: Mark [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 11:34 a.m.
> To: CF-Talk
> Subject: Re: Timezones and CF
> 
> 
> Just an to clarify
> 
> . the + 5 hours, works apart from it doesn't accommodate the 
> date... so if
> its Wednesday 7.05pm in the US - then it should be 12.05 
> Thursday here...
> whoo! dateadd works... although... the +5 hours get the right 
> time... the
> date is still the previous day i.e.. 12.05 Wednesday not Thursday...
> 
> Dates and timezones really mess my brain!
> 
> 
> > > is... on my date
> > > fields... its says it's Sunday not Monday as it is here.
> >
> > That's amazing -- it's Wednesday here!
> >
> > So does this code work?
> >
> > > #timeformat(dateadd("h",5,now()),"HH:mm")#
> >
> > I would recommend adding a line to application.cfm or similar:
> >
> > 
> >
> >
> 
> 
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX updater - service pack?

2002-09-17 Thread Gyrus

- Original Message -
From: "Dick Applebaum" <[EMAIL PROTECTED]>
> OK, humor me (I have no real server experience).
>
> Why is an updater like CFMX at a disadvantage when compared to a
> service pack.
---

Yeah, I've been watching this thread with curiosity - can someone humour me
too? ;-)

The main issue being discussed seems to portability, no? You download the
file, copy it around your network, wherever, and the machines that install
it don't need to be connected to the net. Isn't this is the case with the
CFMX updater? I downloaded over 14 MB. Don't tell me that was the
'installer' front for something that was downloading other stuff from the MM
site when you ran it! :-o

Appreciate there's more issues with regard to tracking changes, etc., but on
this portability front - is there a strict, official difference between a
service pack and an updater?

in ignorance,

- Gyrus


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


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Timezones and CF

2002-09-17 Thread Tony Weeg

how about trying the same timeformat function stuff
to a DateFormat function to return the adjusted day?

tony

-Original Message-
From: Mark [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 7:34 PM
To: CF-Talk
Subject: Re: Timezones and CF


Just an to clarify

 the + 5 hours, works apart from it doesn't accommodate the date... so
if
its Wednesday 7.05pm in the US - then it should be 12.05 Thursday
here...
whoo! dateadd works... although... the +5 hours get the right time...
the
date is still the previous day i.e.. 12.05 Wednesday not Thursday...

Dates and timezones really mess my brain!


> > is... on my date
> > fields... its says it's Sunday not Monday as it is here.
>
> That's amazing -- it's Wednesday here!
>
> So does this code work?
>
> > #timeformat(dateadd("h",5,now()),"HH:mm")#
>
> I would recommend adding a line to application.cfm or similar:
>
> 
>
>



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Timezones and CF

2002-09-17 Thread Mark

Just an to clarify

. the + 5 hours, works apart from it doesn't accommodate the date... so if
its Wednesday 7.05pm in the US - then it should be 12.05 Thursday here...
whoo! dateadd works... although... the +5 hours get the right time... the
date is still the previous day i.e.. 12.05 Wednesday not Thursday...

Dates and timezones really mess my brain!


> > is... on my date
> > fields... its says it's Sunday not Monday as it is here.
>
> That's amazing -- it's Wednesday here!
>
> So does this code work?
>
> > #timeformat(dateadd("h",5,now()),"HH:mm")#
>
> I would recommend adding a line to application.cfm or similar:
>
> 
>
>


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFChart w/o video card possible?

2002-09-17 Thread Eric

An odd question, but one I had to ask.  I'm currently evaluating CFMX at
work and was given a dinky old Pentium 2 to do the testing on.
Recently, the company was able to scrounge up a MaxAttach 6000 NAS
server for me (a dual P3 800 rack mounted network attached storage
server, incase you don't know).  So I installed CFMX on the NAS server
and it's really been flying; until I tried a little application I built
using CFCHART.  It gives me a 500 error about something amiss in the
graphing engine, and it worked fine on the P2.  Doing some more
research, it looks to be a video card driver issue.

 

Well, the thing is, it's a NAS unit, with no video card.  When I connect
trough terminal services and look at the display adapter in the control
panel, it's listed as "null VGA".  Any ideas?  Thoughts?

 

Thanks,

RiX


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Timezones and CF

2002-09-17 Thread Matthew Walker

> is... on my date
> fields... its says it's Sunday not Monday as it is here. 

That's amazing -- it's Wednesday here! 

So does this code work?

> #timeformat(dateadd("h",5,now()),"HH:mm")#

I would recommend adding a line to application.cfm or similar:





> -Original Message-
> From: Mark [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 11:04 a.m.
> To: CF-Talk
> Subject: Timezones and CF
> 
> 
> Hullo,
> 
> I wondered if someone could help me... also I'm new here... please be
> gentle.
> 
> I have a problem with adding dates and times - I just can't 
> get my head
> around it - and at the moment it doesn't work
> 
> #timeformat(dateadd("h",5,now()),"HH:mm")#
> 
> 
> whoo give me the correct time here in the uk.. the server 
> my application
> is on is in NYC so in US terms I am 5 hours in front of there.
> 
> Which I thought was great... until I just tried it... it 
> about 01:00 am.
> That code turns the time in NYC 8.00 pm... the only problem 
> is... on my date
> fields... its says it's Sunday not Monday as it is here. 
> 16 September
> UK - 15 September NYC
> 
> As a note I do not want to use the local machines clock.. as 
> people always
> mess with them...
> 
> Also, I couldn't care less about daylight saving etc... just 
> nearly the
> right time on the right day..
> 
> Can anyone help?
> 
> Mark
> 
> 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX updater - service pack?

2002-09-17 Thread Dick Applebaum

On Tuesday, September 17, 2002, at 04:01 PM, Dave Watts wrote:

> Yes, it's a very common problem. A server might be on an internal 
> network,
> with no external access. Or, it may be configured to deny external 
> access
> except when done to and/or through a specific port by a specific
> application. Or, you might have a change management program which 
> requires
> you to closely track what patches are added, and how they're added 
> (which
> this updater might not do - I haven't seen how it actually fetches 
> multiple
> updates, or whether it lists those updates a la Windows Update).

OK, humor me (I have no real server experience).

Why is an updater like CFMX at a disadvantage when compared to a 
service pack.

The service packs (MS Windows) I have installed all had a GUI that 
operated similar to the updater.  (Only you'd download 1 service pack 
only to find out it had another service pack as a prerequisite)... My 
last experience was when windows was updated to incorporate the browser 
into the os & then remove it -- what a mess!

As I recall, one or more of these service packs required an internet 
connection as part of the install process.

I can understand that if you have a change management program that you 
would want to furnish the replacement modules and instructions to it, 
rather than let some foreign program apply the changes.

What advantage does the service pack have here?

Anyway, is there something I am missing regards service packs vs 
updater.

TIA

Dick


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Timezones and CF

2002-09-17 Thread Mark

Hullo,

I wondered if someone could help me... also I'm new here... please be
gentle.

I have a problem with adding dates and times - I just can't get my head
around it - and at the moment it doesn't work

#timeformat(dateadd("h",5,now()),"HH:mm")#


whoo give me the correct time here in the uk.. the server my application
is on is in NYC so in US terms I am 5 hours in front of there.

Which I thought was great... until I just tried it... it about 01:00 am.
That code turns the time in NYC 8.00 pm... the only problem is... on my date
fields... its says it's Sunday not Monday as it is here. 16 September
UK - 15 September NYC

As a note I do not want to use the local machines clock.. as people always
mess with them...

Also, I couldn't care less about daylight saving etc... just nearly the
right time on the right day..

Can anyone help?

Mark


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX updater - service pack?

2002-09-17 Thread Dave Watts

> > Oh, god I hate those things. They're always such a pain 
> > to use on intranet's (especially where 'net access is 
> > explicity forbidden.).
> >
> > Give me a nice reliable (portable) service pack any day.
>
> Is that really an issue with server software?

Yes, it's a very common problem. A server might be on an internal network,
with no external access. Or, it may be configured to deny external access
except when done to and/or through a specific port by a specific
application. Or, you might have a change management program which requires
you to closely track what patches are added, and how they're added (which
this updater might not do - I haven't seen how it actually fetches multiple
updates, or whether it lists those updates a la Windows Update).

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

: dream :: design :: develop :
MXDC 02 :: Join us at this all day conference for 
designers & developers to learn tips, tricks, best 
practices and more for the entire Macromedia MX suite.

September 28, 2002  ::  http://www.mxdc02.com/
(Register today, seats are limited!)
::

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Tony Weeg

hey ken, 

not rubbing it in, just illustrating success
and attempting to show you that there was hope ;)

psglad to see it worked for ya!!!

-Original Message-
From: Ken Brocx [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 5:10 PM
To: CF-Talk
Subject: RE: CFMX Updater


>strange, I didn't have to shut anything, down, chose the paths
>and it worked perfectly.

>..tony

Thanks for rubbing it in tony...
-Ken

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 4:33 PM
To: CF-Talk
Subject: RE: CFMX Updater


Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: run CF from db

2002-09-17 Thread Jesse Houwing

Ken Brocx wrote:
> Everyone says Evaluate() is a bad idea, but I've searched the archives
> and can't see a reason why. So, in case you haven't guessed where this
> is going... Why is Evaluate a bad idea?

Because evaluatate takes a long time to accomplish something compared to 
other solutions.

Jesse


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: run CF from db

2002-09-17 Thread Ken Brocx

Everyone says Evaluate() is a bad idea, but I've searched the archives
and can't see a reason why. So, in case you haven't guessed where this
is going... Why is Evaluate a bad idea?

Ken
 
 

-Original Message-
From: Jesse Houwing [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 3:17 PM
To: CF-Talk
Subject: Re: run CF from db

Nick Varner wrote:
> Is there a way to evaluate Coldfusion after it is pulled from a db
instead
> of CF thinking its text? 

That would be the use of evaluate... but I would not reccomend it...

Jesse



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: I'd like to get some sleep - HELP!! ANYONE??

2002-09-17 Thread Dave Watts

I missed this, so my response is a little late.

> > I don't know what's causing your problem, but rather than 
> > restarting it manually, why not write a script to restart it 
> > for you? The server probe functionality in ClusterCATS is a 
> > decent example; an HTTP agent requests a specific script, and 
> > if it doesn't get the appropriate response, have it restart 
> > the appropriate services.
>
> Actually, that would be great, if CF wasn't the item 
> that's crashed. Since it's dead (or rather.. Not responding) 
> it appears that it simply won't run the script, effectively 
> turning off the checking.

I meant "write the script in something other than CF" - any scripting
language will do.

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

: dream :: design :: develop :
MXDC 02 :: Join us at this all day conference for 
designers & developers to learn tips, tricks, best 
practices and more for the entire Macromedia MX suite.

September 28, 2002  ::  http://www.mxdc02.com/
(Register today, seats are limited!)
::

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: run CF from db

2002-09-17 Thread Jochem van Dieten

Nick Varner wrote:
> Is there a way to evaluate Coldfusion after it is pulled from a db instead
> of CF thinking its text? 

Writing it to a temp file and cfincluding it is an option, but I don't 
recommend it. As soon as you are on CF MX, compilation will kill your 
performance.

Jochem

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: soEditor was RE: TextArea & MS Word

2002-09-17 Thread Mark Stephenson - Evolution Internet

Flash!!!  It currently doesn't support flash, although if you hand code it
and use full paths you can get the flash to run on the page.

That and I used my own Image Manager tool.

There are one or two other issues that can be resolved pretty easily, see
the soeditor forum.

Layout control is quite good, I have used it on 3 apps, two internal and
http://www.cfmevolution.co.uk/devcenter/spinners/

Which is still under construction.

Mark Stephenson
New Media Director
Evolution Internet
T: 0870 757 1631
F: 0870 757 1632
W: www.evolutioninternet.co.uk
E: [EMAIL PROTECTED]


This email, together with any attachments, is for the exclusive and
confidential use of the addressee(s).  Any other distribution, use or
reproduction without the sender's prior consent is unauthorised and strictly
prohibited.  If you have received this message in error, please
notify the sender by email immediately and delete the message from your
computer without making any copies.




-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: 17 September 2002 20:18
To: CF-Talk
Subject: soEditor was RE: TextArea & MS Word


Out of curiosity ( I'm going to be implementing it soon ), what minor
changes?

> I have the Full soEditor, It Rocks... With a few minor changes!!!  Get the
> source code and have a play

> Mark Stephenson
> New Media Director
> Evolution Internet
> T: 0870 757 1631
> F: 0870 757 1632
> W: www.evolutioninternet.co.uk
> E:
[EMAIL PROTECTED]

Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Wierd Form Error

2002-09-17 Thread Thanh Nguyen

can you see it using form variable?

form.due_date



-Original Message-
From: John Gedeon [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 2:27 PM
To: CF-Talk
Subject: Wierd Form Error


i am using cf_formurl2attributs call
I have a javascript function:
function mkdate()
  {
   monBox = document.trf.month;
   dayBox = document.trf.day;
   yearBox = document.trf.year;
   var month = monBox.options[monBox.selectedIndex].value;
   var day = dayBox.options[dayBox.selectedIndex].value;
   var year = yearBox.options[yearBox.selectedIndex].value;
   var ddate = month + "-" + day + "-" + year;
   document.trf.due_date.value = ddate;
  }

and select boxes

  Mon
  Jan
  Feb
  Mar
  Apr
  May
  Jun
  Jul
  Aug
  Sep
  Oct
  Nov
  Dec
 

.
 

.
 


And so on the submit
I try to access attributes.due_date like any other form or url variable and 
it tells me it doesnt exist. In the cf debug info due_date is listed as a 
form field but it is not included in the form fieldnames variable. When I 
changed the name from due_date to ddate it worked anyone know why?

John

<>< Proverbs 3:5 "Trust in the Lord with all your heart and lean not on 
your own understanding;"


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Joe Eugene

The basic comparision has failed so.. u want alternative comparison...(real
world)
well try it yourself... good examples are "String Comparison", "generating
dynamic
variables". Any which way its going to fail.. due to the "Java Strong
Language Type".
If it was 20ms and 100ms... nobody really cares. we could all sit back and
say oh.. i write
4 lines of code in CF and you write 20lines in JSP.whatever..(20ms and
3135ms is some difference)
  I dont know if everbody missed this one
  loops=100;
  for(x=0;x<=loops;x=x+1) // this "<=loops" took double the time..(8-9
seconds)
  What if you just had to do the same 10 times in multiple pages creating
variables
  or something of that sort. (Perhaps the argument will be.. oh the user is
not
  going to know the difference...whatever.. we can argue about this all day)

> I was going to leave this alone, but I agree completely with Matt here. It
> would be much more interesting and useful to see a comparison between a
> real-world CFML page and its JSP counterpart.

 This all comes down to the fact that the CFMX compiler could be optimized
 to produce more of an optimized code OR have strong type(int, double) as an
option
 for developers who think they need them. (others just ignore it and stick
with old style code)

Joe


> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 4:15 PM
> To: CF-Talk
> Subject: RE: FW: Jsp Vs Cfm (CFMX) -- Test Code
>
>
> > > Sure, but it doesn't seem like optimizing this specific
> > > case is really going to help anyone in the real world.
> >
> > Aw, c'mon Matt, that's not the point, and you know it!
>
> I was going to leave this alone, but I agree completely with Matt here. It
> would be much more interesting and useful to see a comparison between a
> real-world CFML page and its JSP counterpart.
>
> > There are certain things that can benefit from optimization,
> > frequently executed loops or other iterative processes are
> > prime targets.
> >
> > ...
> >
> > But the CFMX compiler could do better, especially where it
> > will have the greatest impact.
>
> At what cost could it do better? I suspect that this may be more difficult
> than it sounds on its face. CFML allows you to do all sorts of
> things, like
> create variables at runtime, evaluate strings as expressions, and so on,
> with on-the-fly compilation and caching.
>
> > You can do just so much with best practices.
> >
> > Coding time-sensitive routines in Java or JSP may not be an
> > option for everyone.
>
> Every tool will have advantages and disadvantages. I think it's a foolish
> venture to try to build a tool that does everything well. Want to write
> easily-maintainable code quickly? Use a scripting language, like
> CFML. Want
> to write an efficient calculation engine? Use something else.
> Want the best
> of both worlds? Use each tool appropriately, to build a unified solution.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
> : dream :: design :: develop :
> MXDC 02 :: Join us at this all day conference for
> designers & developers to learn tips, tricks, best
> practices and more for the entire Macromedia MX suite.
>
> September 28, 2002  ::  http://www.mxdc02.com/
> (Register today, seats are limited!)
> ::
>
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: RE: run CF from db

2002-09-17 Thread Matthew Walker

BTW We are currently playing with MX's ability to parse regular HTML
tags as if they are coldfusion tags (using cfimport). This proves
brilliant for cleaning up HTML that comes out of a WYSIWYG editor. 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 10:19 a.m.
> To: CF-Talk
> Subject: Re: RE: run CF from db
> 
> 
> Hey, that works even better than my suggestion.
> 
> - Original Message -
> From: Matthew Walker <[EMAIL PROTECTED]>
> Date: Tuesday, September 17, 2002 4:14 pm
> Subject: RE: run CF from db
> 
> > We are doing this exact thing. What we do is write a copy of the 
> > data to
> > a folder as a cfm file every time the data is saved. Then instead of
> > using the data from the db we simply cfinclude the file. 
> > 
> > 
> > 
> > > -Original Message-
> > > From: Nick Varner [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, 18 September 2002 10:07 a.m.
> > > To: CF-Talk
> > > Subject: run CF from db
> > > 
> > > 
> > > Is there a way to evaluate Coldfusion after it is pulled from 
> > > a db instead
> > > of CF thinking its text? 
> > > 
> > 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: RE: run CF from db

2002-09-17 Thread ksuh

Hey, that works even better than my suggestion.

- Original Message -
From: Matthew Walker <[EMAIL PROTECTED]>
Date: Tuesday, September 17, 2002 4:14 pm
Subject: RE: run CF from db

> We are doing this exact thing. What we do is write a copy of the 
> data to
> a folder as a cfm file every time the data is saved. Then instead of
> using the data from the db we simply cfinclude the file. 
> 
> 
> 
> > -Original Message-
> > From: Nick Varner [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, 18 September 2002 10:07 a.m.
> > To: CF-Talk
> > Subject: run CF from db
> > 
> > 
> > Is there a way to evaluate Coldfusion after it is pulled from 
> > a db instead
> > of CF thinking its text? 
> > 
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: run CF from db

2002-09-17 Thread ksuh

You can't use evaluate to run tags - only functions.

You can save the db field into a file using cffile, and then use cfhttp to run the 
file.

- Original Message -
From: Jesse Houwing <[EMAIL PROTECTED]>
Date: Tuesday, September 17, 2002 4:17 pm
Subject: Re: run CF from db

> Nick Varner wrote:
> > Is there a way to evaluate Coldfusion after it is pulled from a 
> db instead
> > of CF thinking its text? 
> 
> That would be the use of evaluate... but I would not reccomend it...
> 
> Jesse
> 
> 
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: run CF from db

2002-09-17 Thread Matthew Walker

Generally this won't work. It would only work if you were storing a cf
expression, e.g "int(3.1415)". It won't handle cf tags or expressions
mixed with html.

> -Original Message-
> From: Jesse Houwing [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 10:17 a.m.
> To: CF-Talk
> Subject: Re: run CF from db
> 
> 
> Nick Varner wrote:
> > Is there a way to evaluate Coldfusion after it is pulled 
> from a db instead
> > of CF thinking its text? 
> 
> That would be the use of evaluate... but I would not reccomend it...
> 
> Jesse
> 
> 
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: run CF from db

2002-09-17 Thread Matthew Walker

We are doing this exact thing. What we do is write a copy of the data to
a folder as a cfm file every time the data is saved. Then instead of
using the data from the db we simply cfinclude the file. 



> -Original Message-
> From: Nick Varner [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 September 2002 10:07 a.m.
> To: CF-Talk
> Subject: run CF from db
> 
> 
> Is there a way to evaluate Coldfusion after it is pulled from 
> a db instead
> of CF thinking its text? 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: run CF from db

2002-09-17 Thread Jesse Houwing

Nick Varner wrote:
> Is there a way to evaluate Coldfusion after it is pulled from a db instead
> of CF thinking its text? 

That would be the use of evaluate... but I would not reccomend it...

Jesse


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Using a variable to collect query-like results

2002-09-17 Thread Clark, Aimee

Thank you Bryan! That worked very well. However, I think I need a little
more help. I am receiving 257 same rows in my resultset for the same
"ticket". I am currently modifying the query to pull distinct id, but that
is not helping. Does anyone have additional thoughts on what I might try?

Thanks,
Aimee' Clark

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 4:52 PM
To: CF-Talk
Subject: RE: Using a variable to collect query-like results


actually it should probably be:


  #preserveSingleQuotes(myquery)#


+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93



-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 1:27 PM
To: CF-Talk
Subject: Re: Using a variable to collect query-like results



 #myquery#


should read


  #myquery#


HTH


Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: "Clark, Aimee" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 17, 2002 1:16 PM
Subject: Using a variable to collect query-like results


> Hello everyone,
> If you had a variable set like the one I have below...how do you then
> reference the variable to display the results? (sorry in advance for the
> long posting)
>
> <-Here's the variable--->
>
> 
>
> 
>  
> 
>
> 
>  
>  
>   
>   
>  
>  
>  
>  
> 
>
> 
>  =
"
> & #CallDateStart#>
> 
>
> 
>  
>  
>
> 
>  
>
> 
>  
>
> 
>  
>
> 
>   &  #CallDescWords# & "'">
>
> 
>   &  #CallNotesWords# & "'">
>
> 
>   Calls.Resolution like  '" &  #CallResolutionWords# & "'">
>
>
> <-Here's the query I try to use--->
>
> 
>  #myquery#
> 
>
> <-Here's the output I try to display-->
>
> 
> 
>  #Ticket#
> mailto:#ExternalEmail#>
> mailto:#ExternalEmail#";>#FullName#
>  #Ext#
>  mailto:#Tech#> mailto:#Tech#";>#Tech#
>  #DateOfCall#
>  #LU#
>  href="MonitorEdit.cfm?ID=#CallsQry.Ticket#&OLDTECH=#TECH#">Edit
>  Close
>  Notes
>  #Issue#
>  #Category#
>  #Office#
> 
> 
>
> <-Here's the lovely error message I receive->
>
> ODBC Error Code = 37000 (Syntax error or access violation)
>
>
>
> [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot use empty object or
> column names. Use a single space if necessary.
>
>
>
>
> The error occurred while processing an element with a general identifier
of
> (CFQUERY), occupying document position (64:1) to (64:57).
>
>
> Date/Time: 09/17/02 15:04:06
> Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar
4.1.5.0)
> Remote Address: 10.30.25.134
> HTTP Referrer: http://dailynews/helpdesk/monitorqbe.cfm
> 
>
>
>
> Does anyone have any ideas on a better way for me to generate my output?
> This is a Query By Example application.
>
>
>
> Thanks,
>
> Aimee Clark
> Web Developer
> Stinson Morrison Hecker LLP
> 816-691-3461
> [EMAIL PROTECTED]
>
>
>   _
>
>
>
 bst%3b&SG=&RAND=9320>
>
> 


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



run CF from db

2002-09-17 Thread Nick Varner

Is there a way to evaluate Coldfusion after it is pulled from a db instead
of CF thinking its text? 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: HTTP file limit?

2002-09-17 Thread jon hall

Nope, as you found out HTTP doesn't set limits on much of anything. It
all depends on the server and client. You will run into practical
limitations long before anything else.

-- 
 jon
 mailto:[EMAIL PROTECTED]

BL> -Original Message-
BL> From: Bryan Love [mailto:[EMAIL PROTECTED]]
BL> Sent: Tuesday, September 17, 2002 2:03 PM
BL> To: CF-Talk
BL> Subject: RE: CFMX Updater


BL> I posted this question once before, but I don't remember getting a response
BL> and I don't have email from this list that old...

BL> Does anyone know of a size limit for ?  I couldn't
BL> find one in the official HTTP RFC...

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: TextArea & MS Word [hail unicode]

2002-09-17 Thread Jochem van Dieten

Randell B Adkins wrote:
> 
> Using MS Word 2000 or even 97, copying information from a document
> and pasting it into a TEXTAREA box will lose the formatting such as
> apostrophes.
> 
> I am not concerned with the BOLD or Italicize but the apostrophes,
> commas, and quotes I am concerned about.
> 
> With the TEXTAREA if I manually type the apostrophes, commas, and 
> quotes, then it is retained when saving to the database.
> 
> But if Pasted from MS Word, it transforms the apostrophe into a 
> little square box.

Tested with a Word document from Randell Adkins on a unicode enabled 
setup and it worked fine. Hail unicode. Feel free to do your own tests 
at http://130.161.67.253:8500/www/index.cfm (if down, try again later, 
it is not a production machine).


> Any suggestions on why this occurs? We are looking at ActiveEdit
> or soEditorLite to handle this but baffles me why I can manually 
> type it and it is retained verses pasting it into the field and then
> it is converted.

If they have a version for CF MX that can do Unicode you should be fine.

BTW, probably unicode is not strictly necessary. You could also go 
search for another charset that has everything you need, but I doubt 
that is worth it.

Jochem

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Using a variable to collect query-like results

2002-09-17 Thread Bryan Love

actually it should probably be:


  #preserveSingleQuotes(myquery)#


+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93



-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 1:27 PM
To: CF-Talk
Subject: Re: Using a variable to collect query-like results



 #myquery#


should read


  #myquery#


HTH


Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: "Clark, Aimee" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 17, 2002 1:16 PM
Subject: Using a variable to collect query-like results


> Hello everyone,
> If you had a variable set like the one I have below...how do you then
> reference the variable to display the results? (sorry in advance for the
> long posting)
>
> <-Here's the variable--->
>
> 
>
> 
>  
> 
>
> 
>  
>  
>   
>   
>  
>  
>  
>  
> 
>
> 
>  =
"
> & #CallDateStart#>
> 
>
> 
>  
>  
>
> 
>  
>
> 
>  
>
> 
>  
>
> 
>   &  #CallDescWords# & "'">
>
> 
>   &  #CallNotesWords# & "'">
>
> 
>   Calls.Resolution like  '" &  #CallResolutionWords# & "'">
>
>
> <-Here's the query I try to use--->
>
> 
>  #myquery#
> 
>
> <-Here's the output I try to display-->
>
> 
> 
>  #Ticket#
> mailto:#ExternalEmail#>
> mailto:#ExternalEmail#";>#FullName#
>  #Ext#
>  mailto:#Tech#> mailto:#Tech#";>#Tech#
>  #DateOfCall#
>  #LU#
>  href="MonitorEdit.cfm?ID=#CallsQry.Ticket#&OLDTECH=#TECH#">Edit
>  Close
>  Notes
>  #Issue#
>  #Category#
>  #Office#
> 
> 
>
> <-Here's the lovely error message I receive->
>
> ODBC Error Code = 37000 (Syntax error or access violation)
>
>
>
> [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot use empty object or
> column names. Use a single space if necessary.
>
>
>
>
> The error occurred while processing an element with a general identifier
of
> (CFQUERY), occupying document position (64:1) to (64:57).
>
>
> Date/Time: 09/17/02 15:04:06
> Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Hotbar
4.1.5.0)
> Remote Address: 10.30.25.134
> HTTP Referrer: http://dailynews/helpdesk/monitorqbe.cfm
> 
>
>
>
> Does anyone have any ideas on a better way for me to generate my output?
> This is a Query By Example application.
>
>
>
> Thanks,
>
> Aimee Clark
> Web Developer
> Stinson Morrison Hecker LLP
> 816-691-3461
> [EMAIL PROTECTED]
>
>
>   _
>
>
>
 bst%3b&SG=&RAND=9320>
>
> 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



HTTP file limit?

2002-09-17 Thread Bryan Love

oops, I posted this with the wrong subject line...  see question below

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93



-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 2:03 PM
To: CF-Talk
Subject: RE: CFMX Updater


I posted this question once before, but I don't remember getting a response
and I don't have email from this list that old...

Does anyone know of a size limit for ?  I couldn't
find one in the official HTTP RFC...

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Vernon Viehe

OK, seems like Ken found his solution. I take it you've still got one (or more) 
instances you can't update? 

-Vern

-Original Message-
From: Matt Liotta
To: CF-Talk
Sent: 9/17/2002 2:25 PM
Subject: RE: CFMX Updater

I don't have a solution currently. I wouldn't have said anything until I
knew more, but I did want to confirm what others were seeing.

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

> -Original Message-
> From: Vernon Viehe [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 2:21 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> What was your solution, Matt?
> 
> Vernon Viehe
> ColdFusion Community Manager
> Developer Relations
> Macromedia, Inc.
> Online diary: http://vvmx.blogspot.com/
> 
> Macromedia DevCon 2002, October 27-30, Orlando, Florida
> Architecting a New Internet Experience
> Register today at www.macromedia.com/go/devcon2002
> 
> -Original Message-
> From: Matt Liotta
> To: CF-Talk
> Sent: 9/17/2002 1:32 PM
> Subject: RE: CFMX Updater
> 
> Same thing happened to me.
> 
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> 888-408-0900 x901
> 
> > -Original Message-
> > From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 17, 2002 1:20 PM
> > To: CF-Talk
> > Subject: RE: CFMX Updater
> >
> > I have tried to install the updater but it says it didn't install at
> the
> > end and to make sure the MX server is shut down. I have shutdown the
> > three CFMX services from the windows services menu. Am I missing
> > something?
> > ALSO is there a way to see which CFIDE folder your server is set up
to
> > use?
> > Thanks,
> > Ken
> >
> >
> >
> > -Original Message-
> > From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 17, 2002 11:14 AM
> > To: CF-Talk
> > Subject: RE: CFMX Updater
> >
> > Thanks for the heads up, Dave. It's all set now.
> >
> > Deb
> >
> > -Original Message-
> > From: Dave Carabetta
> > To: CF-Talk
> > Sent: 9/17/2002 6:52 AM
> > Subject: Re: CFMX Updater
> >
> >
> > Hmmm...according to the release notes, you released the updater a
year
> > ago!
> > And MM was saying for months that there wasn't even going to be a
> > service
> > pack! You may want to update the release year if this is, in fact,
not
> > the
> > case ;).
> >
> > Dave.
> >
> >
> 
> 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: MP3 Jukebox Ideas?

2002-09-17 Thread Dick Applebaum

On Tuesday, September 17, 2002, at 01:11 PM, Greg Luce wrote:

> Anyone have any experience building/using an MP3 database? I thought 
> I'd
> ask before wasting too much time on it. I have 23,000 songs I'm putting
> in a db. Right now I have a Web-based CF app to search the collection,
> and I'd like to be able to build playlists from it. Eventually I'd like
> to build a stand-alone app using VB.net once I get it all sorted out.
> Here's the DB schema I have right now:
>
>

Get your hands on a Mac for an hour and play with iTunes -- they don't 
store the songs in a db, but have lotsa' features and a great GUI -- 
ideas for your standalone app.

Dick

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



setCredentials() &

2002-09-17 Thread Ben Johnson

All,
Collin Tobin helped me with my last problem off-list but I came
across another strange problem.  We have an RIA (FMX/CFMX) that
initializes a gateway connection and then does a setCredentials() with
an authorization string.  The ColdFusion server catches the
authorization code and logs in the user for that call to the server like
this:















(Note that the  is not in the  because I don't
want to maintain a session on the server-side but rather with Flash
Remoting headers)

This code works great all the time except for the first time that we
call the CFCs on the server after not using the app for a while.  I
checked the NetConnection Debugger and it gives me something like this
for the first call:

-> Connect - http://www.mysite.com/flashservices/gateway
-> AddHeader - Credentials
-> Call - myCFC.myFunction( myarg1, myarg2)
-> Connect -
http://www.mysite.com/flashservices/gateway?CFID=32192&CFTOKEN=098401843

The result for that Call comes back ok, but every subsequent call errors
out with a "User not authorized" error.

Then when I close the app and go back in, it gives me this in the
NetConnection Debugger:

-> Connect - http://www.mysite.com/flashservices/gateway
-> AddHeader - Credentials
-> Call - myCFC.myFunction( myarg1, myarg2)

And everything returns without an error.  I assume that the reason this
happens is that there is a new session initialized and my Flash Remoting
headers are erased.  I figure I could do a call to a function that
doesn't do anything and then set the credentials, but that's just ugly.
Anybody have a better way around this?

Thanks.


Ben Johnson
Information Architect
www.architekture.com
[p] 720.934.2179
 
 


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: MP3 Jukebox Ideas?

2002-09-17 Thread Sean Daniels

On Tuesday, September 17, 2002, at 04:11  PM, Greg Luce wrote:

> Anyone have any experience building/using an MP3 database? I thought 
> I'd
> ask before wasting too much time on it. I have 23,000 songs I'm putting
> in a db. Right now I have a Web-based CF app to search the collection,
> and I'd like to be able to build playlists from it. Eventually I'd like
> to build a stand-alone app using VB.net once I get it all sorted out.
> Here's the DB schema I have right now:

You might find Ben Forta's latest book of interest.

The first case study is a flash/CFMX based MP3 jukebox. I'm pretty sure 
it's open source too...?

http://www.forta.com/books/0321125150

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Matt Liotta

I don't have a solution currently. I wouldn't have said anything until I
knew more, but I did want to confirm what others were seeing.

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

> -Original Message-
> From: Vernon Viehe [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 2:21 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> What was your solution, Matt?
> 
> Vernon Viehe
> ColdFusion Community Manager
> Developer Relations
> Macromedia, Inc.
> Online diary: http://vvmx.blogspot.com/
> 
> Macromedia DevCon 2002, October 27-30, Orlando, Florida
> Architecting a New Internet Experience
> Register today at www.macromedia.com/go/devcon2002
> 
> -Original Message-
> From: Matt Liotta
> To: CF-Talk
> Sent: 9/17/2002 1:32 PM
> Subject: RE: CFMX Updater
> 
> Same thing happened to me.
> 
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> 888-408-0900 x901
> 
> > -Original Message-
> > From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 17, 2002 1:20 PM
> > To: CF-Talk
> > Subject: RE: CFMX Updater
> >
> > I have tried to install the updater but it says it didn't install at
> the
> > end and to make sure the MX server is shut down. I have shutdown the
> > three CFMX services from the windows services menu. Am I missing
> > something?
> > ALSO is there a way to see which CFIDE folder your server is set up
to
> > use?
> > Thanks,
> > Ken
> >
> >
> >
> > -Original Message-
> > From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 17, 2002 11:14 AM
> > To: CF-Talk
> > Subject: RE: CFMX Updater
> >
> > Thanks for the heads up, Dave. It's all set now.
> >
> > Deb
> >
> > -Original Message-
> > From: Dave Carabetta
> > To: CF-Talk
> > Sent: 9/17/2002 6:52 AM
> > Subject: Re: CFMX Updater
> >
> >
> > Hmmm...according to the release notes, you released the updater a
year
> > ago!
> > And MM was saying for months that there wasn't even going to be a
> > service
> > pack! You may want to update the release year if this is, in fact,
not
> > the
> > case ;).
> >
> > Dave.
> >
> >
> 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



DB2 stored procedure missing column names

2002-09-17 Thread Brian Fox

Calling a DB2 stored procedure such as:


{CALL TSIS.STORPRS6('R','123456789',NULL,NULL)}


#storedproc.columnlist#


Produces:

1,2,3,4,5,6,7,8

I can't get to the data as variable references like #storedproc.1# produce a
CF error.  It seems like there must be a way to name the columns on a stored
procedure.

Which direction direction should this be tackled from?  Is this a DB2 stored
procedure error or is there some CF trick I've missed?

Thanks!
Brian  
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Wierd Form Error

2002-09-17 Thread John Gedeon

i am using cf_formurl2attributs call
I have a javascript function:
function mkdate()
  {
   monBox = document.trf.month;
   dayBox = document.trf.day;
   yearBox = document.trf.year;
   var month = monBox.options[monBox.selectedIndex].value;
   var day = dayBox.options[dayBox.selectedIndex].value;
   var year = yearBox.options[yearBox.selectedIndex].value;
   var ddate = month + "-" + day + "-" + year;
   document.trf.due_date.value = ddate;
  }

and select boxes

  Mon
  Jan
  Feb
  Mar
  Apr
  May
  Jun
  Jul
  Aug
  Sep
  Oct
  Nov
  Dec
 

..
 

..
 


And so on the submit
I try to access attributes.due_date like any other form or url variable and 
it tells me it doesnt exist. In the cf debug info due_date is listed as a 
form field but it is not included in the form fieldnames variable. When I 
changed the name from due_date to ddate it worked anyone know why?

John

<>< Proverbs 3:5 "Trust in the Lord with all your heart and lean not on 
your own understanding;"

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Vernon Viehe

Great! I suspected that might be it. Glad it's going now!

-Vern 

-Original Message-
From: Ken Brocx
To: CF-Talk
Sent: 9/17/2002 2:16 PM
Subject: RE: CFMX Updater

I got it! It was pointing to the wrong CFIDE folder, turns out we have
three (at least) on the dev server 
 
 

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 2:03 PM
To: CF-Talk
Subject: RE: CFMX Updater

I posted this question once before, but I don't remember getting a
response
and I don't have email from this list that old...

Does anyone know of a size limit for ?  I couldn't
find one in the official HTTP RFC...

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may
have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93


__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Upload size limit (was CFMX Updater)

2002-09-17 Thread Matt Liotta

There is no official size limit, but both web servers and proxies can
set their own limits which may affect a user's experience. Further, the
server is not required to buffer the entire file into RAM before writing
it to disk. However, this was the behavior of CF in previous versions. I
am not sure if it is still true with CFMX.

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

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 2:13 PM
> To: CF-Talk
> Subject: RE:Upload size limit (was CFMX Updater)
> 
> It all depends on your server RAM. The file gets completely loaded
> into your RAM before it is written to disk.
> 
> David Murphy
> www.cfugcny.org
> 
> = = = Original message = = =
> 
> I posted this question once before, but I don't remember getting
> a response
> and I don't have email from this list that old...
> 
> Does anyone know of a size limit for ?
>  I couldn't
> find one in the official HTTP RFC...
> 
> +---+
> Bryan Love
>   Macromedia Certified Professional
>   Internet Application Developer
>   Database Analyst
> TeleCommunication Systems
> [EMAIL PROTECTED]
> +---+
> 
> "...'If there must be trouble, let it be in my day, that my child
> may have
> peace'..."
> ~- Thomas Paine, The American Crisis
> 
> "Let's Roll"
> ~- Todd Beamer, Flight 93
> 
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



DBF connectstring

2002-09-17 Thread Bryan Stevenson

Hey All,

Does anybody have an example of a connection string for a DBF (don't
ask..hehe)??

TIA

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Ken Brocx

I got it! It was pointing to the wrong CFIDE folder, turns out we have
three (at least) on the dev server 
 
 

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 2:03 PM
To: CF-Talk
Subject: RE: CFMX Updater

I posted this question once before, but I don't remember getting a
response
and I don't have email from this list that old...

Does anyone know of a size limit for ?  I couldn't
find one in the official HTTP RFC...

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may
have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Slightly OT - Any good CFMX demos out there?

2002-09-17 Thread Dirk Sieber

Yes, I've seen Petmarket, and it does show well - I was just wondering if anyone out 
there had either seen or created anything else that they wouldn't mind us looking at.

Thanks,
Dirk


> -Original Message-
> From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 9:02 AM
> To: CF-Talk
> Subject: Re: Slightly OT - Any good CFMX demos out there?
> 
> 
> Petmarket is Flashy and shows well -- I don't think it is too 
> heavy of 
> CFMX stuff, though
> 
> Dick
> 
> On Tuesday, September 17, 2002, at 08:54 AM, Dirk Sieber wrote:
> 
> > Hi everyone,
> >
> > Okay, so we're trying to convince the powers that be that 
> upgrading to 
> > CFMX is a good thing - and, as part of that, we've been 
> asked to find 
> > some demos of things you can do in MX that you just couldn't do in 
> > previous versions (or, at least, not easily).  Sad but 
> true, something 
> > flashy would probably go over well. ;-)
> >
> > Anyone have any good candidates that they'd like to nominate?
> >
> > Thanks,
> > Dirk
> > 
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Vernon Viehe

What was your solution, Matt?

Vernon Viehe 
ColdFusion Community Manager 
Developer Relations 
Macromedia, Inc. 
Online diary: http://vvmx.blogspot.com/ 
 
Macromedia DevCon 2002, October 27-30, Orlando, Florida 
Architecting a New Internet Experience 
Register today at www.macromedia.com/go/devcon2002  

-Original Message-
From: Matt Liotta
To: CF-Talk
Sent: 9/17/2002 1:32 PM
Subject: RE: CFMX Updater

Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX cfchart colors

2002-09-17 Thread Eric O'Brien

I'm trying to find a way to make each data point for a chart series a unique
color.  The colorlist attribute seems to only be  available for pie
charts??? It seems pretty weak that Macromedia would not include this basic
functionality. Any ideas?
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: OT - How do you feel about...

2002-09-17 Thread Jochem van Dieten

Tony Carcieri wrote:
> 
> Question: Can someone explain structs to me?
> Answer: blah blah blah. or blah blah and blah.
> Source: cftalk
> Contributors: Michael D, Matt S, Tony W, & Tony C.
> 
> The answer would be a combined paraphrase of the answers.
> 
> Does anyone have issues with this?

For me, case by case [1]. My email in the archive is *my* email. An 
edited email is *somebodies* interpretation of my email.

[1] If I send email with a "X-license" header just abide by the license.

Jochem

-- 
"Anything you say will be misquoted and used against you" - Anonymous

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Ken Brocx

>strange, I didn't have to shut anything, down, chose the paths
>and it worked perfectly.

>..tony

Thanks for rubbing it in tony...
-Ken

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 4:33 PM
To: CF-Talk
Subject: RE: CFMX Updater


Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE:Upload size limit (was CFMX Updater)

2002-09-17 Thread mynews

It all depends on your server RAM. The file gets completely loaded 
into your RAM before it is written to disk.

David Murphy
www.cfugcny.org

= = = Original message = = =

I posted this question once before, but I don't remember getting 
a response
and I don't have email from this list that old...

Does anyone know of a size limit for ? 
 I couldn't
find one in the official HTTP RFC...

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child 
may have
peace'..."
~- Thomas Paine, The American Crisis

"Let's Roll"
~- Todd Beamer, Flight 93

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: textarea

2002-09-17 Thread Nick Varner

With a little mod this will work great...thanks

 -Original Message-
From:   Darron J. Schall [mailto:[EMAIL PROTECTED]] 
Sent:   Tuesday, September 17, 2002 2:40 PM
To: CF-Talk
Subject:Re: textarea

The following should be of some help to you

function limitArea(){
   content = document.form_name.text_area_name.value;
   len = content.length;
   if (len > 500) {
  content = content.substr(0,500);
   alert('Your input is limited to 500 characters.');
   document.form_name.text_area_name.value = content;
  }
}



Feel free to modify the limitArea() function to optimize it a little bit...

Happy coding,
-Darron

- Original Message -
From: "Nick Varner" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 17, 2002 4:32 PM
Subject: textarea


> Since there is not a cftextarea, how do I through up an alert in
javascript
> telling the user they have entered to many characters in a  textarea. I
know
> this is off subject but any help would be appreciated.
> 

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Bryan Love

I posted this question once before, but I don't remember getting a response
and I don't have email from this list that old...

Does anyone know of a size limit for ?  I couldn't
find one in the official HTTP RFC...

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Get Custom tag role

2002-09-17 Thread mynews

I have a custom tag and I want it to know weather it was called 
using CFmodule or as a custom tag. Is this possible?

David Murphy
www.cfugcny.org

___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: err.io.short_read

2002-09-17 Thread Bryan F. Hogan

I found the problem to this. When I had the GetPageContext.Forward() on the
page I got the err.io.short_read error. After I changed it to cflocation it
still error out with err.io.short_read. I just know restarted the services
and it works good, because I had left trusted cache on when testing
performance. < Moron :|

Bryan

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 4:04 PM
To: CF-Talk
Subject: RE: err.io.short_read


P.S. Placing GetPageContext().Forward() on a page where there is form
variables will cause this problem. But I'm not sure why it is happening with
the cflocation.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 4:00 PM
To: CF-Talk
Subject: err.io.short_read


With the following code I get the error "err.io.short_read" on the
cflocation line below. I have tried using the J2EE session variables, I have
tried making the cftoken uuid, I have tried GetPageContext().Forward()
(Which I have heard will cause the below problem.) Why is this happening
with my cflocation? I have also tried changing addtoken to "no". Any ideas?















__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Collin Tobin

Also be sure before installing the updater that there are no 'jrun.exe' processes 
running.  If there are, kill them.

Thanks.


Collin Tobin
QA Engineer
617 219 2000
[EMAIL PROTECTED]
Macromedia®
What the web can be.(tm)




-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 4:41 PM
To: CF-Talk
Subject: RE: CFMX Updater


strange, I didn't have to shut anything, down, chose the paths
and it worked perfectly.

.tony

Tony Weeg
Senior Web Developer
Information System Design
Navtrak, Inc.
Fleet Management Solutions
www.navtrak.net
410.548.2337 


-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 4:33 PM
To: CF-Talk
Subject: RE: CFMX Updater


Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FW: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-17 Thread Dick Applebaum

On Tuesday, September 17, 2002, at 01:15 PM, Dave Watts wrote:

> I was going to leave this alone, but I agree completely with Matt 
> here. It
> would be much more interesting and useful to see a comparison between a
> real-world CFML page and its JSP counterpart.
>
>

I agree with this.

No point in optimizing just to make esoteric test cases run better.

Does any one have any real-world pages coded in both?

Can you use the same technique to reveal the Java source generated by 
jsp?  (Remember I can't run jsp on OS X).

Dick

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: textarea

2002-09-17 Thread Matthew Walker

I use this in the html head:

 
  // Original:  Ronnie T. Moore
  // Web Site:  The JavaScript Source
  // Dynamic 'fix' by: Nannette Thacker
  // Web Site: http://www.shiningstar.net
  // This script and many more are available free online at
  // The JavaScript Source!! http://javascript.internet.com
  function textarea_counter(field, countfield, maxlimit) {
   if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
   // otherwise, update 'characters left' counter
   else
countfield.value = maxlimit - field.value.length;
  }
 

Add this to the textarea, where 500 is the maxlength:
onkeyup="textarea_counter(this.form.fieldname,this.form.fieldname_count,
500)"
And add this below the textarea: 

- Original Message -
From: "Nick Varner" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, September 18, 2002 8:32 AM
Subject: textarea


> Since there is not a cftextarea, how do I through up an alert in
javascript
> telling the user they have entered to many characters in a  textarea. I
know
> this is off subject but any help would be appreciated.
> 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread todd

In my case, all I did was shut down the Apache, CFMX services and that was 
it.  Is it possible that IIS is still holding on to the connector files?  
Not sure.


Here's a question for anyone paying attention... I read back on the 
archive and it's not really clear or obvious.

Does this mean that after I run the updater, do I keep the .exe file ...?  
If and when update 2 becomes available, do I just run this .exe file again 
or do I have to go download a new updater?

Thanks,
~Todd


On Tue, 17 Sep 2002, Ken Brocx wrote:

> Windows version, we actually have two cfides do to a later install, I
> can figure that part out though.
> I just can't get the updater for windows to finish installing.
> Thanks todd, any ideas?
>  
>  
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, September 17, 2002 1:32 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> There's only one CFIDE folder ... ?
> 
> Which installer are you using Ken?
> 
> ~Todd
> 
> 
> On Tue, 17 Sep 2002, Ken Brocx wrote:
> 
> > I have tried to install the updater but it says it didn't install at
> the
> > end and to make sure the MX server is shut down. I have shutdown the
> > three CFMX services from the windows services menu. Am I missing
> > something?
> > ALSO is there a way to see which CFIDE folder your server is set up to
> > use?
> > Thanks,
> > Ken
> >  
> >  
> > 
> > -Original Message-
> > From: Debbie Dickerson [mailto:[EMAIL PROTECTED]] 
> > Sent: Tuesday, September 17, 2002 11:14 AM
> > To: CF-Talk
> > Subject: RE: CFMX Updater
> > 
> > Thanks for the heads up, Dave. It's all set now.
> > 
> > Deb
> > 
> > -Original Message-
> > From: Dave Carabetta
> > To: CF-Talk
> > Sent: 9/17/2002 6:52 AM
> > Subject: Re: CFMX Updater
> > 
> > 
> > Hmmm...according to the release notes, you released the updater a year
> > ago! 
> > And MM was saying for months that there wasn't even going to be a
> > service 
> > pack! You may want to update the release year if this is, in fact, not
> > the 
> > case ;).
> > 
> > Dave.
> > 
> > 
> 
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Tony Weeg

strange, I didn't have to shut anything, down, chose the paths
and it worked perfectly.

..tony

Tony Weeg
Senior Web Developer
Information System Design
Navtrak, Inc.
Fleet Management Solutions
www.navtrak.net
410.548.2337 


-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 4:33 PM
To: CF-Talk
Subject: RE: CFMX Updater


Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: textarea

2002-09-17 Thread Matthew Friedman

try this code it works great









then in the form use this code

 
 
 characters left

matt friedman

-Original Message-
From: Nick Varner [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 4:32 PM
To: CF-Talk
Subject: textarea


Since there is not a cftextarea, how do I through up an alert in javascript
telling the user they have entered to many characters in a  textarea. I know
this is off subject but any help would be appreciated.

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread mynews

I am getting the same problem.

David Murphy
www.cfugcny.org

= = = Original message = = =

Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install 
at
the
> end and to make sure the MX server is shut down. I have shutdown 
the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is 
set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater 
a year
> ago!
> And MM was saying for months that there wasn't even going to 
be a
> service
> pack! You may want to update the release year if this is, in 
fact, not
> the
> case ;).
> 
> Dave.
> 
> 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Ken Brocx

Did you ever get it to run, Matt?
I'm no server pro but I installed the darn thing you think this would be
a piece of cake :)  I'm following the instructions on the site and
the installer, I read the release notes and understood them Oh well.
And people actually complain about Microsoft

 
 

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 1:33 PM
To: CF-Talk
Subject: RE: CFMX Updater

Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: textarea

2002-09-17 Thread Tim Do

you can limit them to how many characters they type...

function TextMaxLength(evt, field)
{
charCode = evt.keyCode;
if (field.length > 75)
{
return false;
}
}





-Original Message-
From: Nick Varner [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 17, 2002 1:32 PM
To: CF-Talk
Subject: textarea


Since there is not a cftextarea, how do I through up an alert in javascript
telling the user they have entered to many characters in a  textarea. I know
this is off subject but any help would be appreciated. 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Maintain Database Connection

2002-09-17 Thread Jochem van Dieten

Bob Haroche wrote:
> 
> This is possible, but not recommended, especially if it is a
> multi-user database. To do so, however, clear the cached connection
> information with the following code:
> 
> 

With CF MX, you need to disable the datasource and then restart the 
DataSourceService.
http://spike.oli.tudelft.nl/jochemd/index.cfm?PageID=12

Jochem

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: textarea

2002-09-17 Thread Darron J. Schall

The following should be of some help to you

function limitArea(){
   content = document.form_name.text_area_name.value;
   len = content.length;
   if (len > 500) {
  content = content.substr(0,500);
   alert('Your input is limited to 500 characters.');
   document.form_name.text_area_name.value = content;
  }
}



Feel free to modify the limitArea() function to optimize it a little bit...

Happy coding,
-Darron

- Original Message -
From: "Nick Varner" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 17, 2002 4:32 PM
Subject: textarea


> Since there is not a cftextarea, how do I through up an alert in
javascript
> telling the user they have entered to many characters in a  textarea. I
know
> this is off subject but any help would be appreciated.
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX updater - service pack?

2002-09-17 Thread Dick Applebaum

Is that really an issue with server software?

Would the silent install option solve the problem if you have multiple 
Developer versions deployed?

Does the license allow you to have multiple developer versions deployed?

Dick

On Tuesday, September 17, 2002, at 01:00 PM, Lewis Sellers wrote:

> Oh, god I hate those things. They're always such a pain to use on
> intranet's (especially where 'net access is explicity forbidden.).
>
> Give me a nice reliable (portable) service pack any day.
>

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Matt Liotta

Same thing happened to me.

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

> -Original Message-
> From: Ken Brocx [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 1:20 PM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
> 
> 
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago!
> And MM was saying for months that there wasn't even going to be a
> service
> pack! You may want to update the release year if this is, in fact, not
> the
> case ;).
> 
> Dave.
> 
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread Ken Brocx

Windows version, we actually have two cfides do to a later install, I
can figure that part out though.
I just can't get the updater for windows to finish installing.
Thanks todd, any ideas?
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 1:32 PM
To: CF-Talk
Subject: RE: CFMX Updater

There's only one CFIDE folder ... ?

Which installer are you using Ken?

~Todd


On Tue, 17 Sep 2002, Ken Brocx wrote:

> I have tried to install the updater but it says it didn't install at
the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
>  
>  
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago! 
> And MM was saying for months that there wasn't even going to be a
> service 
> pack! You may want to update the release year if this is, in fact, not
> the 
> case ;).
> 
> Dave.
> 
> 

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Verity: What is in a collection?

2002-09-17 Thread Angel Stewart

Heh heh..

This is cool..I did this..and...the collection is completely EMPTY!

The query though returns 4 records..but...umm...obviously the problem is
my CFINDEX tag...
Hmmm.

I created the collection through the CF Administrator then used the
CFINDEX tag to populate it..or so I thought

I did not use K2,though. This is all on CF5.



SELECT  tblCompany.entryid,tblCompany.CName, tblCompany.CAddr,
tblCompany.CAddr2, tblCompany.CState, tblCompany.CZip,
tblCompany.CCountry, tblCompany.Ctel1, tblCompany.Ctel2,
tblCompany.cemail, tblCompany.curl

FROM tblCompany












To me..that CFINDEX statement should more than do the job. The query
returns the results I want to search..can't get much simpler than
that.I've cut the Body field down to just the company name too, although
I want to search on all the fields in the database(MS Access).

What the heck is wrong? I'm not even getting an error message.

-Gel


-Original Message-
From: Sean McCarthy [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, September 17, 2002 4:15 PM
To: CF-Talk
Subject: RE: Verity: What is in a collection?


Sure you can use the cfdump tag and spit out all the goods.


I highly recommend u use K2 all you have to do is set up the alias info
in the .ini file.








leave your form field blank and get all results


other helpful goodies





hth

sean


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: inetinfo.exe killing the server - virus?

2002-09-17 Thread Dave Watts

> Shortly thereafter, inetinfo.exe started chewing up 99% 
> of my system resources again, and I thought I had Code 
> Red again, so I checked and sure enough, I was already 
> patched for Code Red ( unless this is a new version that 
> exploits some other weakness in IIS ). So now I can't 
> really use my workstation and I don't know why or how to 
> fix it.

The easiest solution, since this is your development machine, would probably
be to just disable IIS, and install Apache. It sounds like you've got enough
other problems with this machine that it might be hard to track down exactly
what's going on. 

And, for the love of God, to avoid future web server virus problems, just
disable external access to the web server, if that's an option for you. I'm
running five web servers on my laptop - not simultaneously, since they're
all configured to listen on port 80 - but I've configured my machine to
disallow traffic to port 80. I note that you're running a personal firewall,
which should make this pretty easy. Even without that, you can use
functionality within the OS to deny inbound traffic, and you could configure
the web server itself to listen only on 127.0.0.1.

> The other day my girlfriend installed something called 
> PalTalk ...

Get your girlfriend her own computer, if possible. Especially if you use
your computer to make money.

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

: dream :: design :: develop :
MXDC 02 :: Join us at this all day conference for 
designers & developers to learn tips, tricks, best 
practices and more for the entire Macromedia MX suite.

September 28, 2002  ::  http://www.mxdc02.com/
(Register today, seats are limited!)
::

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Updater

2002-09-17 Thread todd

There's only one CFIDE folder ... ?

Which installer are you using Ken?

~Todd


On Tue, 17 Sep 2002, Ken Brocx wrote:

> I have tried to install the updater but it says it didn't install at the
> end and to make sure the MX server is shut down. I have shutdown the
> three CFMX services from the windows services menu. Am I missing
> something?
> ALSO is there a way to see which CFIDE folder your server is set up to
> use?
> Thanks,
> Ken
>  
>  
> 
> -Original Message-
> From: Debbie Dickerson [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, September 17, 2002 11:14 AM
> To: CF-Talk
> Subject: RE: CFMX Updater
> 
> Thanks for the heads up, Dave. It's all set now.
> 
> Deb
> 
> -Original Message-
> From: Dave Carabetta
> To: CF-Talk
> Sent: 9/17/2002 6:52 AM
> Subject: Re: CFMX Updater
> 
> 
> Hmmm...according to the release notes, you released the updater a year
> ago! 
> And MM was saying for months that there wasn't even going to be a
> service 
> pack! You may want to update the release year if this is, in fact, not
> the 
> case ;).
> 
> Dave.
> 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT - How do you feel about...

2002-09-17 Thread Judith Dinowitz

Tony,

We had tried doing something like this but found that the time involved was tremendous 
(as Michael said). Would this better fit the bill?

http://www.fusionauthority.com/alert/index.cfm?alertid=112#talk1
http://www.fusionauthority.com/alert/index.cfm?alertid=112#talk2
http://www.fusionauthority.com/alert/index.cfm?alertid=112#talk3

This was something Michael and I had started doing called Best of Talk. I have Eron 
Cohen and Michael doing tech editing on this; my main problem is the time it takes to 
write this delays Fusion Authority. Would you (or someone else) be interested in 
writing Best of Talk?

As you can see from the URLs quoted, because it's just a summary of the thread that 
gives the "essence" of it (what is the question and major points of the thread), and 
while I haven't put contributors in yet, we could change that. The idea is to 
highlight the important threads so that CF'ers can look into a thread, if it's 
important. (Therefore, we include the links to the archive thread on HoF.)

As for you being a technical editor, editor and writer, I don't think that's really 
doable. Just ask Charlie Arehart (who tried doing what you're suggesting and found it 
to be a MAJOR job, and that was just writing it.)

On the other hand, Tony,  I have someone who could do the technical editing of Best of 
Talk if we had someone who could do the summaries. I can edit it for grammar, spelling 
and English. Is writing the Best of Talks (5 or so summaries per day of CF-Talk) a job 
you're interested in? And if not, is there anyone else who would be interested in this?

Judith Dinowitz
Editor
Fusion Authority
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   3   >