Re: cfdocument not displaying arabic font [spamtrap bayes][spamtrap heur]

2010-10-29 Thread safo 2000

without cfdocument it works fine.
so anyway i tried utf-8, at least something gets displayed but as such

ARABIC TEXT PRINT TEST ام صمة اله دولة

there are some missing characters

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


Re: CFLOOP Next Iteration

2010-10-29 Thread Sean Corfield

On Wed, Oct 27, 2010 at 10:16 AM, Jacob Munson yacoub...@gmail.com wrote:
 You probably noticed this, but cfcontinue is a new CF9 tag, so won't work in
 older versions of CF.

cfcontinue was new in CF9 but continue existed in cfscript before that...
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

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

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


Re: CFLOOP Next Iteration

2010-10-29 Thread Sean Corfield

On Wed, Oct 27, 2010 at 4:22 PM, Matthew Lowrey rid...@gmail.com wrote:
 I wasn't aware of that.  We're still learning all the new tags and it doesn't 
 come up win DreamWeaver so it was a shot in the dark to find something that 
 would allow us to continue

Time to switch to ColdFusion Builder...
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

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

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


StructAppend Creating an Error

2010-10-29 Thread Monique Boea

Hello

I have a multi step form that is being submitted to itself.

I create a structure session.memberRegister and then append to the structure
as each form is submitted like so:

cfscript
session.memberRegister = structnew();
/cfscript

  cfset StructAppend(session['memberRegister'],form)

On one of the steps, I retrieve data and create dynamic form fields which I
need to append to the session structure.

I added a loop and I am appending the query results to the structure like
so:

cfloop query=memberInfoFields

!--- create dynamic session vars ---
cfset StructAppend(session['memberRegister'],STRFIELDNAME)



The session vars are created but I get the following error:

You have attempted to dereference a scalar variable of type class
java.lang.String as a structure with members.

42 :
43 : !--- create dynamic session vars ---*44 : cfset
StructAppend(session['memberRegister'],STRFIELDNAME)*



Any suggestions?

Thank you!


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


SOAP Output for Object

2010-10-29 Thread Donnie Carvajal

I am working with a web service and have been working with the web service 
support to try to work through some of the bugs.  They asked what the SOAP 
requests were.  Can any instatiated object in ColdFusion be output as a SOAP 
request or would this possibly be a built in method of the web service?

Thanks,

Donnie 

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


Quick Regex Question

2010-10-29 Thread Robert Harrison

I have the regex statement - ReReplace(new_dir,\W,,all)

That removes all non-alphanumeric characters from a sting.

If I want to remove all non-alphanumeric characters except the underscore, is 
that:ReReplace(new_dir,\W/_,,all) or ?

Thanks


Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged




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


NEVER MIND: Quick Regex Question

2010-10-29 Thread Robert Harrison

- ReReplace(new_dir,\W,,all) is any alphanumeric character and the _

Never Mind.

Thanks

Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged



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


Re: Quick Regex Question

2010-10-29 Thread Nathan Strutz

Robert,

Actually, the underscore is counted as an alphanumeric in regular
expressions. Try just replacing \W with nothing and see what you get.

