cfcache problem

2007-09-20 Thread Richard Steele
The first line of code in my cfm page is This works most of the time, but occasionally I get an error. Failed to add HTML header. What am I missing here? Thanks in advance. ~| ColdFusion is delivering applications solutions a

Re: Recursion problem

2007-09-20 Thread Matt Quackenbush
http://tutorial478.easycfm.com/ ~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Arc

Re: Recursion problem

2007-09-20 Thread James Holmes
You can get the whole structure on one query: http://www.oreilly.com/catalog/sqlpr/chapter/ch01.pdf On 9/21/07, Mike Little <[EMAIL PROTECTED]> wrote: > i will only ever be going 2-3 levels deep at this stage. > > >I'm not sure how many levels of recursion your trying to do, but with CF > >there

Re: Recursion problem

2007-09-20 Thread Mike Little
i will only ever be going 2-3 levels deep at this stage. >I'm not sure how many levels of recursion your trying to do, but with CF >there is a limit to recursion. This little factorial function will show >you that limit in a hurry if you put in a large enough value. > >output="yes"> > >

Re: Numberformat and cfgrid

2007-09-20 Thread Andrew Scott
Ray Camden has blogged about column rendring, maybe you check that out. On 9/21/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > I just need to add commas to a grid column that are displaying numbers. I > think I need to use numberformat but I am not sure how to use it. > > Any help would be gre

Re: Recursion problem

2007-09-20 Thread Wil Genovese
I'm not sure how many levels of recursion your trying to do, but with CF there is a limit to recursion. This little factorial function will show you that limit in a hurry if you put in a large enough value. Calling myself with #arguments.end_value-1#

Re: Need to update HTML table rows using a webservice

2007-09-20 Thread Andrew Grosset
Wow! I'd recommend "Ajax Hacks" published by O'Reilly to anyone using ajax - hugely useful with lots of useful tips. Andrew ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Andrew Grosset
I use the request scope for database name, username & password for cfqueries since I believe application variables can be read by all on a shared server - not sure if this is still the case though. Andrew. > I store settings such >as the applications database name in the application scope sinc

Recursion problem

2007-09-20 Thread Mike | NZSolutions Ltd
Hi guys, I am attempting to create a limitless level category system. This is what I have so far... Calling page... #application.category.display_categories(0)# Cfc... SELECT * FROM

Re: Need to update HTML table rows using a webservice

2007-09-20 Thread Matthew Williams
So close, and yet... here's what I got. I have a href calling the JS function getIt. Which is: function getIt(myId){ var response = httpRequest('/search.cfc?method=returnStuff'); $('#test').append(response); } I have my CFC doing this.

Numberformat and cfgrid

2007-09-20 Thread Steve Sequenzia
I just need to add commas to a grid column that are displaying numbers. I think I need to use numberformat but I am not sure how to use it. Any help would be great. ~| ColdFusion is delivering applications solutions at at top c

Re: Server side form validation & CF8

2007-09-20 Thread Anthony Webb
I tried changing form.fieldnames and replacing the old fieldnames with the new ones on the whim that maybe it was looping over that list for validation, but that did not do anything. It is referencing that element of the form some other way. Is anyone aware of how to just disable form validati

Re: Server side form validation & CF8

2007-09-20 Thread Anthony Webb
Looks to me like the problem is that it is trying to validate the element that you deleted when you inserted the new item with _CFFIX appended. cf8 must be doing form validation by looping over the fieldnames instead of the form structure itself, and when you delete elements from the structure,

RE: Trying to parse though XML

2007-09-20 Thread Dave Francis
You might want to get a copy of "ColdFusion XMLObjects" by Jeff Peters. It's cheap and a not bad intro. -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 6:16 PM To: CF-Talk Subject: RE: Trying to parse though XML Yeah, I did that but I gue

Re: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Charlie Griefer
http://squidhead.riaforge.org/ On 9/20/07, Gaulin, Mark <[EMAIL PROTECTED]> wrote: > Hi > Anybody know of a code generator for "scaffolding" derived from a > database table (or query)? Ruby on rails has a cool feature like this > and I was wondering if anyone attempted this with CF. We'd be happ

