Re: CF Performance re: multiple CPUs, Cores, Servers, Virtualizat ion

2007-07-30 Thread Jochem van Dieten
Dave Watts wrote: Our application mix that needs the performance runs mostly between midnight and mid-morning, and is a suite of CF scripts that interact with webservices from the major search engines. Lots of XML parsing and processing with lots of database activity to store the data.

(Admin) Please use ColdFusion 8 list

2007-07-30 Thread Michael Dinowitz
ColdFusion talk is for technical talk only. With the release of ColdFusion 8, there will be a ton of ColdFusion 8 discussion that will be interesting, but not tech related. Any non-tech ColdFusion 8 talk should be moved to the ColdFusion 8 mailing list. This includes gripes on pricing, praise for

Re: Railo and CF8 speed contest

2007-07-30 Thread Paul Hastings
Andrew Grosset wrote: I found the solution: The problem is Windows XP SP2. The work around is to route your CF Admin Datasource connection through an MS ODBC socket, whatever that is... instructions can be found here:

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Michael Dinowitz
This url? http://www.adobe.com/products/coldfusion/ the URL still has a typo ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now

Unable to instantiate environment for 'ODBC.'

2007-07-30 Thread Tarek Jubaer
Hi i have developed an application on cold fusion MX 7. Everything runs smoothly. But at the login page, some time i get the error ODBC Error Code = () Unable to instantiate environment for 'ODBC.' when i try to login to the system. Can anyone help me with the problem and a solution? Thanks

Re: ColdFusion 8 is available!

2007-07-30 Thread Oguz Demirkapi
http://www.adobe.com/coldfusion/ :) _ From: Oğuz Demirkapı [mailto:[EMAIL PROTECTED] To: CF-Talk [mailto:[EMAIL PROTECTED] Sent: Mon, 30 Jul 2007 07:01:37 +0200 Subject: ColdFusion 8 is available! ColdFusion 8 is available! http://www.adobe.com/cfusion/ Have fun! Sincerely,

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dale Fraser
How many people use it? After this stunt, not many I hope. Almost 6 times the price is just stupid. I had budget allocated to upgrade from Standard to Enterprise, first time to purchase Enterprise, that just went out the door.

Re: ColdFusion 8 is available!

2007-07-30 Thread Michael Dinowitz
That url seems to be faulty. Try this one: http://www.adobe.com/products/coldfusion/ ColdFusion 8 is available! http://www.adobe.com/cfusion/ Have fun! Sincerely, O?uz Demirkap? Sr. Developer | TeraTech http://www.teratech.com

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Michael Dinowitz
6 times? I think your talking apples and rocks. Both are roundish, but The 6 times your talking about is the cost of moving from standard to enterprise. For those who are not making that major leap (most everyone), the figure of 6 times is just a scare tactic. As for who's using it, many

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dale Fraser
Adobe today put some nails in the ColdFusion coffin with the Release of ColdFusion 8. To the suprise of the world, they decided to increase the price by 25%. What a joke when the biggest complaint is the price when compared to like products. I'm not sure who made this decission, or if any big

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Sean Corfield
On 7/29/07, Michael Dinowitz [EMAIL PROTECTED] wrote: As for your post on CF 8 being a dead product because of the price increase, note that the increase if for Enterprise. How many people here (other than me) actually use or need enterprise. Me! To be honest, the difference between

Query of Queries date comparison

2007-07-30 Thread Mark Lewis
Hi, Wondered if someone could advise on this problem I am having. I have created a query as shown below... cfset event = QueryNew(date, name, destination, date, varchar, varchar) cfset newRow = QueryAddRow(event, 2) cfset temp = QuerySetCell(event, date, 07/28/2007, 1) cfset temp =

Re: Transaction, in DAO? or in Service?

2007-07-30 Thread Adam Haskell
Oh man not sure how I missed this little jewel, good stuff! Adam Haskell On 7/27/07, Barney Boisvert [EMAIL PROTECTED] wrote: Transaction demarcation is a business-tier concern, not a persistence-tier concern. To put that another way, it's business logic that determines which persistence

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Adam Haskell
I want to echo what Sean said...I looked at CF8 and thought, wow finally a product that I would really label Enterprise. Not to say CF7 wasn't Enterprise, it had some great features and was a great release, but I think the monitoring and some of the Administration changes helped make it really

