Re: CF Studio 5

2006-06-05 Thread Mark Drew
I use Cyberduck on OS X MD On 6 Jun 2006, at 05:42, dave wrote: > ok so Sean and Ray use transmit I know (on osx, which is what i use > as well) but what do the good folks on osx use? > > ~Dave the disruptor~ ~| Message: http

Re: CF Studio 5

2006-06-05 Thread Mark Drew
Just so you all know, we use a library for our FTP commands which is rather nice, but the passive is switched off I think (or on permanently, cant remember). One thing I might have to add is the FTP command list so that you can see why it isnt connecting, it has worked fine for me for the se

Re: CF Studio 5

2006-06-05 Thread Mark Drew
With regards to svn and trac, that is in the works if it is possible to get the source code from tigris. MD On 6 Jun 2006, at 02:36, dave wrote: > a guide would be nice > > ~Dave the disruptor~ > > > From: "Russ" <[EMAIL PROTECTED]> > Sent: Monday, June

Re: CF Studio 5

2006-06-05 Thread Mark Drew
We have a guide on checking out CFEclipse over at cfeclipse.org: http://cfeclipse.org/go/documentation/developer-docs/checking-out One thing to note is that the username is now "guest" and the password is blank (but you need to tick the "save password" tick-box otherwise it keeps prompting you

Re: CF Studio 5

2006-06-05 Thread Mark Drew
AS I mentioned, our site had a few *issues* and since then the update site has been a bit wonky. When I get some time this week I shall make another update site with the Nightly as well as the Release version of CFE so you wont have to go hunting for the nightly. MD On 6 Jun 2006, at 01:5

Re: CF Studio 5

2006-06-05 Thread Mark Drew
Actually, there is a little trick to convert your snippets, you import them into dreamweaver from HomeSite and then you can grab those snippets and chuck them straight into CFE. Yes, there are problems with FTP in CFEclipse, I am trying to fix them. Yes, there is a problem with the update sit

Re: CF Studio 5

2006-06-05 Thread Jochem van Dieten
Eric Roberts wrote: > FTP is a protocol set by W3C. IETF Jochem ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242535 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffus

RE: CF Studio 5

2006-06-05 Thread dave
ok so Sean and Ray use transmit I know (on osx, which is what i use as well) but what do the good folks on osx use? ~Dave the disruptor~ From: "Russ" <[EMAIL PROTECTED]> Sent: Tuesday, June 06, 2006 12:15 AM To: CF-Talk Subject: RE: CF Studio 5 Tourto

RE: CF Studio 5

2006-06-05 Thread Russ
TourtoiseSVN is awesome, but not nearly as awesome as the Subclipse plugin to Eclipse. It's just beyond awesome. And subversion server runs on windows and linux, and probably dozens of other platforms. It's free, Open Source and has a very active development group. I've been on their develope

Re: CF Studio 5

2006-06-05 Thread Denny Valliant
On 6/5/06, Eric Roberts <[EMAIL PROTECTED]> wrote: > FTP is a protocol set by W3C. Much like any other transfer protocol, you > can "transmit" it over a secure channel. Is there any difference in the > html for a page that uses http vs. https? It's all the same transfer > protocol, with an adde

Re: cfreport issues

2006-06-05 Thread Kay Smoljak
On 6/6/06, Graham Pearson <[EMAIL PROTECTED]> wrote: > When I try and view the report within the report browser I get the > Report compilation error message. I have been searching the net for a > solution on this for the past 3 days and have not found anything that > solves this issue I am having.

RE: CF Studio 5

2006-06-05 Thread Eric Roberts
I would say the difference in command availability is a ftp server configuration issue. Where commands are not available, that is prolly because the sysadmin shut those commands off. FTP is a protocol set by W3C. Much like any other transfer protocol, you can "transmit" it over a secure chann

Re: CF Studio 5