nathan strutz
[http://www.dopefly.com/] [http://hi.im/nathanstrutz]


On Fri, Oct 29, 2010 at 7:41 AM, Robert Harrison rob...@austin-williams.com
 wrote:


 I have the regex statement - ReReplace(new_dir,\W,,all)

 That removes all non-alphanumeric characters from a sting.

 If I want to remove all non-alphanumeric characters except the underscore,
 is that:ReReplace(new_dir,\W/_,,all) or ?

 Thanks


 Robert B. Harrison
 Director of Interactive Services
 Austin  Williams
 125 Kennedy Drive, Suite 100
 Hauppauge NY 11788
 P : 631.231.6600 Ext. 119
 F : 631.434.7022
 http://www.austin-williams.com

 Great advertising can't be either/or.  It must be .

 Plug in to our blog: AW Unplugged
 http://www.austin-williams.com/unplugged




 

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


Re: StructAppend Creating an Error

2010-10-29 Thread Monique Boea

I got this to work.

DUH!!

cfloop query=memberInfoFields

!--- create dynamic session vars ---
cfif NOT isDefined(session.memberRegister.STRFIELDNAME)
cfset session.memberRegister.#STRFIELDNAME# = 
/cfif

On Fri, Oct 29, 2010 at 9:38 AM, Monique Boea moniqueb...@gmail.com wrote:

 Hello

 I have a multi step form that is being submitted to itself.

 I create a structure session.memberRegister and then append to the
 structure as each form is submitted like so:

 cfscript
 session.memberRegister = structnew();
 /cfscript

   cfset StructAppend(session['memberRegister'],form)

 On one of the steps, I retrieve data and create dynamic form fields which I
 need to append to the session structure.

 I added a loop and I am appending the query results to the structure like
 so:

 cfloop query=memberInfoFields

 !--- create dynamic session vars ---
 cfset StructAppend(session['memberRegister'],STRFIELDNAME)



 The session vars are created but I get the following error:

 You have attempted to dereference a scalar variable of type class
 java.lang.String as a structure with members.

 42 :
 43 : !--- create dynamic session vars ---*44 : cfset 
 StructAppend(session['memberRegister'],STRFIELDNAME)*



 Any suggestions?

 Thank you!




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


Re: cfdocumentitem type=header

2010-10-29 Thread Tony Bentley

Perfect! Thanks Leigh.


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


Re: StructAppend Creating an Error

2010-10-29 Thread Leigh

  cfset
 StructAppend(session['memberRegister'],STRFIELDNAME)

StructAppend, appends the contents of one structure onto another. STRFIELDNAME 
looks like a simple value. If you are trying to create a dynamic key, just use 
array notation

ie 
cfset session.memberRegister[STRFIELDNAME]  =  




  

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


Re: cfdocument not displaying arabic font [spamtrap bayes][spamtrap heur]

2010-10-29 Thread Paul Hastings

On 10/29/2010 1:13 PM, safo 2000 wrote:

 without cfdocument it works fine.
 so anyway i tried utf-8, at least something gets displayed but as such

 ARABIC TEXT PRINT TEST ام صمة اله دولة

 there are some missing characters

if changing to utf-8 makes it display better then your string data *is* 
utf-8. 
i can't see how that codepage works fine either in or out of cfdocument.

i just shutdown my dev server  can't compare results, so what exactly is 
missing?

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


Re: SOAP Output for Object

2010-10-29 Thread Russ Michaels

What cf sends is a soap request.
See getsoaprequest function cfquickdocs for more info.

Russ

On 29 Oct 2010 15:34, Donnie Carvajal donnie.carva...@transformyx.com
wrote:


I am working with a web service and have been working with the web service
support to try to work through some of the bugs.  They asked what the SOAP
requests were.  Can any instatiated object in ColdFusion be output as a SOAP
request or would this possibly be a built in method of the web service?

Thanks,

Donnie



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


Re: StructAppend Creating an Error

2010-10-29 Thread Monique Boea

Thanks Leigh.

Now, how do I check for the existance of and use these dynamic variables to
set my form values?

Like so: cfif #session.memberRegister.strCME# EQ
medicalselected=selected/cfif

But I need to use dynamic variable names.

I am trying to use this but it is not working:

 value=#Evaluate(session.memberRegister.#STRFIELDNAME#)#

On Fri, Oct 29, 2010 at 11:41 AM, Leigh cfsearch...@yahoo.com wrote:


   cfset
  StructAppend(session['memberRegister'],STRFIELDNAME)

 StructAppend, appends the contents of one structure onto another.
 STRFIELDNAME looks like a simple value. If you are trying to create a
 dynamic key, just use array notation

 ie
 cfset session.memberRegister[STRFIELDNAME]  = 






 

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


Alternative to CFCONTENT

2010-10-29 Thread Chad Baloga

We are serving files from a file server to users using cfcontent/cfheader.  
When we upgraded to CF9, we started getting the java heap space errors when 
users would try to download files larger than 250mb.  We have the min and max 
heap space settings on 1024mb.  Are there any other alternatives that we could 
use? 

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


Re: CFLOOP Next Iteration

2010-10-29 Thread Matthew Lowrey

 On Wed, Oct 27, 2010 at 4:22 PM, Matthew Lowrey rid...@gmail.com 
 wrote:
  I wasn't aware of that.  We're still learning all the new tags and 
 it doesn't come up win DreamWeaver so it was a shot in the dark to 
 find something that would allow us to continue
 
 Time to switch to ColdFusion Builder...



I really wanted to switch over to CF Builder but when we went to try and set up 
the trial version it gave us so much trouble we gave up trying to get it to 
work.  There just hasn't been a good enough reason for my company to purchase 
it when DW doesn't just about everything it does for a fraction of the cost.

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


Re: StructAppend Creating an Error

2010-10-29 Thread Leigh

 Now, how do I check for the existance of and use these
 dynamic variables to
 set my form values?

The same way as before. Use array notation. No need for the extra # signs. 

ie 
cfif session.memberRegister[ STRFIELDNAME ] eq someValue
  something here...
/cfif

BTW: Most scopes in CF are structures. So associative array notation will work 
with most variables.




  

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


Re: StructAppend Creating an Error

2010-10-29 Thread Leigh

 Now, how do I check for the existance 
 value=#Evaluate(session.memberRegister.#STRFIELDNAME#)#

BTW: I ignored the check for existence comment because your code seemed to be 
getting the value instead. But if you really do mean existence, then use 
structKeyExists or IsDefined.






  

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


Re: CFLOOP Next Iteration

2010-10-29 Thread Russ Michaels

If ur docs are out of date then you can alays use cfquickdocs.com or
coldfusiondocs.com as your reference

On 29 Oct 2010 17:57, Matthew Lowrey rid...@gmail.com wrote:


 On Wed, Oct 27, 2010 at 4:22 PM, Matthew Lowrey rid...@gmail.com
 wrote:
  I wasn't aware o...
I really wanted to switch over to CF Builder but when we went to try and set
up the trial version it gave us so much trouble we gave up trying to get it
to work.  There just hasn't been a good enough reason for my company to
purchase it when DW doesn't just about everything it does for a fraction of
the cost.




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


Re: Alternative to CFCONTENT

2010-10-29 Thread Russ Michaels

The reason most people use cfcontent like this is to secure files from
public access. The alternative is just to use authenticated access using.
Htaccess, this means users must login to access files.

Russ

On 29 Oct 2010 17:45, Chad Baloga cbal...@gmail.com wrote:


We are serving files from a file server to users using cfcontent/cfheader.
 When we upgraded to CF9, we started getting the java heap space errors when
users would try to download files larger than 250mb.  We have the min and
max heap space settings on 1024mb.  Are there any other alternatives that we
could use?



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


Re: CFLOOP Next Iteration

2010-10-29 Thread Jacob Munson

 There just hasn't been a good enough reason for my company to purchase it when
 DW doesn't just about everything it does for a fraction of the cost.

I am going to argue that CFB is not buggy, or that people should
definitely switch to CFB from DW.  However, I don't agree with your
statement here.  You really should research the benefits of CFB, and
also Eclipse.  CFB really offers a LOT more than DW.  But that's only
if you can get it to work in your environment.  If you can't, there's
obviously no reason to switch.

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


Re: OOP vs cfinvoke

2010-10-29 Thread Dev Guru

I've got an app here that has several hundred cfinvoke calls to a couple
of CFCs. I'm trying to decide if it's worth my time to go through and
convert the app from using cfinvoke constantly to using cfobject. How
much of a difference on my overhead will it make?

 

Kris Sisk

USD-457 Technology

1205 Fleming St.

Garden City, KS 67846

(620) 805-7107

 

There are 10 types of people in this world: those who understand binary
and those who don't.


If you create an object you can actually output whats inside the method you 
reference like this:

cfoutput#thisObj.displayMethod(userID=sission.userID)#/cfoutput

This actually works good for methods where you display some different html 
based on the user that is passed in. 

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


Re: OOP vs cfinvoke

2010-10-29 Thread Raymond Camden

Maybe I'm reading you wrong, but your message implies that you can
only return something from a method if you have a real instance of it.
That is not true. While it typically isn't recommended to use cfinvoke
with the name attribute since it 'throws away' the instance, you
certainly can do that and return the result of a method call.

On Fri, Oct 29, 2010 at 3:06 PM, Dev Guru cfdevg...@gmail.com wrote:

I've got an app here that has several hundred cfinvoke calls to a couple
of CFCs. I'm trying to decide if it's worth my time to go through and
convert the app from using cfinvoke constantly to using cfobject. How
much of a difference on my overhead will it make?



Kris Sisk

USD-457 Technology

1205 Fleming St.

Garden City, KS 67846

(620) 805-7107



There are 10 types of people in this world: those who understand binary
and those who don't.


 If you create an object you can actually output whats inside the method you 
 reference like this:

 cfoutput#thisObj.displayMethod(userID=sission.userID)#/cfoutput

 This actually works good for methods where you display some different html 
 based on the user that is passed in.

 

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


Re: Quick Regex Question

2010-10-29 Thread CDCaveman

unsubscribe 
 
 
In a message dated 10/29/2010 10:41:43 A.M. Eastern Daylight Time,  
rob...@austin-williams.com writes:


I  have the regex statement - ReReplace(new_dir,\W,,all)

That  removes all non-alphanumeric characters from a sting.

If I want to  remove all non-alphanumeric characters except the underscore, 
is that:   ReReplace(new_dir,\W/_,,all) or ?

Thanks


Robert  B. Harrison
Director of Interactive Services
Austin   Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P :  631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com  

Great advertising can't be either/or.  It must be  .

Plug in to our blog: AW  Unplugged
http://www.austin-williams.com/unplugged






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


Re: Alternative to CFCONTENT

2010-10-29 Thread Mark Mandel

Try mod xsendfile if you are on apache

http://tn123.ath.cx/mod_xsendfile/

Mark

Sent from my mobile device
On 30 Oct 2010 03:45, Chad Baloga cbal...@gmail.com wrote:


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


Re: CFLOOP Next Iteration

2010-10-29 Thread Dave Merrill

Just to say it, I too had lots of trouble with CFB, and while I liked
some things about CFEclipse before that, its bloat and bugginess
bummed me out (Eclipse more than CFE).

But now I'm a happy camper, using IntelliJ IDEA with its CFML plugin.
No, it's not perfect by any means, but it's just a really *smart* IDE,
with tons of convenience and productivity features, handles many
languages, and CFML support is getting better and better. I'm enjoying
it more than any other editor I've used, and I've been doing this a
long time.

Couple things to note if you're thinking about giving it a try:

- If you're on a Mac, my understanding is that it's butt-ugly out of
the box. Try the GTK+ Appearance setting (says Mark Mandel; I don't
have a mac).

- To start a new CF project, choose a Java project, cancel out of
scanning for java files, and uncheck the box to create a source
directory. One of the things they need to work on is making starting a
new CF project more intuitive for newcomers.

- The CFML plugin requires the Ultimate version of IDEA, won't work
with the free Community version. It's about $250, with a free 30 day
trial. I live in my IDE all day and sometimes a good hunk of the
evening too, so I'm OK with that.

/soapbox

Dave

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