Re: Query of Queries date comparison

2007-07-30 Thread Gualtiero Sappa
You can try using data object instead of a string formatted as a date. I think the column in your query is of type string. Bye Gualtiero - Original Message - From: Mark Lewis [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, July 30, 2007 1:43 PM Subject: Query of

RE: Query of Queries date comparison

2007-07-30 Thread Dave Francis
Date is possibly(probably) a reserved word? Even if it isn't, your test will fail when the year rolls over - you should test /mm/dd. And I think you might need apostrophes around today's formatted date? None of this is guaranteed, I am famous for being wrong. -Original Message-

RE: (Admin) Please use ColdFusion 8 list

2007-07-30 Thread Ben Nadel
Oh man! But I'm only on Talk/Newbie :( ... It's cool, I have work to do anyway :) ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now

Re: Query of Queries date comparison

2007-07-30 Thread AJ Mercer
Not too sure about this, but have you tried it with GT maybe also try changing the filed name from date to tripDate - in case it is a reserved word On 7/30/07, Mark Lewis [EMAIL PROTECTED] wrote: Hi, Wondered if someone could advise on this problem I am having. I have created a query as

RE: Good CF-centric web services tutorial?

2007-07-30 Thread Ben Nadel
Scott, I have tone a bit of tinkering with Web Services (very little, though). This might help you, as I had to wade through a bunch of stuff to get there: http://www.bennadel.com/index.cfm?dax=blog:430.view http://www.bennadel.com/index.cfm?dax=blog:438.view Cheers .. Ben

RE: Query of Queries date comparison

2007-07-30 Thread Ben Nadel
Mark, I think the problem is the date column. Date is a reserved word, I think, and must be wrapped in []. Also, I would use a query param as it takes care of the data type conversion. cfquery name=search dbtype=query SELECT * FROM event WHERE [date] cfqueryparam

CFC defining vars

2007-07-30 Thread Chad Gray
I have noticed in a lot of people's code for CFCs they set all of the variables being used in the CFC like this: cfset var foo = Why? Is this just good programming practice? Also what scope are these variables in? variables.foo?

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Rick Root
On 7/30/07, Sean Corfield [EMAIL PROTECTED] wrote: To be honest, the difference between $3,000/CPU and $3,750/CPU is pretty negligible in an enterprise world. I would agree here. The cost of the server is pretty minor compared to the cost of everything else that goes into building an

Re: Query of Queries date comparison

2007-07-30 Thread Mark Lewis
Gualtiero and Dave thanks for your help I have resolved the issue with both your tips. Thank you for your time again Mark Date is possibly(probably) a reserved word? Even if it isn't, your test will fail when the year rolls over - you should test /mm/dd. And I think you might need

Re: Query of Queries date comparison

2007-07-30 Thread Mark Lewis
Oh sorry, I only just got everyone else's responses through, thank you to you guys for your time too. Much appreciated, Mark ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now

Re: Query of Queries date comparison

2007-07-30 Thread Ben Doom
I think you need quotes around your date in the comparison in the SQL. But I always have trouble with QoQ syntax for some reason. --Ben Doom Mark Lewis wrote: Hi, Wondered if someone could advise on this problem I am having. I have created a query as shown below... cfset event =

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread jonese
Poor Adobe. No matter what they do someone will be the hater. Like Sean mentioned previously with the feature spread this time (versus 7) there should be less But i don't want to buy Enterprise for Feature X, why didn't they put it in standard. I'm sure there will be a large group who will bring

Re: (Admin) Please use ColdFusion 8 list

2007-07-30 Thread Rick Root
No need now, Coldfusion 8 is official so you can presumably talk about it here now :) Rick On 7/30/07, Ben Nadel [EMAIL PROTECTED] wrote: Oh man! But I'm only on Talk/Newbie :( ... It's cool, I have work to do anyway :)

Re: Query of Queries date comparison

2007-07-30 Thread Claude Schneegans
I would like to run a query on this query where it finds only the records where the date is greater than today. You cannot compare dates if they are stored in American format. Use QuerySetCell(event, date, 2007/07/28, 1) Instead: always with mask /mm/dd Then WHERE date

