cffile upload bug with cf7.0.1 (Merrimack)?

2005-11-23 Thread Artur Kordowski
It seems that there is a bug with cffile upload on cf 7.0.1. Let me explain what I meen. Today I've created a simple file upload. It was still possible that you can add a different file name on the destination argument: cffile action=upload filefiled=FILEDATA

RE: datasource problems

2005-11-23 Thread Jennifer Gavin-Wear
Running on ms sql 7 ... -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 02:17 To: CF-Talk Subject: Re: datasource problems DB Type? Jennifer Gavin-Wear wrote: Hi, I've had a problem on creating a new cart site. I copied files from the first

RE: cffile upload bug with cf7.0.1 (Merrimack)?

2005-11-23 Thread Dave Watts
It seems that there is a bug with cffile upload on cf 7.0.1. There's an available hot fix for this on the MM site: http://www.macromedia.com/go/f97044e I'd recommend that you just install the cumulative hotfix for 7.0.1: http://www.macromedia.com/go/aae43964 Dave Watts, CTO, Fig Leaf Software

RE: js popup ? damn that ie!!!!!

2005-11-23 Thread Andy Matthews
Dave... Here's one that I've used before. It works great in all browsers in which I've tested it. If the attachment doesn't come through, here's a link: http://www.andyandjaime.com/uploads/gallerypics.js !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED]

RE: Prevent form submission if radio button and text field are not filled out

2005-11-23 Thread Dan G. Switzer, II
Andy, You can do this very easily in qForms using a dependency: // this says if the pay field is equal to personal_credit, than // the trooptaxnumber field is required objForm.trooptaxnumber.createDependencyTo(pay, personal_credit); You can see an example of this on this form:

RE: Prevent form submission if radio button and text field are not filled out

2005-11-23 Thread Andy Matthews
Dan... I saw you speak at CF North in Toronto in 2001 (or was it 2002). That was my first XP with QForms and I was riveted. Thanks for the input and we'll see how that works. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737

RE: CF Hosting

2005-11-23 Thread Munson, Jacob
I looked at HMS, and their prices are a bit steep for me. I'm sure they are well worth it, but I just wish they had a lower end product with CF (like my current host). I have heard from people that run hosting services that you can put more shared hosts on a Linux server than you can on a

Re: x.509 Encryption in ColdFusion

2005-11-23 Thread Thomas Chiverton
On Wednesday 16 November 2005 16:22, Jeffry Houser wrote: Outlook custom tag and the PGP desktop software. Unfortunately, the PGP software appears to disable ColdFusion's WSConfig utility ( More details There's always GPG and WinPT... -- Tom Chiverton Advanced ColdFusion Programmer

Pros/Cons Session vs Client scope

2005-11-23 Thread Smith, Daron [PA]
Does anyone have thoughts on pros/cons of client vs Session scope? I currently use client scope primarily but if cookies are disabled it blows up. Any thoughts on switching? Other topic anyone have suggestions for a good horizontal Javascript or DHTML news ticker? Thank you and Happy

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Robert Everland III
Pros Allows for persistant variables through clustered servers without having to purchase ColdFusion Enterprise Cons The bottleneck of your application is to your database server. You just added a hit to every persistant variable to your database. This makes your application much slower than

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Nathan Strutz
I wrote something on client variables a little while ago: http://www.dopefly.com/techblog/entry.cfm?entry=77 It's a good read, with some good comments too. -nathan strutz http://www.dopefly.com/ On 11/23/05, Smith, Daron [PA] [EMAIL PROTECTED] wrote: Does anyone have thoughts on pros/cons of

Re: CSS table-type layout

2005-11-23 Thread Irvin Gomez
I agree with Bobby. Style sheets originally come from print graphics applications such as Quark, where they are used to more easily control the look and feel of text elements. That was also the original idea (I think) for their use on the web. People seem to enjoy twisting themselves into

CFEclipse Snippet Woes

2005-11-23 Thread Dawson, Michael
I posted this thread in CFEclipse last night. I haven't received any answers yet. I don't want to be impatient, but I'm travelling to an in-law that doesn't have internet access and would like to play with CFE while I'm being anti-social. Can anyone help me, please? Here it is: Eclipse

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread dsmith
Nathan, You raise some good points. In your opinion if I'm not running in a clustered environment, are session variables the way to go? Anyone else have thoughts? I wrote something on client variables a little while ago: http://www.dopefly.com/techblog/entry.cfm?entry=77 It's a good read,