2006-06-05 Thread Denny Valliant
On 6/5/06, Rey Bango <[EMAIL PROTECTED]> wrote: > > And I wouldn't want you to be unhappy unless you actually wanted to be > unhappy in which case I would be happy for your unhappiness. That just tickles me pink. Thanks for the consideration Rey. Your logic is impeccable! > Seriously, by then,

Re: CF Studio 5

2006-06-05 Thread Denny Valliant
Here is how to check it out: http://cfeclipse.org/go/documentation/developer-docs/checking-out After that, you should research a little about developing plugins with eclipse. Basically, you edit the code you just checed out, and then try to run it in an eclipse application (via opening the plugin

Re: MS-SQL - how to call a SP using CFQUERY?

2006-06-05 Thread C. Hatton Humphrey
On 6/5/06, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: > Title says it all. Using MS SQL Server, how do you call a stored > procedure using the CFQUERY tag? Take your normal call from Query Analyzer and paste it into a CFQuery. EXEC your_procedure_name @Parmeter1 = #Parameter1Value#, @Parameter2

Re: CF Studio 5

2006-06-05 Thread Denny Valliant
On 6/5/06, Eric Roberts <[EMAIL PROTECTED]> wrote: > > Its still ftp over something. Just because you send ftp over ssl, ssh, > tls, > or anything else for that matter, it doesn't make the ftp part of it any I'd challenge that, if only because I was checking out the FTP bugs in the eclipse bugzi

Re: ways to "time" a file upload?

2006-06-05 Thread James Holmes
This is easier with a flash file upload control: http://www.asfusion.com/blog/entry/file-upload-with-coldfusion-flash-forms On 6/6/06, Denny Valliant <[EMAIL PROTECTED]> wrote: > On 6/5/06, Crow T. Robot <[EMAIL PROTECTED]> wrote: > > > > I like this idea. It's not perfect, but it should do what

MS-SQL - how to call a SP using CFQUERY?

2006-06-05 Thread Pete Ruckelshaus
Title says it all. Using MS SQL Server, how do you call a stored procedure using the CFQUERY tag? Thanks, Pete ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242524 Archives: http://www.houseoffusion.com/cf_lists/t

Re: ways to "time" a file upload?

2006-06-05 Thread Claude Schneegans
>>How about a hidden form field that gets populated with the current date/time on form submission? Then you could parse it and compare it to Now() on your action/upload page. Except that the field will contain the client side time, which can be completely different from the serve time. -- __

Re: ways to "time" a file upload?

2006-06-05 Thread Claude Schneegans
>>I've tried wrapping the tag with getTickCount(), but the number there is ridiculously small, so I'm assuming that it's only telling me how long it takes to process that tag, not the actual upload itself. I think you are assuming right, since when the template is executed, the file is complete

RE: CF Studio 5

2006-06-05 Thread Eric Roberts
Its still ftp over something. Just because you send ftp over ssl, ssh, tls, or anything else for that matter, it doesn't make the ftp part of it any different...just ftp being carried over a more secure transport...kind of like instead of shouting, you carry your voice over an fm carrier signal. S

Re: ISDEFINED for list member

2006-06-05 Thread Claude Schneegans
>>Personally, I *HATE* that. Personally I consider it as a bug, a kolossal BUG ! Among the dozens of languages I've learned and used, CF is the only one to ignore empty elements. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/custom

RE: CF Studio 5

2006-06-05 Thread dave
a guide would be nice ~Dave the disruptor~ From: "Russ" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 9:33 PM To: CF-Talk Subject: RE: CF Studio 5 So do I remember correctly that I've read somewhere that CFE is going to move to using SVN and trac? Ma

Re: CF Studio 5

2006-06-05 Thread dave
God I can only dream. Make it so #2! careful what u say in regards to #2, Will does things when u say #2 and it has nothing to do with star trek... ~Dave the disruptor~ From: Rey Bango <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 8:53 PM To: CF-Ta

Re: Storing Files: Oracle and CF