Re: CFC defining vars

2007-07-30 Thread Gualtiero Sappa
If you use var keyword you declare the variable as local, so when the execution exit from the function the variable can be destroyed by garbage collector. If you don't use var keyword the variable is stored in variables scope and can be destroyed only at the end of caller page execution. So

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Andy Matthews
Rick... You make compelling arguments. But IMO, if you have to explain the ROI to someone, then you've already lost the battle. There might be a few people that would be convinced by your (compelling) arguments. But most people are going to see that price tag and not even BOTHER reading the rest

RE: CFC defining vars

2007-07-30 Thread Brad Wood
That makes the variable exist only for the duration of that method call. For instance, you have a CFC which is persisted in the application scope. cfset application.my_cfc = CreateObject('component','CFC.foo') It has a method called helloWorld() which queries their name out of the database a

cfbooks.cfm for CF 8

2007-07-30 Thread Randy Johnson
Does anyone know where an updated cfbooks.chm file would be for CF8 if one has been done yet? -Randy ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and

Re: CF page calling a Webservice that returns a complex structure

2007-07-30 Thread Archie Campbell
Dave Watts wrote: While the website looks modern the most recent download is 1999 and the last news item in 2001 talks about the new site openwddx.org opening. So ... is this an old technology that is begin replaced by a more mature XML environment? Yes, it's quite old - it dates

Re: Query of Queries date comparison

2007-07-30 Thread Claude Schneegans
and yes, since you are actually working with strings, not dates, you do need quotes in WHERE date '#DateFormat(Now(),/mm/dd)#' -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to

Re: (Admin) Please use ColdFusion 8 list

2007-07-30 Thread mdinowit
Every need if the conversation is off topic. It's either the ColdFusion 8 list or CF-OT. On 7/30/07, Rick Root [EMAIL PROTECTED] wrote: No need now, Coldfusion 8 is official so you can presumably talk about it here now :) Rick On 7/30/07, Ben Nadel [EMAIL PROTECTED] wrote: Oh man! But

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread JJ Cool
To be honest, the difference between $3,000/CPU and $3,750/CPU is pretty negligible in an enterprise world. I would agree here. The cost of the server is pretty minor compared to the cost of everything else that goes into building an enterprise environment. Especially when you consider the

Re: CFC defining vars

2007-07-30 Thread Cutter (CFRelated)
The 'var' scope is for function-specific variables, that you don't want carried into the VARIABLES scope. They exist only for the lifetime of the function itself, whereas the VARIABLES scope will maintain throughout the life of the CFC instance. Steve Cutter Blades Adobe Certified Professional

Re: CFC defining vars

2007-07-30 Thread Brian Kotek
The var keyword declares the variable as local to the method, and this is probably the most critical thing that you absolutely MUST do when writing and using CFCs. Failure to do this will result in bugs and concurrency issues that will be extremely difficult to track down. So, use the var keyword

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Justin Scott
I'm sure there will be a large group who will bring up the whole lack of server monitoring and multiple logins but come on, for a standard installation do you really need that? Personally, my belief is that server monitoring is a must no matter what edition you run, or how many sites you're

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Brian Kotek
Also, one thing that hasn't gotten much press is the FIPS 140 compliant encryption. To anyone that does work with the government this is HUGE. And it is very expensive to add/implement. On 7/30/07, Sean Corfield [EMAIL PROTECTED] wrote: On 7/29/07, Michael Dinowitz [EMAIL PROTECTED] wrote: As

Re: CFC defining vars

2007-07-30 Thread Jake Pilgrim
Gualtiero hit the nail on the head - it allows you to define a variable (or a variable scope aka struct) who only exists for the duration of the function's processing. 'What scope is it in?' - it's in the same scope as if you omitted the 'var' keyword. cfset myVar = 'purple' / cfset var

RE: Unable to instantiate environment for 'ODBC.'

2007-07-30 Thread Dave Watts
i have developed an application on cold fusion MX 7. Everything runs smoothly. But at the login page, some time i get the error ODBC Error Code = () Unable to instantiate environment for 'ODBC.' when i try to login to the system. Can anyone help me with the problem and a solution?