Re: CF Hosting

2005-11-23 Thread James Holmes
Gordon Bennet! I see what you mean - $3.50 per month for a basic Linux plan with CF. That does take some beating... On 11/23/05, Munson, Jacob [EMAIL PROTECTED] wrote: I looked at HMS, and their prices are a bit steep for me. I'm sure they are well worth it, but I just wish they had a lower

Re: CFEclipse Snippet Woes

2005-11-23 Thread Mark Drew
Hi, I answered over in the other list what are you pasting into your snippets? I know there is a CDATA issue that means that it doesnt save them MD On 23/11/05, Dawson, Michael [EMAIL PROTECTED] wrote: I posted this thread in CFEclipse last night. I haven't received any answers yet. I

RE: CFEclipse Snippet Woes

2005-11-23 Thread Dawson, Michael
Hi, thanks Mark. I am subscribed to that list, but I haven't seen any replies yet. I also didn't see the reply in the list archive. I tried pasting several things. The most-simple snippet was asdf for every entry. Other than that, I tried some simple tags, without any variables, and none of

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Nathan Strutz
I would venture to say that if you are or are not running in a clustered environment, client variables are the wrong way to go. As for changing your current aps, I'd say only do it if you begin to see problems. When the load on your servers increase, make sure you're monitoring general CPU usage

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread John Paul Ashenfelter
On 11/23/05, dsmith @ psea. org dsmith @ psea. org [EMAIL PROTECTED] wrote: Nathan, You raise some good points. In your opinion if I'm not running in a clustered environment, are session variables the way to go? Anyone else have thoughts? The answer is very dependent upon details of the

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Matt Robertson
Starting with CF6 you can use session vars with a cluster, yes? Don't you have to use jrun sessions or something? -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com ~| Logware (www.logware.us): a new and convenient

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Robertson-Ravo, Neil (RX)
I didn't think they had sorted that entirely - like clustering CFC's for example. -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 16:10 To: CF-Talk Subject: Re: Pros/Cons Session vs Client scope Starting with CF6 you can use session vars with a

Re: Scheduled Tasks Not Running

2005-11-23 Thread Tim Claremont
Everything I have tried gives me a connection failure. This is completely absurd. The problem seems deeper than merely a scheduled tasks problem. The CFIDE directory is using integrated authentication. This industry standard allows me set up the website so that people do not have to log in

RE: Scheduled Tasks Not Running

2005-11-23 Thread Robertson-Ravo, Neil (RX)
Well this is not a valid web address http:\\mywebsite\console\makestaffroster.cfm try http://mywebsite/console/makestaffroster.cfm -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 15:16 To: CF-Talk Subject: Re: Scheduled Tasks Not Running

Re: Amazon Web Service?

2005-11-23 Thread Steven Erat
Cameron Childress has a free ColdFusion Amazon Kit available at http://www.sumoc.com/index.cfm?fuseaction=bookkit.home On 11/23/05, Jake McKee [EMAIL PROTECTED] wrote: Has anyone used the Amazon Web Service with ColdFusion? I'm trying to figure out how to make it work and based on the

Async Gateway and file access.

2005-11-23 Thread Ian Skinner
If one had an Async Gateway that works through a process that may take several seconds per instance, and are creating quite a few instances to accomplish this process on a few thousand items, what would be the ins and outs of recording the result of this process? In simpler terms (I hope) if I

Re: Scheduled Tasks Not Running

2005-11-23 Thread Tim Claremont
In rereading this I gave the wrong impression. When I use integrated authentication on the CFIDE directory the report builder DOES NOT CONNECT to the RDS Server. When I REMOVE integrated authentication from the CFIDE directory I can then use the report builder as designed. The remainder of

RE: Async Gateway and file access.