2006-06-05 Thread James Holmes
I do it all the time. Use cfqueryparam to insert a cf_sql_blob to a BLOB column directly. No PL/SQL necessary. The only requirement is the Oracle driver that comes with CF Enterprise (the thin client from Oracle doesn't do it afaik). On 6/6/06, Robert Nurse <[EMAIL PROTECTED]> wrote: > Hi All, > >

Re: CF Studio 5

2006-06-05 Thread dave
lol, i didnt get this name for nuthin! ~Dave the disruptor~ From: Rey Bango <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 8:53 PM To: CF-Talk Subject: Re: CF Studio 5 > and Denny, its good to know others put their feet in their mouth too! And deep t

RE: CF Studio 5

2006-06-05 Thread Russ
So do I remember correctly that I've read somewhere that CFE is going to move to using SVN and trac? Maybe somebody can create an easy guide on starting on developing CFE. I tried in the past but could not figure out how to make edits. Java is not that hard to pick up and I'm sure a decent per

Re: CF, Ajax and shared hosting.

2006-06-05 Thread James Holmes
And to top it off, some f$%#ing a^*hole keeps vandalising the CFAJAX wiki. Theoretically we should be able to rip suggest and other components from CFAJAX and put them to work with ajaxCFC, which I'm going to try for my next project. On 6/6/06, Rick Root <[EMAIL PROTECTED]> wrote: > You definatel

RE: CF Studio 5

2006-06-05 Thread Russ
I'm sorry, Eric, but there are many types of ftp. There is the plain old insecure ftp which will eventually get you in trouble. Then there's ftp over ssh (if you have a *nix server). There's also SFTP and FTPS, and I'm not really sure which one is which but basically there's ftp over ssl and ftp

Webservice authentication

2006-06-05 Thread Denny Valliant
I'm I understanding this right? If you authenticate to a webservice via passing username and password as params, you should probably do it over SSL or some such, becuase it would be in plain text over http, correct? I'm just starting to toy with the idea of webservices, esp. since Flex and laszl

RE: CF Studio 5

2006-06-05 Thread Eric Roberts
Yeah...that found it...thanks! Eric -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, 05 June 2006 18:25 To: CF-Talk Subject: Re: CF Studio 5 cfeclipse.tigris.org Thats the link to put into eclipse I do believe and Denny, its good to know others put their feet in t

Re: CF Studio 5

2006-06-05 Thread Rey Bango
> and Denny, its good to know others put their feet in their mouth too! And deep too! . ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242510 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscri

Re: CF Studio 5

2006-06-05 Thread Rey Bango
Hi Denny, > ...It's good to be happy, and that's what really matters. Damn straight! > And you like to let people know when you're not happy, Damn straight! > so PLEASE don't start using CFE. Still don't have a reason to. > You, a fellow user, being unhappy would make me unhappy. And I

RE: CF Studio 5

2006-06-05 Thread Eric Roberts
That's just what they have on the site...Mark...is there a different one? Eric -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, 05 June 2006 13:46 To: CF-Talk Subject: RE: CF Studio 5 That hasnt worked for me for awhile, was a diff one ~Dave the disruptor~ -

RE: CF Studio 5

2006-06-05 Thread Eric Roberts
Many places don't allow a copy for security reasons. Many of us are working with sensitive data, so having a copy of the DB is out of the question...think of the recent VA scandal and why having a copy of data can be a really bad idea. As far as FTP being plain text...well so is a cfm, htm, asp

Re: CF Studio 5

2006-06-05 Thread Rey Bango
I'll give you that one cause it was too easy. ;P Rey... dave wrote: > I just couldnt let that 1 slip by > > ~Dave the disruptor~ > > > From: Rick Root <[EMAIL PROTECTED]> > Sent: Monday, June 05, 2006 7:35 PM > To: CF-Talk > Subject: Re: CF Studio

Re: PayPal API/SOAP

2006-06-05 Thread Josh Nathanson
I'm impressed that PayPal is actively going forward with their api's. Authorize.net is a joke in that regard. They just rolled out their "new Merchant Interface" and it's basically just an html redesign, with very little or no improvement in their reporting functions, API's etc. For example I

Re: CF Studio 5

2006-06-05 Thread Adam Haskell
On 6/2/06, Steve Brownlee <[EMAIL PROTECTED]> wrote: > > >> 3. The right-click on a CFInclude and option "Edit included > template"... > Doesn't exist. This feature has existed in CFE for a while now (1.7 nightly builds IIRC). That being said its sort of buggy. It only works some of the time(yo

Re: PayPal API/SOAP

2006-06-05 Thread Denny Valliant
Sweet! Thanks for the info. I'd just set up a testing environ using the old way, which was more difficult, last week. (Finally fleshing out some stuff I'd never needed before.) Looks like I could switch to the SOAP method pretty easy, changing just one function (internally), so I may try that, t