Re: (Admin) Please use ColdFusion 8 list

2007-07-30 Thread Mark Drew
Whats this ColdFusion thing you all keep talking about?! (no, dont answer) MD On 7/30/07, Rick Root [EMAIL PROTECTED] wrote: No need now, Coldfusion 8 is official so you can presumably talk about it here now :) Rick On 7/30/07, Ben Nadel [EMAIL PROTECTED] wrote: Oh man! But I'm only on

dreamweaver CF8 help

2007-07-30 Thread Chad Gray
I installed the CF8 Dreamweaver updater and the help files are not local they go to livedocs... and the URL doesn't even work. http://www.adobe.com/go/livedocs_cf8docs What good are help files if I have to be online to get to them? Adobe really seems to be pushing Eclipse... are they trying

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread JJ Cool
Rick... You make compelling arguments. But IMO, if you have to explain the ROI to someone, then you've already lost the battle. There might be a few people that would be convinced by your (compelling) arguments. But most people are going to see that price tag and not even BOTHER reading the rest

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Sean Corfield
On 7/30/07, Justin Scott [EMAIL PROTECTED] wrote: Personally, my belief is that server monitoring is a must no matter what edition you run, or how many sites you're running. I can't count how many times FusionReactor has helped diagnose problems that would have taken far longer to fix without

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dave Watts
You make compelling arguments. But IMO, if you have to explain the ROI to someone, then you've already lost the battle. There might be a few people that would be convinced by your (compelling) arguments. But most people are going to see that price tag and not even BOTHER reading the rest

Re: cfbooks.cfm for CF 8

2007-07-30 Thread Sean Corfield
On 7/30/07, Randy Johnson [EMAIL PROTECTED] wrote: Does anyone know where an updated cfbooks.chm file would be for CF8 if one has been done yet? What's cfbooks.chm? -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ If you're not annoying somebody, you're not

RE: Railo and CF8 speed contest

2007-07-30 Thread Dave Watts
If anyone is having trouble coonecting to a (SQL 2000) datasource (as I was) and getting this error: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection I found the solution: The problem is

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Charles E. Heizer1
So, I have to agree with Dale... Adobe has put a bullet in CF. For example, Standard Edition would be fine for me but I need Oracle access and now I need to pay twice that just to do supported Oracle connectivity. We are an enterprise and when I discussed this with management they came back

xml / xslt and CF caching

2007-07-30 Thread Jim Rising
I have been using XmlTransform() to transform xml and xsl into xhtml ... and have come across an issue where it seems that the xsl is being cached by CF. has anyone else experienced this? i have verified that all the files exist where they are expected to be, but i get this as an error:

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Justin Scott
So buy Standard Edition and use FusionReactor. I don't see what your problem is there? I don't have a problem. I believe what I said (which you didn't quote) was that while I wish it had been included, I was fine with the fact that it wasn't as long as 3rd party tools are available to do the

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread mac jordan
On 7/30/07, Adam Haskell [EMAIL PROTECTED] wrote: You have to look at this product and realize enterprise is worthless to you unless you really need super scalability. Standard has it all, albeit limited/throttled. Sure cfthread and exchange integration and PDF (?) are throttled Has

Re: (Admin) Please use ColdFusion 8 list

2007-07-30 Thread Greg Morphis
Yeah it sucks balls to have to be on 10 different lists... The problem is that not everyone is on those lists.. Where as here, everyone is. On 7/30/07, Ben Nadel [EMAIL PROTECTED] wrote: Oh man! But I'm only on Talk/Newbie :( ... It's cool, I have work to do anyway :)

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Brian Kotek
I don't get this at all. People are flipping out about Enterprise going up in cost. How many people run Enterprise?! The standard version stays the same and gets a huge bump in features. The people complaining are talking like they raised the price of both versions. CF standard is a STEAL at

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Brad Wood
That sure sounds cool. What is it? ~Brad -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 10:45 AM To: CF-Talk Subject: Re: Adobe Nails ColdFusion Cofin Also, one thing that hasn't gotten much press is the FIPS 140 compliant encryption. To

CFOpenChat Help