2005-11-23 Thread Munson, Jacob
In simpler terms (I hope) if I where to try and log the results to a text file, what effects would this have on the async nature of the process? Would the individual processes get held up waiting for a turn at the file system to write to a file? If so, what other ideas to capture the

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Terry Schmitt
I think there are quite a few variables that need to be considered as others have mentioned. I always use session scope on my internal work servers. If on a shared server, one thing to keep in mind is that any other developer on that box can see your session variables. Not good if dealing with

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Douglas Knudsen
yes, but CFCs in the session scope can't be shared in a cluster. Note, if you have a sticky session cluster setup, then this works fine, eh? DK On 11/23/05, Matt Robertson [EMAIL PROTECTED] wrote: Starting with CF6 you can use session vars with a cluster, yes? Don't you have to use jrun

RE: Async Gateway and file access.

2005-11-23 Thread Ben Forta
If you don't want logging to be the bottleneck, then have another logging gateway (an asynch CFML gateway) that did the actual logging, and sendGatewayMessage() to it to log results. --- Ben -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23,

Paypal Website Pro with CF

2005-11-23 Thread Troy Montour
Has anyone had any luck integrating CF with Paypal's website pro option? there documentation is a little light. Thank You Troy Montour ~| Find out how CFTicket can increase your company's customer support efficiency by

RE: More RAD than Ruby On Rails

2005-11-23 Thread Damien McKenna
-Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] RoR requires you manually generate controllers, models and scaffolding. Given that it takes a single shell/DOS command to do this, I think its fairly productive. I don't think it'll be too long before someone writes

Re: Paypal Website Pro with CF

2005-11-23 Thread John Wilker
Haven't had luck yet but am doing it now. I've gotten as far as setting up my sandbox account and downloading some sample files. That's it so far. On 11/23/05, Troy Montour [EMAIL PROTECTED] wrote: Has anyone had any luck integrating CF with Paypal's website pro option? there documentation is

Re: CFEclipse Snippet Woes

2005-11-23 Thread Mark Drew
When you are doing this see if you can open up a view. window - show view - other - PDE runtime - Error Log. If you can do that, send me the message it gives you. If you dont have that, search in your eclipse workspace (i.e.C:\Applications\eclipse\workspace\.metadata) and backup the .log file

RE: Paypal Website Pro with CF

2005-11-23 Thread Jennifer Gavin-Wear
I've done a bit with Paypal and the documentation isn't just light, it's too often wrong, so don't believe all you read. I've not heard of the Pro option though, looking any good? Jenny -Original Message- From: John Wilker [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 17:25 To:

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Damien McKenna [EMAIL PROTECTED] wrote: However, my voiced concerns about scalability (of applications) in There are lots of sites out there that receive lots of traffic and have lots of data, e.g.: Everyone seems to misunderstand my comment about scalability in connection with

RE: CF Hosting

2005-11-23 Thread Snake
It was true in the past, but with win2k3 it's not. For an example, on cfdeveloper I have hosted 2000 coldfusion sites on a single low spec win2k box with only 512mb ram. Granted these are all developer sites and thus not very active, but a decent spec server with lots of ram should be able to do

RE: Scheduled Tasks Not Running

2005-11-23 Thread Snake
Why is the cfide password protected? -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 15:16 To: CF-Talk Subject: Re: Scheduled Tasks Not Running Everything I have tried gives me a connection failure. This is completely absurd. The problem seems

RE: Paypal Website Pro with CF