Re: MySQL -> MS SQL

2006-06-05 Thread Denny Valliant
Thanks Rick, that's handy. I'll "burn" it into my memory real quick, as that's one I been "customizing" for whatever DB i'm using at the time, for ages. Funny thing is, I used it before, why did I stop? Ah. the null in the name! Dang it. etching on brainpan, :deN Woot for monday! I must've sent

Re: PayPal API/SOAP

2006-06-05 Thread Josh Nathanson
Denny, you don't need to deal with certs now, they implemented a "signature" which you get from your PayPal developer admin (when you create a paypal developer account) and you include that signature in the SOAP header. It's new as of March 2006 I think. Indeed, it looks like you can just post

Re: CF Studio 5

2006-06-05 Thread dave
I just couldnt let that 1 slip by ~Dave the disruptor~ From: Rick Root <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 7:35 PM To: CF-Talk Subject: Re: CF Studio 5 dave wrote: > cfstudio is to much to type tho, u know i hate typing > > Oh and btw.

Re: ISDEFINED for list member

2006-06-05 Thread Denny Valliant
How about rereplace(list,",","ยจ,","all") then listget whatver you want replacing the placeholder char? Or however that would work. Guess the regex has that cool factor. Yeah, if they ever change that "feature" so much would break tho. :-/ My only gripe with this solution is you better pick a ch

Re: CF Studio 5

2006-06-05 Thread Rick Root
dave wrote: > cfstudio is to much to type tho, u know i hate typing > > Oh and btw your name is Rey not Rye (unless ur feeling a lil toasted!!) It's funny for someone to correct your typing them misspell his own name. :) Rik

Re: MySQL -> MS SQL

2006-06-05 Thread Rick Root
Munson, Jacob wrote: >> You might also consider investigating the use of the ISNULL() function > > FYI, IsNull() is an MS proprietary function, while Coalesce() is ANSI > SQL standard. It does the same thing, but using coalesce makes your > code more portable. True, and I had never heard of "Coa

Re: CF Studio 5

2006-06-05 Thread dave
cfstudio is to much to type tho, u know i hate typing Oh and btw your name is Rey not Rye (unless ur feeling a lil toasted!!) ~Dave the disruptor~ From: Rey Bango <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 7:07 PM To: CF-Talk Subject: Re: CF

Re: PayPal API/SOAP

2006-06-05 Thread Denny Valliant
Wow, didn't even know you could do that. So you don't need the verisign.jar or the certs file then? You just post the SOAP request to the test-payflow server? Sounds more maintainable than having to have .jars and such. I'm not really up to speed on SOAP either, so apologies if it's obvious. :D

Re: CF Studio 5

2006-06-05 Thread dave
yup that kettle sure is black! ~Dave the disruptor~ From: Rey Bango <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 7:08 PM To: CF-Talk Subject: Re: CF Studio 5 > Maybe I am doing things wrong but I sure make a lot more money than most of > the guys d

Re: CF Studio 5

2006-06-05 Thread dave
cfeclipse.tigris.org Thats the link to put into eclipse I do believe and Denny, its good to know others put their feet in their mouth too! ~Dave the disruptor~ From: "Denny Valliant" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 7:18 PM To: CF-Talk Su

Re: CF, Ajax and shared hosting.