2007-07-30 Thread Rick Root
Would y'all mind joining me in the cfopenchat demo chat room? I've just made some changes (eliminating the use of session variables) in hopes to eliminate a problem I was having with losing session). If you could come into the chat room and just leave the window open for a while (10 minutes, an

Re: CFC defining vars

2007-07-30 Thread Charlie Griefer
using the 'var' keyword scopes the variable into the local scope *for that function/method*. so cfset var foo = / means 'foo' is available to only that method call and you don't have the potential issue of another method with a similarly named variable stomping the expected value. it's good

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Eric Roberts
If they think that then their business already lost the battle... Eric -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 9:25 AM To: CF-Talk Subject: RE: Adobe Nails ColdFusion Cofin Rick... You make compelling arguments. But IMO, if you have

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Rey Bango
Yes and its not the type of client prospect you should waste time and effort on. Well, that would be sad if someone did that. If someone can't calculate an ROI, they're incompetent to run a company. CoolJJ ~| Get the

RE: CFC defining vars

2007-07-30 Thread Brad Wood
Since it is sometimes hard to remember to var everything, one trick is to do the following at the top of your CFC: cfset var local = structnew() Then every variable you want to only exist for the duration of that method can be set like so: cfset local.foo = bar Kind of like inventing your own

RE: cfbooks.cfm for CF 8

2007-07-30 Thread Dave Watts
Does anyone know where an updated cfbooks.chm file would be for CF8 if one has been done yet? I think it would be here: http://download.macromedia.com/pub/coldfusion/8/dreamweaverupdate/cf8_tags_f or_dw.mxp I haven't checked yet myself, though. Dave Watts, CTO, Fig Leaf Software

Missing Fuse in Fusebox 5.1

2007-07-30 Thread Phillip M. Vector
You tried to include a fuse qry_CheckBansByIP.cfm in circuit Security which does not exist (from fuseaction Security.default). 2906ms Fusebox Including parsed file for 'Login.Default' 1 7406ms Runtime fuseaction action=Security.Default/ 1 7406ms Runtime include

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Raymond Camden
One more thing about the Server Monitor. It isn't just for use on live sites. You can very easily use it on your dev server to identify problems/bottlenecks in your code. I know I've told this story before - but I still remember using the SM for a grand total of 5 minutes and finding a big problem

CF8 and CFZip

2007-07-30 Thread Chad Gray
Hey Ben Forta, I want my money back. CFZip is built into CF8 and I purchased it many o' years ago from you! Just joking of course! :) I have gotten my money's worth out of it that is for sure. I just thought it was funny to see the tag in CF8.

Re: CFC defining vars

2007-07-30 Thread Brian Kotek
On 7/30/07, Jake Pilgrim [EMAIL PROTECTED] wrote: 'What scope is it in?' - it's in the same scope as if you omitted the 'var' keyword. cfset myVar = 'purple' / cfset var myVar = 'purple' / In both cases, your variable would be in the 'variables' scope. Jake this is not only incorrect

Re: CFC defining vars

2007-07-30 Thread Sean Corfield
On 7/30/07, Jake Pilgrim [EMAIL PROTECTED] wrote: 'What scope is it in?' - it's in the same scope as if you omitted the 'var' keyword. Nope, they are in separate scopes. cfset myVar = 'purple' / cfset var myVar = 'purple' / In both cases, your variable would be in the 'variables' scope.

test

2007-07-30 Thread Jim Rising
i sent a message earlier today and it has showed up in the archive, but never arrived in email. -jim ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and

Re: (Admin) Please use ColdFusion 8 list

2007-07-30 Thread Michael Dinowitz
Right, but note that this is a technical only list. ANYTHING that is not technical, such as gripes over pricing, user group meeting announcements, calls for party, etc. are all OT for this list. That's the point of this post which in itself has become OT On 7/30/07, Greg Morphis [EMAIL PROTECTED]

Re: CFC defining vars

2007-07-30 Thread Brian Kotek
Yes, name it and var scope it. On 7/30/07, Chad Gray [EMAIL PROTECTED] wrote: Thanks for all of the info on this subject. I have fixed most of my existing code. One question I have is what happens if I don't declare a name= attribute for a cfquery? IE: cfquery

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Bruce Sorge
and not worry about buying upgrades and we'll get new features as they come out. Be careful on this one. For instance, when .NET 2.0 came out, and we wanted to upgrade our servers, we discovered that a lot of our 1.0 apps would not work. So in order for us to do this we had to re-write a lot

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Rey Bango
I completely disagree with this statement Andy. Part of being a consultant is selling your solution and if a person can't effectively do that, then they shouldn't be in the consulting business at all. What I've seen over the time I've been involved with ColdFusion is less people that are

RE: Query of Queries date comparison

2007-07-30 Thread Ben Nadel
Claude, I think he is working with dates; I think the data-type for that column in Querynew() was date. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Claude

Wiki

2007-07-30 Thread Brad Wood
Dang it! Someone JUST beat me to the Wikipedia page. I was totally going to be the first to update it to declare CF 8 the current version Lol ~Brad ~| Enterprise web applications, build robust, secure scalable apps

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Rick Root
On 7/30/07, Brad Wood [EMAIL PROTECTED] wrote: That sure sounds cool. What is it? www.justfuckinggoogleit.com http://www.google.com/search?q=fips+140 ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and

RE: CFC defining vars

2007-07-30 Thread Chad Gray
REALLY? Oh boy, I have some code to fix. :) Glad I just started using CFCs... not much code to fix. -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 11:00 AM To: CF-Talk Subject: RE: CFC defining vars That makes the variable exist only for

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread John Mason
You can use the Oracle j2ee drivers (that comes with Oracle) to work with CF standard. Just a little more work on your end, but it works fine. This is for Oracle 10g, it may be slightly different for other versions.. -Find the ojdbc14.jar driver on your oracle installation -Put that jar into your