2005-11-23 Thread Snake
www.easycfm.com have a tutorial on integration paypal. -Original Message- From: Troy Montour [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 17:09 To: CF-Talk Subject: Paypal Website Pro with CF Has anyone had any luck integrating CF with Paypal's website pro option? there

Re: Paypal Website Pro with CF

2005-11-23 Thread John Wilker
Looks to be pretty good. WSDLs and APIs and such. I've never done anything but the basic add a buy with paypal button before. Pro supports directi Credit card processing and standard paypal processing On 11/23/05, Jennifer Gavin-Wear [EMAIL PROTECTED] wrote: I've done a bit with Paypal and the

RE: CF Hosting

2005-11-23 Thread Munson, Jacob
Have you done comparisons with Linux? -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 11:08 AM To: CF-Talk Subject: RE: CF Hosting It was true in the past, but with win2k3 it's not. For an example, on cfdeveloper I have hosted 2000

RE: More RAD than Ruby On Rails

2005-11-23 Thread Munson, Jacob
I am talking about scalability of application complexity. As your application gets more complex, code generation breaks down. It might give you a good start on a prototype but the further you get from the simple CRUD app, the more code you write and the less the code generator helps you. In

RE: CF Hosting

2005-11-23 Thread Russ
The bandwidth consumption doesn't matter. As has been said many times, any pc, with any os can pretty much saturate the bandwidth serving static content. Now, when hosting CF sites, I would guess Linux to be better, because linux overall uses resources better (CPU, RAM, etc). Linux is just a

Re: Scheduled Tasks Not Running

2005-11-23 Thread Tim Claremont
Neil, I have tried all iterations, and more that likely changed the slashes accidentally, so in an attempt to troubleshoot this is an orderly fashion I used both directions of slashes. using this '\' gives me a connection failure, and using '/' gives me the following: You do not have

RE: CF Hosting Linux vs. Windows

2005-11-23 Thread Munson, Jacob
The bandwidth consumption doesn't matter. As has been said many times, any pc, with any os can pretty much saturate the bandwidth serving static content. Now, when hosting CF sites, I would guess Linux to be better, because linux overall uses resources better (CPU, RAM, etc). Linux

Re: Why do I need a Custom Tag Path for Components?

2005-11-23 Thread Troy Simpson
If I call a component with a fully qualified name as follows, how would ColdFusion locate the component? CreateObject(component, com.companyname.myApp.myComponent); I would presume that ColdFusion would search for the component in the following order: 1. Locate a mapping for /com 1a. If found

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Munson, Jacob [EMAIL PROTECTED] wrote: So, do you have the same concern with frameworks like FB, MG, Mach etc.? I am very ignorant of how these frameworks work, so I am curious. I am considering taking the plunge and using FB with my next big project. They aren't code generators.

RE: More RAD than Ruby On Rails

2005-11-23 Thread Munson, Jacob
They aren't code generators. My concern applies primarily to code generators. Ok, thanks Sean. Your concern makes total sense. I really need to get into FB here soon so I can stop asking ignorant questions. ;) --- [INFO] -- Access Manager: This transmission may contain

Re: More RAD than Ruby On Rails

2005-11-23 Thread Jeff Small
They aren't code generators. My concern applies primarily to code generators. Ok, thanks Sean. Your concern makes total sense. I really need to get into FB here soon so I can stop asking ignorant questions. ;) Dude, no offense, but your question is hardly ignorant. I was following along

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Munson, Jacob [EMAIL PROTECTED] wrote: Ok, thanks Sean. Your concern makes total sense. Cool! I really need to get into FB here soon so I can stop asking ignorant questions. ;) Those are not ignorant questions Jacob! A lot of people avoid frameworks because they feel that the

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Robert Everland III
How do you span sessions across ColdFusion servers if you aren't using Enterprise? Why would you even put CFC's into a session scope? Shouldn't they be in the application scope? Bob ~| Logware (www.logware.us): a new and

RE: CFEclipse Snippet Woes

2005-11-23 Thread Dawson, Michael
Mark, I mailed it to you off-list. Thanks -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 11:45 AM To: CF-Talk Subject: Re: CFEclipse Snippet Woes When you are doing this see if you can open up a view. window - show view - other - PDE

ColdFusion (sub)report woes

2005-11-23 Thread Peterson, Andrew S.
Hi, I posted this to the the Macromedia forums without luck so I'm trying here. From what I've read, it seems like the following scenario is common, and there may not be a known solution. Maybe you guys can help. Prior to upgrading to 7.0.1, my CF reports didn't hang like they do now

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Dawson, Michael
How do you span sessions across ColdFusion servers if you aren't using Enterprise? More-knowledgeable people will need to answer this one. Why would you even put CFC's into a session scope? Shouldn't they be in the application scope? When a user logs in to your site, you can create a

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Brian Peddle
How do you span sessions across ColdFusion servers if you aren't using Enterprise? I've never done this in CF but have in ASP. In the earlier days of the web the mandate for places I worked was never use session variables. So I have always coded without using them. There was always someone

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Robert Everland III
When a user logs in to your site, you can create a session-based CFC. That CFC will hold personal information for that user. Session-based CFCs are great for any system that requires a login. Why wouldn't you just create a structure with that information in it? I don't understand why you would

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Dave Watts
How do you span sessions across ColdFusion servers if you aren't using Enterprise? You don't. Why would you even put CFC's into a session scope? Shouldn't they be in the application scope? CFCs are just variables, like any others really. You put user-specific variables in the Session or