2006-06-05 Thread Rick Root
You definately DO NOT need mappings or anything for ajaxCFC. You can put "ajax.cfc" right in the same directory as your app. REGARDING CFAJAX... I'm gonna keep saying this until it's not true anymore: #1 - CFAJAX doesn't work well with Safari. #2 - there are nasty security issues with CFAJAX th

Re: ISDEFINED for list member

2006-06-05 Thread Rick Root
Dave Francis wrote: > But you still don't know if there is actually an item at position 6. > ie. 1,2,3,4,5,,7,8,9 Sure there is. According to Coldfusion, position 6 contains the value of "7" because it doesn't recognize empty positions. Personally, I *HATE* that. The item at positi

Re: CF Studio 5

2006-06-05 Thread Denny Valliant
On 6/5/06, Rey Bango <[EMAIL PROTECTED]> wrote: > > Hi Denny, > > I guess us commercial, non-power CF'ers with the wrong mindset will just > stick with other tools then. Hey Dave, Snake & Ferg, how does it feel to > be part of "commercial, non-power CF'ers, designers/coder wannabes with > the wrong

Re: CF Studio 5

2006-06-05 Thread Rey Bango
> Maybe I am doing things wrong but I sure make a lot more money than most of > the guys doing it "right", so I will call it my "hs" and be happy with it! Seems that we have a common theme. ;) Rey... ~| Message: http://www.hous

Re: CF Studio 5

2006-06-05 Thread Rey Bango
Its CFStudio! Get your editors straight! ;) Rye... dave wrote: > yeah well... > > things change > > except u and hs!! ;)~ > > ~Dave the disruptor~ > > > From: Rey Bango <[EMAIL PROTECTED]> > Sent: Monday, June 05, 2006 6:35 PM > To: CF-Tal

Re: CF Studio 5

2006-06-05 Thread dave
I only glanced at that article and I thought it said you had to install stuff on the server, when I get a break later I will read it :) It certainly interests me. Thanks Jochem ~Dave the disruptor~ From: Jochem van Dieten <[EMAIL PROTECTED]> Sent: Mo

Re: CF Studio 5

2006-06-05 Thread dave
yeah well... things change except u and hs!! ;)~ ~Dave the disruptor~ From: Rey Bango <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 6:35 PM To: CF-Talk Subject: Re: CF Studio 5 But it wasn't the point of the thread, hijacker! Rey... d

RE: CF, Ajax and shared hosting.

2006-06-05 Thread Munson, Jacob
> Re CFAjax, you don't have to hard code urls into the js now. > For some > reason in the examples he hardcodes the urls, but it is not necessary. > > I thought that because AjaxCFC uses cfcs you would need to > define a cf > mapping in administrator to point to your cfcs, is that not the cas

Re: Refresh a select list from child form

2006-06-05 Thread Richard Dillman
well what i did was select the vendor that i just input and add him to the client scope,, when they add a new vendor and click the close link force a refresh on the parrent page using javascript. in the parent form preselect the vendor from the client scope if it exists. prolly not the best way bu

Re: CF Studio 5

2006-06-05 Thread dave
yeah there is, its at http://www.cfeclipse.org/ haha!! ~Dave the disruptor~ From: Rey Bango <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 6:35 PM To: CF-Talk Subject: Re: CF Studio 5 Okay, so yeah, does anyone know if I there's an update for CFMX 7 t

Re: Hello in there?

2006-06-05 Thread Josh Nathanson
Ken, I had a five-hour space between around 7:30 am and 12:30 am PDT where no messages were coming through. I was fixin' to call up Mike D. if messages didn't start coming through soon. -- Josh - Original Message - From: "Mike Klostermeyer" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: M

Re: CF Studio 5

2006-06-05 Thread Jochem van Dieten
dave wrote: > I didnt actually go read that yet but how is it on a shared servers? It typically doesn't run on the server but somewhere on development / test / QA. Try it, the worst that can happen is that you like it :) Jochem ~~~

Re: session Variable : display pop-up once