Re: CF8 Install Problem

2007-07-30 Thread Cutter (CFRelated)
Greg, See if this helps any. http://blog.cutterscrossing.com/index.cfm/2007/7/23/Local-Development-Setup-Pt-1-Apache-and-ColdFusion-7-or-8 Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com

RE: CF8 and CFZip

2007-07-30 Thread Ben Forta
Yep, I guess I won't retire on that tag now after all. ;-) --- Ben -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 12:29 PM To: CF-Talk Subject: CF8 and CFZip Hey Ben Forta, I want my money back. CFZip is built into CF8 and I purchased it many

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dinner
On 7/30/07, Justin Scott wrote: Personally, my belief is that server monitoring is a must no matter what edition you run, or how many sites you're running. I can't count how The nice thing about the 1.5 and above JRE, is that you can slap in some pretty nice monitoring tools yourself. One of

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Jim Davis
-Original Message- From: Charles E. Heizer1 [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 1:57 PM To: CF-Talk Subject: Re: Adobe Nails ColdFusion Cofin So, I have to agree with Dale... Adobe has put a bullet in CF. For example, Standard Edition would be fine for me but I

RE: CFC defining vars

2007-07-30 Thread Chad Gray
Thanks for all of the info on this subject. I have fixed most of my existing code. One question I have is what happens if I don't declare a name= attribute for a cfquery? IE: cfquery datasource=#application.dsn# Lots of sql here /cfquery I tend to do this on updates or inserts of a database

Re: CF8 Install Problem

2007-07-30 Thread Greg Fuller
After serveral CF8 restarts and Apache restarts, it works now. Go figure. On 7/30/07, Greg Fuller [EMAIL PROTECTED] wrote: Just installed CF8 with the apache connector. Apache is passing .cfm's to CF only when the .cfm is in the CFIDE directory. The CFIDE directory is properly under my

Re: Blog CFC, PHP Equivalent

2007-07-30 Thread Greg Fuller
Expression Engine (the Core product is free) On 7/27/07, Eric Haskins [EMAIL PROTECTED] wrote: WordPress? Eric On 7/26/07, Peter Donahue [EMAIL PROTECTED] wrote: Hello again everyone, Sorry if this is slightly OT, but after exhausting all other lists to which such a post would

Re: popup closing causes logout

2007-07-30 Thread Mark Brown
I have a popup window that I use for uploading images. After the upload is completed, the user closes the popup. On IE, closing the popup causes the user to be logged out. Any ideas why this is happening? I am using a session variable to retain the login status. I'm having the same issue

Need to print graphic document with cfdocument

2007-07-30 Thread Arthur.Frey
I am trying to create a dynamic PDF using cfdocument. The dynamic part is not an issue, but I am creating a 17x11inch pdf with .25inch border. First of all I am unable to determine what the height and with are for the PDF. I have tried just about everything. Second of all, when a approach

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Mark Mandel
Charles, Why not just use Standard, and use the free JDBC drivers you can download from Oracle themselves, and just make an 'other' connection? What's the problem with that? I hate to say this, I have to wonder - if your business is complaining about paying ~10K for their server software, (or

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread John Mason
You can use the Oracle j2ee drivers (that comes with Oracle) to work with CF standard. Just a little more work on your end, but it works fine. This is for Oracle 10g, it may be slightly different for other versions.. -Find the ojdbc14.jar driver on your oracle installation -Put that jar into your

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Neil Middleton
As a developer working 40 hours a week at a certain hourly rate... if I'm even 10% more productive working on Coldfusion versus another environment, that alone makes the COST of Coldfusion worthwhile. Let's say the cost of my employment, including benefits, is about $50/hour. The 10% productivity

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Andy Matthews
That's a ridiculous statement Rey... Just because a client doesn't want to drop 1/4 or 1/5 oif their budget on an application server doesn't mean that they're not worth doing business with. andy -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dale Fraser
I have to agree that I have never had issues selling the benefits of CF and ROI, it's actually an easy sell. I just purely don't understand the price hike, in a market where software is becoming less expensive and also free, a 25% increase is unjustified unless there is some new feature that they

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Adam Haskell
One more thing about the Server Monitor. It isn't just for use on live sites. You can very easily use it on your dev server to identify problems/bottlenecks in your code. That's an excellent and potentially overlooked (by many) point! SM is enabled, if I understand correctly, in developer mode.

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Mark Mandel
John, From what I know (or remember) of the legalities of it all - it is actually rather expensive for CF to ship with a driver, as there are a slew of licensing costs. This was one of the reasons it took so long to get postGres and mySQL5 drivers with CF. But there has never, ever been any

CF Reports and conditional Logic

2007-07-30 Thread jonese
I'm sure this is easy (at least i hope it is) but I'm not sure how to implement it. We have a report of membership cards and these membership cards have an image and then text layered on top. A user generates a PDF which then they can cut out the cards and have it as a temporary card until their

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Jim Davis
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 12:57 PM To: CF-Talk Subject: RE: Adobe Nails ColdFusion Cofin You make compelling arguments. But IMO, if you have to explain the ROI to someone, then you've already lost the battle.

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dave Watts
Now why does CF standard not just go ahead and do this for you. Well franky I don't know, but it really doesn't matter if you have the drivers anyway. Adobe can't just bundle whatever they like. They bundle DataDirect drivers, and pay for the privilege. Presumably, that's one reason why

Re: cfbooks.cfm for CF 8

2007-07-30 Thread Randy Johnson
Sean Corfield wrote: On 7/30/07, Randy Johnson [EMAIL PROTECTED] wrote: Does anyone know where an updated cfbooks.chm file would be for CF8 if one has been done yet? What's cfbooks.chm? It is the the coldfusion documentation CHM file that is found in the dreamweaver help

Re: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Bryan Stevenson
I don't get this at all. People are flipping out about Enterprise going up in cost. How many people run Enterprise?! The standard version stays the same and gets a huge bump in features. The people complaining are talking like they raised the price of both versions. CF standard is a STEAL at

Attribute validation error for tag CFFILE

2007-07-30 Thread Tom Hines
I get an error in our shopping cart application when I add a product. After I use application browse button to specify an image on the same drive and then click the submit button. I get the following error from the application and the application log. Error Message from Application Attribute

RE: Adobe Nails ColdFusion Cofin

2007-07-30 Thread Dave Watts
Just because a client doesn't want to drop 1/4 or 1/5 oif their budget on an application server doesn't mean that they're not worth doing business with. If doing so would save them money in the long run, and if this is something they could easily discover by, oh, doing their job and

  1   2   >