Re: Scheduled Tasks Not Running

2005-11-23 Thread Tim Claremont
That did it!!! I changed the permission on the FILE itself, not the directory, and the task is now running as desired. Thanks SO MUCH for the lead. ~| Logware (www.logware.us): a new and convenient web-based time tracking

CF MX 7 processing .PHP extension - IIS 6

2005-11-23 Thread Jim Curran
Hi all, Is there any way to get CF to process .php files? I have a site we acquired that has a flash form submitting to a PHP file. Also, there is no PHP on the server, so I can't use it. Also, installing PGP is not an option. Is there a way I can get CF to process .php files for this one

FW: OT: Prevent form submission if radio button and text field are not filled out

2005-11-23 Thread Bobby Hartsfield
I never saw this come through so here it is again. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 6:31 PM To: 'cf-talk@houseoffusion.com' Subject: RE: OT:

Getting first 10 words from a string.

2005-11-23 Thread Nomad
Hello! Need help. How do I get the first (say 10) words from a string? Problem: A query to my database returns a column (details) that is of memo type. I want to limit the display of this column to the first 10 words only. I had a quick look at the CFML documentation for string functions but

Re: Getting first 10 words from a string.

2005-11-23 Thread Bryan Stevenson
use the space ascii character as a list delimiter and grab the first 10 elements of the list (the whole string being the list). there is probably a sexier RegEx solution...but that will get ya what ya want Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems

RE: Getting first 10 words from a string.

2005-11-23 Thread Brian Peddle
Try this maybe http://www.cflib.org/udf.cfm?ID=605 Use space for your delimiter maybe. -Original Message- From: Nomad [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 3:23 PM To: CF-Talk Subject: Getting first 10 words from a string. Hello! Need help. How do I get the

RE: Getting first 10 words from a string.