2006-06-05 Thread Denny Valliant
I'm still getting up to speed on the current BP for locking, but that looks ok, basicaly. You could figure out that the session started in other ways tho maybe onSessionStart in application.cfc? And once you've done the structNew, you don't need to set it to a value, it will exist. Probably you

Re: PayPal API/SOAP

2006-06-05 Thread Josh Nathanson
Thanks Denny, I'm "rolling my own", not using .jar or a CFX. Just copying the SOAP headers/body and wrapping it with , then posting using cfhttp. So far so good, I got a success acknowledgement with one of the methods (SetExpressCheckout). I found a great example page here: http://paypaltec

Re: Hello in there?

2006-06-05 Thread Michael Dinowitz
Sorry. Server issues. I've been working on it. I would have had everything moved over to the new hardware last week but between a funeral, major holiday and the flu (currently), I've been a bit tied up. Everything's fixed now and the move to the new hardware will be happening soon. I'll also ha

Re: CF, Ajax and shared hosting.

2006-06-05 Thread Josh Nathanson
Re CFAjax, you don't have to hard code urls into the js now. For some reason in the examples he hardcodes the urls, but it is not necessary. I thought that because AjaxCFC uses cfcs you would need to define a cf mapping in administrator to point to your cfcs, is that not the case? -- Josh --

Re: Refresh a select list from child form

2006-06-05 Thread Jim Wright
On 6/5/06, Bruce Sorge <[EMAIL PROTECTED]> wrote: > Is there a way to refresh a select list from a child form that is spawned > from the page the select list is coming from? I have a list that if a vendor > is not there, the user will click a link that opens a new window so they can > add the vendo

Re: CF Studio 5

2006-06-05 Thread dave
Oh i always feel good!! haha Hey no matter what we say or what we do on here we are still together as a group and even through arguments and disagreements it's important to keep that going. Maybe I am doing things wrong but I sure make a lot more money than most of the guys doing it "right", so

Re: Hello in there?

2006-06-05 Thread Denny Valliant
Seems to be a constant stream coming in over here... didn't you just reply to one I sent not more than an hour or two ago? Or is this an old messg? :D On 6/5/06, Ken Ferguson <[EMAIL PROTECTED]> wrote: > > Did everyone get overly busy this AM and nobody's had anything to say for > the rest of th

Re: PayPal API/SOAP

2006-06-05 Thread Denny Valliant
Are you using the CFX tag, or the java based .jar? I wrote a wrapper for the .jar, don't know about that tag, I had troubles getting it going, back when I tried it a couple years ago. If I can help I'll try, but I don't think I'm doing SOAP or whatever - just using the verisign.var. :D On 6/5/06

Re: Supressing white space

2006-06-05 Thread Denny Valliant
There are also methods of getting the pageContext in the onRequestEnd and cleaning the whitespace out there. With all these tho, there can be unexpected consequences. I'd do the output=false and enablewhitespacemanagement stuff, if possible. :D On 6/5/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote

Re: PayPal API/SOAP

2006-06-05 Thread Josh Nathanson
Never mind, I figured out you use cfhttpparam type="xml" and no variable name is needed. -- Josh - Original Message - From: "Josh Nathanson" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, June 05, 2006 2:42 PM Subject: PayPal API/SOAP > Hello all, > > If anyone has experience worki

Re: CF Studio 5

2006-06-05 Thread Rey Bango
Okay, so yeah, does anyone know if I there's an update for CFMX 7 tags in HS/CF Studio 5? ;o) Rey... dave wrote: > whatever poser boy, i wasnt preaching osx and ur the one who's panties got > all ripped up because i "mentioned" that hs doesnt run on any other os. And > fyi, i get along with pe

Re: Supressing white space