RE: Trying to parse though XML

2007-09-20 Thread Bruce Sorge
Yeah, I did that but I guess I do not understand how to dig into it deeper. I will Google this issue. I am sure I can come up with something. Thanks, Bruce -Original Message- From: Dave Francis Sent: Thursday, September 20, 2007 2:39 PM To: CF-Talk Subject: RE: Trying to parse though X

Re: Forums?

2007-09-20 Thread NUGROHO NOTO
>Yes, but development has stopped years ago when we were unable to get >clarification from Macromedia on the exact terms of the license and the >possibility of relicensing under an OSI approved Open Source license. Thanks Jochem. Hmm... does it mean... we can / or cannot use this forum script f

Server side form validation & CF8

2007-09-20 Thread Dominic Watson
A little time ago I made a template for developing CF apps for Facebook using FBML (facbook markup language). The template works great in CF6.1 & 7. Someone has just messaged me though saying that they are getting a Null pointer exception when trying to use it in CF8. Ode to joy. Looking at the er

Re: Text Editor Preferences?

2007-09-20 Thread Claude Schneegans
>>but am curious to see what everyone else is using for a text editor out there. Depends... Are you under DOS or CP/M ? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [E

RE: Darn syntax

2007-09-20 Thread Rob O'Brien
Let's try that again: Rob -Original Message- From: Rob O'Brien Sent: Thursday, September 20, 2007 4:36 PM To: 'cf-talk@houseoffusion.com' Subject: RE: Darn syntax Give this a go: -Original Message- From: Robert Harrison Sent: Thursday, September 20, 2007

Facebook apps wont run on CF8

2007-09-20 Thread Anthony Webb
Hi all, been banging my head against the wall getting a simple "hello world" app running on CF8. Apparently there is some issues with the form field validator in CF8? At any rate more details are here: http://www.facebook.com/topic.php?uid=2205007948&topic=9278&post=69186#post69186 Looks li

Re: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Brian Kotek
Model-Glue will automatically generate list/add/edit/delete scaffolds for you (using Transfer or Reactor). And the next version of Fusebox will also do scaffolding. On 9/20/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > > Anybody know of a code generator for "scaffolding" derived from a > > dat

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Vince Collins
ack! OK, will do. Thanks! Brian Kotek wrote: > You need to var-scope your queries, or you'll run into concurrency issues if > you store this CFC in the application scope. This is critical. You must > var-scope everything: query names, loop index variables, temp variables, > etc. > > On 9/20/0

RE: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Eric Roberts
I am just learning all of this myself :-D I have used either fusebox or a fusebox like style for most the past 10 years. My new job requires that I learn model-glue. I have been having a heck of a time getting it installed on my laptop for a local dev environemtn. The idea is pretty cool though

Cfcalendar - 410 error

2007-09-20 Thread [EMAIL PROTECTED]
Hey there all... I am using the cfcalendar command and am having some trouble with using it on the godaddy hosting services. The error I get says: JRun Servlet Error410 Unknown Unknown I have uploaded the cfide folder at the root with a different name. I have the cfcalendar code generated into a

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Brian Kotek
You need to var-scope your queries, or you'll run into concurrency issues if you store this CFC in the application scope. This is critical. You must var-scope everything: query names, loop index variables, temp variables, etc. On 9/20/07, Vince Collins <[EMAIL PROTECTED]> wrote: > > > == I

RE: A-MAZE-ing CSS Skill

2007-09-20 Thread Jim Davis
> -Original Message- > From: Claude Schneegans [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 20, 2007 10:25 AM > To: CF-Talk > Subject: Re: A-MAZE-ing CSS Skill > > >>The maze is rendered at the client using only HTML and CSS... > > and Javascript, unless they include Javasc

Re: Darn syntax

2007-09-20 Thread Wil Genovese
you need a variable for each portion of the createtimespan function. cachedwithin="#CreateTimeSpan(cache_time_day,cache_time_hour,cache_time_minute,cache_time_sec)#" -- Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doi

RE: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Gaulin, Mark
Hi Josh That sounds pretty cool. I'll check this one out for sure. Mark -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 4:28 PM To: CF-Talk Subject: Re: Automated code generator for db add/edit/delete/report? > Anybody know o

Re: Darn syntax

2007-09-20 Thread Wil Genovese
Ignore my other reply - darn sinus headache is fogging my brain. What Justin posted is correct. -- Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. Justin Scott wrote: >> >> cachedwithin="#CreateTimeSpan(2

CFDocument - Create PDF from HTML - Weird Spacing Issues

2007-09-20 Thread Jeff Chastain
I have a basic HTML document that has a simple table with some text inside. I am trying to then create a PDF document based on this HTML. The problem I am having is that I am getting really weird spacing issues in some of the text where there are HTML tags. For example, I have a paragraph o

RE: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Gaulin, Mark
Hi Eric Thanks for the pointer... I'll check it out. Mark -Original Message- From: Eric Roberts [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:44 PM To: CF-Talk Subject: RE: Automated code generator for db add/edit/delete/report? Reactor? Eric -Original Mess

Re: Darn syntax

2007-09-20 Thread Ben Doom
cachedwithin="#CreateTimeSpan(cache_time)#" This should work. Untested. --Ben Doom ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.com/w

RE: CFEXECUTE and PSCP

2007-09-20 Thread Justin Scott
> Not accepting the key is still the most likely cause. > Can you see that the key is actually stored in the > user profile of the user that CF runs under? Try > running pscp from a command line that is opened with > the runas command for all combinations of /environment > and /profile. The progra

RE: Darn syntax

2007-09-20 Thread Rob O'Brien
Give this a go: -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 3:07 PM To: CF-Talk Subject: Darn syntax Let's try this again. the list seems to be funky. I've got the table driven system with all these profile reads. The profiles

RE: Text Editor Preferences?

2007-09-20 Thread Jacob
MS-DOS Editor 2.0 :) -Original Message- From: Crow T. Robot [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 12:51 PM To: CF-Talk Subject: Re: Text Editor Preferences? what does one need a text editor for these days? On 9/20/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > > n

RE: CF makes an appearance on Daily WTF

2007-09-20 Thread Bobby Hartsfield
Yeah I was just kidding. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 3:02 PM To: CF-Talk Subject: Re: CF makes an appearance on Daily WTF Worse Than Failure.

Re: Darn syntax

2007-09-20 Thread Scott Weikert
Try setting it up like: or and then ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archiv

RE: Instantiating all objects within Application.cfm

2007-09-20 Thread Rich
> It seems to me, at least with my CFC's design, that there is no reading > of the data into the application memory space, thus no need to reinit > unless I change the CFC itself. This behavior is what I would expect > but having said that, is there a 'better', way? > You are correct. The design

Re: Darn syntax

2007-09-20 Thread Josh Nathanson
> >. >cachedwithin="#cache_time#" I have that exact syntax working in one of my templates now. That should definitely work. Is it throwing an error, or does it not appear to be caching the query? -- Josh ~| Check out th

Re: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Tom McNeer
As Eric suggests, Reactor introspects your database the way Ruby on Rails does, and builds objects for accessing the data. By itself, however, it does not create the "scaffolding" of the usual add/update/list/delete pages. The Model-Glue framework includes support for scaffolding using either Rea

Re: Darn syntax

2007-09-20 Thread Ian Skinner
cachedwithin="#createTimeSpan(cache_time)#" OR maybe cachedwithin="#cache_time#" ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.c

RE: Darn syntax

2007-09-20 Thread Robert Harrison
Tried those. No go. Thanks. Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either/or... It must be &. -Original Message- F

RE: Darn syntax

2007-09-20 Thread Justin Scott
> > cachedwithin="#CreateTimeSpan(2, 0, 0, 0)#" Instead, try... OR And then... cachedwithin="#cache_time#" -Justin ~| ColdFusion is delivering applications solutions at at top companies around the world in government.

Re: Make coldfusion handles "page cannot be found"?

2007-09-20 Thread Ian Skinner
Both of those are appropriate ways to improve the missing template handler. But I believe the setting you are looking for is: *Enable HTTP status codes * Enables ColdFusion to set HTTP error status codes when ColdFusion errors are returned to the browser. ColdFusion sets an error status code of

RE: Darn syntax

2007-09-20 Thread Dave Watts
> cachedwithin="#createTimeSpan(cache_time)#" > > OR maybe > > > cachedwithin="#cache_time#" The first won't work, because the CreateTimeSpan function requires four arguments, not one. The second should work, I think. Also, you could probably do this: cachedwithin="#Evaluate("Create

RE: Trying to parse though XML

2007-09-20 Thread Dave Francis
if you cfdump XmlDocNotAvailable, you'll get a pretty good "map" of the xPath you need. -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:50 PM To: CF-Talk Subject: Trying to parse though XML OK, hopefully the third time is a charm: Good

Darn syntax

2007-09-20 Thread Robert Harrison
Let's try this again. the list seems to be funky. I've got the table driven system with all these profile reads. The profiles don't change often so I want to cache unless I'm testing. If I'm live I want my cache time at several days. So I set: OR

Re: Make coldfusion handles "page cannot be found"?

2007-09-20 Thread Scott Weikert
Johnny Le wrote: > Thank you. That wasn't my question though. I just want to know why on one > server, ColdFusion handles the error and on the other, IIS handles the error. > Are there any configuration somewhere either in the IIS or CFadmin that > dictates which one to handle the error? >

Re: Scrambling data...

2007-09-20 Thread Ben Doom
If you don't need to do it programatically, that might be the easiest way. If there are a bunch, and you just need it to be unlikely they line up, do a select then sort one or both columns using arraysort(). Maybe sort the last names ascending, and the first names descending. If you want them

Re: Forums?

2007-09-20 Thread Jochem van Dieten
NUGROHO NOTO wrote: > http://www1.oli.tudelft.nl/forumspot/download/ > > Is it the same forums ? That is a continuation of development of the Allaire Forums. > anybody have used this ? Yes, but development has stopped years ago when we were unable to get clarification from Macromedia on the

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Vince Collins
Thanks to you and others, I understand now that if you change your CFC and have already run it inside the application scope, you need to reinit. Your suggested code is very handy for that. Thanks! Now... "This will cause your initialization code in the application.cfm file to fire, which

Re: CFEXECUTE and PSCP

2007-09-20 Thread Jochem van Dieten
Justin Scott wrote: >> Not an exact answer to your question, but have you >> tried logging on interactively as the user CF runs >> as? >> >> I think from my memory that the first time pscp runs >> it sets up a key for your user profile. Assuming >> that your machine is running some flavor of windo

Re: Text Editor Preferences?

2007-09-20 Thread Crow T. Robot
what does one need a text editor for these days? On 9/20/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > > notepad++ is pretty cool > > On 9/20/07, Chris Martin <[EMAIL PROTECTED]> wrote: > > I've been using TextPad since 1998...haven't seen any reason to switch, > > but am curious to see what ever

Re: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Josh Nathanson
> Anybody know of a code generator for "scaffolding" derived from a > database table (or query)? Have you checked out Brian Rinaldi's Illudium generator? http://code.google.com/p/cfcgenerator/ Uses db introspection to generate classes, dao, gateway and service objects, plus some other nifty stu

RE: Text Editor Preferences?

2007-09-20 Thread Andy Matthews
I love EditPlus. It's the best editor I've ever used. -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:04 PM To: CF-Talk Subject: Text Editor Preferences? I've been using TextPad since 1998...haven't seen any reason to switch, but am

Re: Forums?

2007-09-20 Thread Raymond Camden
Come on Rick - we can do that (add mailing list/newsgroup). How hard can it be? ;) On 9/20/07, Rick Root <[EMAIL PROTECTED]> wrote: > On 9/20/07, Andy Chen <[EMAIL PROTECTED]> wrote: > > > > No one likes FuseTalk? Too bad they don't have the source code version > > anymore. > > > > Yes, it's not

RE: Instantiating all objects within Application.cfm

2007-09-20 Thread Rich
Your inventory CFC does not contain any instance data, and thus would be a good candidate for placing in the application scope. To help you understand the difference, consider the following CFC:

Re: CFML in a string

2007-09-20 Thread Michael Beins
I tried that and I'm still not accomplishing what I want. Here is a link to another post I have that explains what I am trying to do. http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:53469 ~| Check out the new

Trying to parse though XML

2007-09-20 Thread Bruce Sorge
OK, hopefully the third time is a charm: Good afternoon all, Using CFHTTP, I get an XML structure that gets returned like this: *3* *sorge* *NAMESPINNER* *eng* *0* *0* *1* *10* *RESELLER1-STG* *test* *True* *True* What I am trying to do is loop through the do

Re: Text Editor Preferences?

2007-09-20 Thread Greg Morphis
notepad++ is pretty cool On 9/20/07, Chris Martin <[EMAIL PROTECTED]> wrote: > I've been using TextPad since 1998...haven't seen any reason to switch, > but am curious to see what everyone else is using for a text editor out > there. > > Chris Martin > > ~

Re: cf8 book by Ben Forta - release date?

2007-09-20 Thread Vince Collins
Just ordered it. Ships later than I had hoped but maybe it's an estimate and will ship sooner. *Shipping estimate for these items: * November 19, 2007 *Delivery estimate: * November 23, 2007 - November 27, 2007 Ben Forta wrote: > Apparently Amazon received a very small initial shipme

RE: CFEXECUTE and PSCP

2007-09-20 Thread Justin Scott
> Not an exact answer to your question, but have you > tried logging on interactively as the user CF runs > as? > > I think from my memory that the first time pscp runs > it sets up a key for your user profile. Assuming > that your machine is running some flavor of windows. Yes, we did do that.

RE: Forums?

2007-09-20 Thread Justin Scott
> FuseTalk has been pretty much the only commercial > PROFESSIONAL forums solution for coldfusion.. > forever. As long as I can remember, there's been > FuseTalk. Sounds to me like there's an opening for some competition... -Justin Scott | GravityFree Network Administrator 1960 Stickney Poin

Darn syntax

2007-09-20 Thread Robert Harrison
I've got the table driven system with all these profile reads. The profiles don't change often so I want to cache unless I'm testing. If I'm live I want my cache time at several days. So I set: OR Now on my profile query statement, inst

Text Editor Preferences?

2007-09-20 Thread Chris Martin
I've been using TextPad since 1998...haven't seen any reason to switch, but am curious to see what everyone else is using for a text editor out there. Chris Martin ~| Enterprise web applications, build robust, secure scalable

Re: CF makes an appearance on Daily WTF

2007-09-20 Thread Ben Doom
Worse Than Failure. They post examples of terrible code, useless/amusing errors, etc. --Ben Doom Bobby Hartsfield wrote: > Wtf is wtf > > ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. > Bobby Hartsfield > http://acoderslife.com ~| Co

RE: CF8: Why would I be getting an access error with this query?

2007-09-20 Thread Andy Matthews
I love EditPlus. It's the best editor I've ever used. -Original Message- From: Jayesh Viradiya [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 1:55 PM To: CF-Talk Subject: RE: CF8: Why would I be getting an access error with this query? Hi Rick, This definitely seems to be

RE: CF8: Why would I be getting an access error with this query?

2007-09-20 Thread Rick Faircloth
Thanks for the affirmation, Jayesh! Rick -Original Message- From: Jayesh Viradiya [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 2:55 PM To: CF-Talk Subject: RE: CF8: Why would I be getting an access error with this query? Hi Rick, This definitely seems to be a SandBox se

Re: Make coldfusion handles "page cannot be found"?

2007-09-20 Thread Scott Weikert
Johnny Le wrote: > Would you please tell me how I can fix it so that ColdFusion would handle the > error on the second server instead of the IIS? > CF Admin, main "Settings" area, "Missing Handler Template". ~| Get the answers

Re: Make coldfusion handles "page cannot be found"?

2007-09-20 Thread Johnny Le
Hi Rick and Scott, Thank you. That wasn't my question though. I just want to know why on one server, ColdFusion handles the error and on the other, IIS handles the error. Are there any configuration somewhere either in the IIS or CFadmin that dictates which one to handle the error? Thanks.

RE: Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Eric Roberts
Reactor? Eric -Original Message- From: Gaulin, Mark [mailto:[EMAIL PROTECTED] Sent: Thursday, September 20, 2007 1:29 PM To: CF-Talk Subject: Automated code generator for db add/edit/delete/report? Hi Anybody know of a code generator for "scaffolding" derived from a database table (or q

Re: Wildcard SSL cert

2007-09-20 Thread Ben Doom
No, he used to live in Kentucky. Also, he doesn't really pay attention to sports. Maybe, someday, he will learn to stop teasing people. --Ben Doom Matthew Williams wrote: > I think he meant that pansy blue color that NC state boasts ;). What he > really meant to say was "Go Penn State!". He

RE: CF8: Why would I be getting an access error with this query?

2007-09-20 Thread Jayesh Viradiya
Hi Rick, This definitely seems to be a SandBox security restriction for the Datasource access. Make sure that you have enough access for the required resources. Thanks Jayesh Viradiya Adobe CF Team -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, Septe

Re: Scrambling data...

2007-09-20 Thread Will Tomlinson
> Better living through chemistry. > > What do you mean bu "scramble" data? Resort two columns so that they > > dont' line up anymore? Correctomundo! I have a first name column and last name column. I want to mismatch them so they don't line up anymore. I'm thinkin I may just export the

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Rick Root
On 9/20/07, Vince Collins <[EMAIL PROTECTED]> wrote: > > If I add a new method in inventory.cfc called addInventory(), do I need > to worry about resetting/refreshing the query qryInventory which is Well, if you add a new method, you'll have to reinit the app, because once you've loaded the CFC in

Re: Wildcard SSL cert

2007-09-20 Thread Matthew Williams
My apologies, there's too many teams in this state to follow. I figure that since I'm finally close to a CFUG (closest in PA was near Philly), I should get to it some time. I wanted to make the one in July but ran out of time. Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog ~~

Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Claude Schneegans
>>Because robots typically read the form Sure, I was just joking ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~

Automated code generator for db add/edit/delete/report?

2007-09-20 Thread Gaulin, Mark
Hi Anybody know of a code generator for "scaffolding" derived from a database table (or query)? Ruby on rails has a cool feature like this and I was wondering if anyone attempted this with CF. We'd be happy with a code generator because we expect to have to hand-edit the code to make it do what w

Re: Make coldfusion handles "page cannot be found"?

2007-09-20 Thread Rick Root
Go into IIS to the web site in question, choose properties, go to the custom errors tab, find the 404 error. You can set it up there. Rick -- Rick Root Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at www.opensourcecf.com ~~

Re: Wildcard SSL cert

2007-09-20 Thread Rick Root
On 9/20/07, Matthew Williams <[EMAIL PROTECTED]> wrote: > I think he meant that pansy blue color that NC state boasts ;). What he > really meant to say was "Go Penn State!". Hey Rick, are you part of the CFUG > in RDU? It's Carolina that wears pansy blue, not NC State... NCSU is Red. Michigan

RE: CFEXECUTE and PSCP

2007-09-20 Thread Ryan, Terrence
Not an exact answer to your question, but have you tried logging on interactively as the user CF runs as? I think from my memory that the first time pscp runs it sets up a key for your user profile. Assuming that your machine is running some flavor of windows. Terrence Ryan I.T. Director Whart

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Vince Collins
It appears, since I am brand new to cfcs, that I didn't know enough yet to ask the right questions so here it goes. = APPLICATION.CFM == INVENTORY.CFM = == INVENTORY.CFC ==

Re: Forums?

2007-09-20 Thread Rick Root
On 9/20/07, Andy Chen <[EMAIL PROTECTED]> wrote: > > No one likes FuseTalk? Too bad they don't have the source code version > anymore. > > Yes, it's not free ... nor is it really cheap anymore. It's a nice product but yeah it's awfully expensive. FuseTalk has been pretty much the only commercial

CFEXECUTE and PSCP

2007-09-20 Thread Justin Scott
Good afternoon, we have an interesting problem that I'm hoping someone has encountered before. We're trying to push files from our ColdFusion server over to a secure FTP server elsewhere. We're using the PSCP command-line FTP client, and running it with CFEXECUTE. The ColdFusion service runs as

Re: Wildcard SSL cert

2007-09-20 Thread Matthew Williams
I think he meant that pansy blue color that NC state boasts ;). What he really meant to say was "Go Penn State!". Hey Rick, are you part of the CFUG in RDU? Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog ~| Get in

Re: Forums?

2007-09-20 Thread Andy Chen
>Can anyone make recommendations on a decent ColdFusion-based forum >application similar to phpBB or vBulletin. Free is preferred, but I >don't mind dropping some $$$ on a decent app. Thanks in advance! > > >-Justin Scott No one likes FuseTalk? Too bad they don't have the source code version any

Make coldfusion handles "page cannot be found"?

2007-09-20 Thread Johnny Le
Hi, We have two Windows 2003 servers running ColdFusion 7.01. On one server, when we access an invalid address such as http://mycompany.com/mysite/index.cfm, we get a coldfusion error "File not found: /mysite/index.cfm". On another server, when we access it, we get the default IIS error page

RE: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Dave Watts
> Ha ha, but where is the problem, since robots can't read > Javascript? ;-) Robots can certainly read (and execute) JavaScript, if they're specifically designed to do so. Most search engine crawlers don't execute JavaScript, but there are some that can, such as Texis' Webinator product. Dave Wa

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Brian Kotek
If addInventory() just inserts something into the database, and you aren't storing the entire query result set in the Inventory object as instance data, then you don't need to do anything else. This is all getting rather murky because you haven't actually stated what these components are doing. So

Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Rick Root
On 9/20/07, Claude Schneegans <[EMAIL PROTECTED]> wrote: > >>It's like implementing captcha, but validating the captcha key with > javascript > > Ha ha, but where is the problem, since robots can't read Javascript? ;-) That's exactly the problem. Because robots typically read the form, and then

Re: test

2007-09-20 Thread Michael Dinowitz
There are a number of things which can prevent a post from showing up. Non-plain text format, spam subjects, subjects that include a spam warning ([spam-score low], etc.) and plain mail server failures. I've even seen mail sent through Google not getting delivered and it was sent to Adobe. On the f

RE: Firefox 2.0.0.7 Spry issues?

2007-09-20 Thread Jonathon Stierman
Sorry about the generalization! I didn't mean to denounce the jQuery library -- It's been a godsend for my projects. Thanks for the link - I'll try that update! Jonathon -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 19, 2007 11:06 PM To: CF-Ta

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread Rick Root
On 9/20/07, Vince Collins <[EMAIL PROTECTED]> wrote: > So Rick, because it's scoped to application, if a user calls something > like application.inventory.addInventory() to add a new record, at the > end of the addInventory() method, I would just need to what? > > Do something like this? > > cfcs.

RE: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Robert Harrison
> WTF? ? Obviously you're not up to CF9 yet. Get with the program :-) Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either/or..

SQL Maintance plan

2007-09-20 Thread Bruce, Rodney S Mr CTR USA AMC
Hi, Posted in the SQL mailing list but haven't heard anything, so figured I would try here. Hope some one can help with exporting a maintance plan from a MS SQL 2005 database. The servers are isolated. I need to be able to get a file on a CD to move the plans from one serv

Windows Event Log

2007-09-20 Thread Joseph Swenson
We are working on a unified logging server which traps syslogs and reads windows event viewer via DCOM. The problem we are facing is that we want to have our Coldfusion applications inside of our log. The nitty gritty is this: How do we get Coldfusion to post events and logs to the Windows Eve

re: Model Glue and Apache 2.2

2007-09-20 Thread Eric Roberts
Ok...I think I got the previous issue solved...but now I am back to my original error... Could not find the ColdFusion Component or Interface appname.controller.Controller. Ensure that the name is correct and that the component or interface exists.The error occurred in *C:\Inetpub\wwwroot\

Re: test

2007-09-20 Thread Bruce Sorge
I have one that is still not showing from two days ago. Che Vilnonis wrote: > I have the same problem. Sometimes they are delayed up to 2 hours... > ~Che > > ~| Check out the new features and enhancements in the latest produc

Re: SOT: CF makes an appearance on Daily WTF

2007-09-20 Thread Claude Schneegans
>>It's like implementing captcha, but validating the captcha key with javascript Ha ha, but where is the problem, since robots can't read Javascript? ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please

  1   2   >