2005-11-23 Thread Ben Forta
Just treat the string as a list, use the list function and specify as the delimiter (or .,- etc. --- Ben -Original Message- From: Nomad [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 3:23 PM To: CF-Talk Subject: Getting first 10 words from a string. Hello! Need help.

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Ken Ferguson
Isn't it all a matter of how you cluster the machines though? I mean, if you want to use sessions in a clustered environment, you just need to make sure that your load balancer uses sticky sessions. Basically, the goal is not to ever toss users between servers, but just assign users to a

Getting the first 10 words from a string..

2005-11-23 Thread Nomad
Hello! Need help. How do I get the first (say 10) words from a string? Problem: A query to my database returns a column (details) that is of memo type. I want to limit the display of this column to the first 10 words only. I had a quick look at the CFML documentation for string functions but

Re: CF MX 7 processing .PHP extension - IIS 6

2005-11-23 Thread Ken Ferguson
You only had to go back one day in the archives. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18289 --Ferg Jim Curran wrote: Hi all, Is there any way to get CF to process .php files? I have a site we acquired that has a flash form submitting to a PHP file. Also, there

Re: Getting first 10 words from a string.

2005-11-23 Thread Charlie Griefer
there's almost certainly a more eloquent solution, but you can loop from 1 to 10 using the space as a delimiter. cfset mystring = the quick brown fox jumped over the lazy dog the quick brown fox jumped over the lazy dog / cfset myTruncatedString = / cfloop list=#myString# delimiters= index=i

RE: CF MX 7 processing .PHP extension - IIS 6

2005-11-23 Thread Jim Curran
I saw that, but didn't realize it addressed this issue... Thought it was DBM specific. THNX. - j -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 3:42 PM To: CF-Talk Subject: Re: CF MX 7 processing .PHP extension - IIS 6 You only had

RE: Getting first 10 words from a string.

2005-11-23 Thread Bobby Hartsfield
listfirst(listinsertat(mystring, 11, ***, ), ***) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 3:38 PM To: CF-Talk Subject: Re: Getting first 10 words from a

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Robert Everland III
I understand that CFC's are just like any other variables. My question is, why? I have used CFC's mostly to put functions that are used throughout an application into the application scope. So what would you put a CFC into a session scope for? What is that person doing different that makes it

Re: CF MX 7 processing .PHP extension - IIS 6

2005-11-23 Thread Brian Kotek
If you mean can you write CFML code, save the file as .php, and have CF execute it, then yes you can. If you mean can the CF server read and process PHP code written in files with a .php extension, then the answer is of course not. On 11/23/05, Jim Curran [EMAIL PROTECTED] wrote: Hi all, Is

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Dave Watts
Why wouldn't you just create a structure with that information in it? I don't understand why you would create a CFC for the user information. Can you explain in more detail. CFCs allow you to create variables that are objects - that contain both data and code, and can manipulate their own

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Ian Skinner
I understand that CFC's are just like any other variables. My question is, why? I have used CFC's mostly to put functions that are used throughout an application into the application scope. So what would you put a CFC into a session scope for? What is that person doing different that makes it

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Brian Peddle
Something to read that may help: http://www.horwith.com/index.cfm?mode=entryentry=59710A68-E081-0478-475D659 34BEA80CD ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: Pros/Cons Session vs Client scope

2005-11-23 Thread Sean Corfield
On 11/23/05, Robert Everland III [EMAIL PROTECTED] wrote: I understand that CFC's are just like any other variables. My question is, why? I have used CFC's mostly to put functions that are used throughout an application into the application scope. You're using CFCs as a way to wrap up

Re: Getting first 10 words from a string.

2005-11-23 Thread Charlie Griefer
nice :) On 11/23/05, Bobby Hartsfield [EMAIL PROTECTED] wrote: listfirst(listinsertat(mystring, 11, ***, ), ***) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, November

ReleaseComObject

2005-11-23 Thread Katz, Dov B \(IT\)
Does anyone use ReleaseComObject(), and if so, have any success stories about its positive impact on performance? -Dov NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege,

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Dave Watts
How do you span sessions across ColdFusion servers if you aren't using Enterprise? You don't. Isn't it all a matter of how you cluster the machines though? I mean, if you want to use sessions in a clustered environment, you just need to make sure that your load balancer uses

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Dawson, Michael
Structs can easily be modified. CFCs, without the setters, cannot easily be modified. Sure you can, but not usually accidentally. Also, the CFCs, will pass around their logic. Structures are just dumb. You could probably do it either way. I just like the feeling that CFCs control my data

RE: ReleaseComObject

2005-11-23 Thread Dawson, Michael
I use it for its intended purpose. When I create an object and am done with it, I release it. I also set the object = . cfset obj = createObject() Stuff here... cfset releaseCOMObject(obj) cfset obj = I was told this is the best way since the java garbage collector will pick up on the

Re: Paypal Website Pro with CF

2005-11-23 Thread Will Tomlinson
One of our own has simplified Paypal integration. You can check it out here: http://www.web-relevant.com/web-relevant/index.cfm?fuseaction=main.paypalmx Will ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

Need REGEX help

2005-11-23 Thread Pete Ruckelshaus
Hi, I'm coding a filter that will clean all the crap out of MS Word-generated HTML. I am using rereplace() to do this; I want to be selective in what generated code gets removed. The problem I am having is that I am trying to figure out how to remove (or replace) HTML tags such as P but not

RE: Need REGEX help

2005-11-23 Thread Bobby Hartsfield
I haven’t tested your regex but right off hand it looks correct, your back reference is wrong however. Try this. cfset out = rereplace(code, p[^]*(.*?)/p, p\1/p, ALL) That will only remove attributes of the P tag thoughif you just want what is between them try this... cfset out =

RE: Need REGEX help

2005-11-23 Thread Bobby Hartsfield
And just to make life easier... if you are only removing specific tags... cfset tagtoremove = p|div cfset out = rereplace(code, (#tagtoremove#).*?(.*?)/\1, \2, ALL) Put a pipe delimited list of the tags you want to remove in tagtoremove Like...p div b em would be... cfset tagtoremove =

Re: Need REGEX help

2005-11-23 Thread Pete Ruckelshaus
That was it, thanks! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15

RE: CF MX 7 processing .PHP extension - IIS 6

2005-11-23 Thread Russ
If it's just one file, I recommend rewriting it in CF... Otherwise your only choice is to get another server and put PHP on it... (or shared space somewhere).. -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 3:49 PM To: CF-Talk Subject:

RE: CF MX 7 processing .PHP extension - IIS 6

2005-11-23 Thread Adrian Lynch
I think the reason he wants to get CF to process a file with a .php extension is that the Flash movie points to a file and he can't change the Flash. My advice would be to decompile the swf and change the file it's pointing to :O) Ade -Original Message- From: Russ [mailto:[EMAIL

RE: CF Hosting

2005-11-23 Thread Snake
Not personally, but I have read a fair amount of arguments on windows vs linux, and I haven't read and linux claims that are not possible on windows now. -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 18:16 To: CF-Talk Subject: RE: CF Hosting

RE: CF Hosting

2005-11-23 Thread Snake
The GUI is only loaded when you login to windows. If your not logged in, it isn't loaded. -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: 23 November 2005 18:22 To: CF-Talk Subject: RE: CF Hosting The bandwidth consumption doesn't matter. As has been said many times, any

RE: Pros/Cons Session vs Client scope

2005-11-23 Thread Jeff Chastain
This was my thought as well. Basically, the worst that would happen is that a user might have to log in again if the server they were 'stuck' to went down and they were shifted to a different server. In some applications this could be a problem, but I expect it would not be for most. Is this

Run another CF template without waiting for return

2005-11-23 Thread Jim McAtee
How can I run (call) another CF template without waiting for the return of that template? The other template resides on the same server, same directory as the caller. Can't cfinclude it or call it as cfml tag. Can I use cfhttp somehow?

Re: Need REGEX help

2005-11-23 Thread Claude Schneegans
I'm coding a filter that will clean all the crap out of MS Word-generated HTML. I am using rereplace() to do this; I want to be selective in what generated code gets removed. You will need A LOT of Regex, since the crap MS Word generate is just beyond all understanding. Personnally, I do it in

Re: Run another CF template without waiting for return

2005-11-23 Thread James Holmes
On CF7 you can use a gateway. On an earlier version you can cfshedule the template to run immediately. On 11/24/05, Jim McAtee [EMAIL PROTECTED] wrote: How can I run (call) another CF template without waiting for the return of that template? The other template resides on the same server, same

RE: Run another CF template without waiting for return

2005-11-23 Thread Bobby Hartsfield
Id think cfhttp would execute that page as if you actually went to it... you'd have to test that out though. You could also set a cfschedule for now() to run the page and you could also 'call' the page via JS like so... function executePage() { if (window.ActiveXObject) {

RE: Paypal Website Pro with CF

2005-11-23 Thread Troy Montour
Will, Thanks I will have to check it out Thank You Troy Montour -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 2:44 PM To: CF-Talk Subject: Re: Paypal Website Pro with CF One of our own has simplified Paypal integration. You can

RE: Need REGEX help

2005-11-23 Thread Bobby Hartsfield
Hey, there are some pretty useful js regex's in there. Thanks for sharing ;) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 23, 2005 9:05 PM To: CF-Talk Subject: Re:

RE: More RAD than Ruby On Rails

2005-11-23 Thread Mark Fuqua
Sean, For the record, PLUM is not, primarily, a code generator. It has a code generator, which is quite a time saver. But I would venture a guess that most PLUM users (this is especially true of advanced users) make very little use of the generator. It is the framework, the custom tags and

RE: CF Hosting

2005-11-23 Thread Russ
That is ridiculous... the GUI is always loaded, and while it might not be active 100% of the time while you're not logged in, it gets loaded when windows boots up and stays loaded taking up memory and some cpu cycles. Someone on this list even reported that they found out only much later that

Re: More RAD than Ruby On Rails

2005-11-23 Thread Sean Corfield
On 11/23/05, Mark Fuqua [EMAIL PROTECTED] wrote: You should grab yourself a wincrap box and try it for a few days. You will be amazed how far down the rabbit hole goes. I had someone send me a generated application to look at. I didn't like the framework or the generated code. You obviously

  1   2   >