2006-06-05 Thread Bryan Stevenson
.but is all the effort worth it?? That's the question I'd be askingpersonally I find that it is not (although every rule has it's exceptionsand 100K of blank lines etc, may be one of them). Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems

Re: CF Studio 5

2006-06-05 Thread Rey Bango
But it wasn't the point of the thread, hijacker! Rey... dave wrote: > " Adobe has made it clear that CFE is their supported platform of choice > for CF coders. And I was told by a Macromedia employee at CFUnited last > year that HS will not have any additional feature releases. They will > releas

RE: CF, Ajax and shared hosting.

2006-06-05 Thread Munson, Jacob
> Is one of the CF/Ajax solutions better/easier to use in a > shared hosting environment with limited access to CF > Administrator functionality? The short answer, no. The long answer is that AjaxCFC is more portable, and thus easier to code if you are working with a shared server (assuming you

RE: Hello in there?

2006-06-05 Thread Mike Klostermeyer
Yes, you are. Been fine all day for me. -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 1:59 PM To: CF-Talk Subject: Hello in there? Did everyone get overly busy this AM and nobody's had anything to say for the rest of the day, or did the HS v

RE: Hello in there?

2006-06-05 Thread Andy Matthews
I didn't start getting messages from CF-Talk until about 2 hours ago. -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 1:59 PM To: CF-Talk Subject: Hello in there? Did everyone get overly busy this AM and nobody's had anything to say for the r

RE: Supressing white space

2006-06-05 Thread Andy Matthews
Ben... That's awesome that you suggested cfsavecontent. I just did that and was astounded that it worked. I wrapped the whole page into cfsavecontent, then did some find and replaces and got rid of everything. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, Ju

RE: CF Studio 5

2006-06-05 Thread dave
" Adobe has made it clear that CFE is their supported platform of choice for CF coders. And I was told by a Macromedia employee at CFUnited last year that HS will not have any additional feature releases. They will release CF compatibility updates, as long as necessary, but don't hold your breath f

Re: CF Studio 5

2006-06-05 Thread Rey Bango
Hi Denny, I guess us commercial, non-power CF'ers with the wrong mindset will just stick with other tools then. Hey Dave, Snake & Ferg, how does it feel to be part of "commercial, non-power CF'ers, designers/coder wannabes with the wrong mindset" group? I'm feeling pretty damn good. Rey... ~

RE: CF Studio 5

2006-06-05 Thread dave
It doesnt seem to be real accurate though. For example last night i was working on a site and I wanted to wrap certain paragraphs with a border and I made the border, ftp'd it and good see it in dw or live just fine but in cfe it didnt change until after I closed cfe down and re-opened it. ~Dav

session Variable : display pop-up once

2006-06-05 Thread Paul Ihrig
i am trying to figure out how to use session variables to display a pop-up alert type message once per session. just not sure how to set it. i have the easy pop up stuff done. just not sure how to trigger it only once. sure this dosnt make any sense.

RE: CF Studio 5

2006-06-05 Thread dave
And this comes from captain poser, you should change your name to garter snake. ~Dave the disruptor~ From: "Snake" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 9:51 AM To: CF-Talk Subject: RE: CF Studio 5 Or Pussy OS's like OSX :-) -Original M

Re: Suppressing white space

2006-06-05 Thread Matt Williams
You would wrap the tag around the whole page, and then use around anything (including non-CF output) you want sent to the client. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242452 Archives: http://www.houseoffu

Re: Stored Procedure support in Doug Hughes Reactor

2006-06-05 Thread Nathan Strutz
David, Depending on what the stored proc does, there are a number of things you could do. Probably the best way to keep it in the reactor framework, is to find the generated gateway, record, or whatever, and add a method right there. For instance, if you have a stored procedure that creates an o

Re: CF, Ajax and shared hosting.

2006-06-05 Thread Rey Bango
From what I've read, you shouldn't have to set anything in the CF Admin for any of the Ajax libraries (Dojo, Prototype, Rico, et al) out there since you include them in your templates. I believe the same goes for AjaxCFC so you should be fine. Rey... Ian Skinner wrote: > Is one of the CF/Ajax

Re: Supressing white space

2006-06-05 Thread Matt Williams
You can also comment out white space in your code... #outputThis# It isn't super pretty (better with code coloring), but works. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242462 Archives: http://www.houseoffus

Re: Document Upload/Retrieval Security

2006-06-05 Thread Denny Valliant
On 6/5/06, Peter Legg <[EMAIL PROTECTED]> wrote: > > Russ, how do you do it and how many and what size documents do you > typically have? How long does it take to convert say 10 documents to one > pdf? Not sure if you're up to some java, but iText ships with CF, and it's a master of pdf stuff.

Re: session Variable : display pop-up once

2006-06-05 Thread Paul Ihrig
ok.. this is ruff.. is there a better way to do it? not set been set already ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242455 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: ways to "time" a file upload?

2006-06-05 Thread Denny Valliant
On 6/5/06, Crow T. Robot <[EMAIL PROTECTED]> wrote: > > I like this idea. It's not perfect, but it should do what I'm trying to > get it to. I think. It's what I use a couple of places. You'd be amazed how far an animated gif will get you. People really just like to feel they're still "connec

RE: CF Studio 5

2006-06-05 Thread dave
That hasnt worked for me for awhile, was a diff one ~Dave the disruptor~ From: "Eric Roberts" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 10:46 AM To: CF-Talk Subject: RE: CF Studio 5 It should be http://www.cfeclipse.org/update like it says on the

Re: CF Studio 5

2006-06-05 Thread dave
Actually some good points and its something that a lot of people don't learn and probably should be talked about it bit more. A lot of people learn cfm by picking up WACK and going through it but you don't learn much about these types of things from books like that. Kinda the same way as they d

RE: CF Studio 5

2006-06-05 Thread dave
sorry bout my comments to someone-in-perticular. my meaning was very mistaken and he wont move on. ~Dave the disruptor~ From: "Munson, Jacob" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 5:49 PM To: CF-Talk Subject: RE: CF Studio 5 > That said, I'm

Refresh a select list from child form

2006-06-05 Thread Bruce Sorge
Is there a way to refresh a select list from a child form that is spawned from the page the select list is coming from? I have a list that if a vendor is not there, the user will click a link that opens a new window so they can add the vendor. Then, when the click the submit button to add the vendo

Re: CF Studio 5

2006-06-05 Thread Rey Bango
Hi Denny, I guess us commercial, non-power CF'ers with the wrong mindset will just stick with other tools then. Hey Dave, Snake & Ferg, how does it feel to be part of "commercial, non-power CF'ers, designers/coder wannabes with the wrong mindset" group? I'm feeling pretty damn good. Rey... De

RE: Suppressing white space

2006-06-05 Thread Ian Skinner
So Ian... Right now, the entire HTML portion of the page is wrapped in a single cfoutput block. Are you saying that if I break up the cfoutput into multiple portions, and wrap the cfsetting around the spots that are creating the blank spaces then I might be in good shape? I'll give it a shot f

Re: CF Studio 5

2006-06-05 Thread dave
I think the one that works is at sourceforge, i cant find the link though. I'm sure Mark can give us the correct one. Yesterday I just downloaded the nightly build from Marks site and put it in the plugin folder ~Dave the disruptor~ From: Rey Bango <[EM

PayPal API/SOAP

2006-06-05 Thread Josh Nathanson
Hello all, If anyone has experience working with PayPal API maybe you can help. It involves generating a SOAP request as an XML object (not sure if I have that technically correct) which is posted to the Paypal server. However, I can't find anywhere how to post the XML object - is it a form va

RE: CF Studio 5

2006-06-05 Thread dave
i dont like u and u dont like me yet i am prety sure we will both live we can take this off list not on here ~Dave the disruptor~ From: "Snake" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 9:51 AM To: CF-Talk Subject: RE: CF Studio 5 Whatever

RE: CF Studio 5

2006-06-05 Thread dave
I didnt actually go read that yet but how is it on a shared servers? ~Dave the disruptor~ From: "Eric Roberts" <[EMAIL PROTECTED]> Sent: Monday, June 05, 2006 10:46 AM To: CF-Talk Subject: RE: CF Studio 5 Thanks for posting that...I was wondering what

  1   2   >