RE: Ajax

2005-03-17 Thread Micha Schopman
" Oh, so it's not a predesigned tool to do that... for some reason I thought the qForms API had one... I remember seeing an example on the site of "containers" -- which afaik is the same thing PLUM is calling "chooser controls". The ontap implementation is called a swapbox." If you swap telephone

Re: cfecipse: ctrl+i triggers

2005-03-17 Thread Rob
Yeah in the newer versions it's ctrl+shift+i (and it should stay that way). It changed because ctrl+i is the homesite keystroke for em (as you now know) and it was messing up quite a few converts it seems If you want to change it you can go to Window > Preferences > Keys (which is sounds like you

Re: cfecipse: ctrl+i triggers

2005-03-17 Thread Qasim Rasheed
I am using cfeclipse version 1.1.18.9, and it works fine at my end. On Thu, 17 Mar 2005 23:51:20 -0500, K0rneliuz Van Strauss XIV <[EMAIL PROTECTED]> wrote: > still not working for me.. > > On Thu, 17 Mar 2005 23:28:37 -0500, Qasim Rasheed > <[EMAIL PROTECTED]> wrote: > > I think with newer ver

Re: cfecipse: ctrl+i triggers

2005-03-17 Thread K0rneliuz Van Strauss XIV
still not working for me.. On Thu, 17 Mar 2005 23:28:37 -0500, Qasim Rasheed <[EMAIL PROTECTED]> wrote: > I think with newer version of cfeclipse, the snippet shortcut is ctl-shift-i > > On Thu, 17 Mar 2005 23:13:14 -0500, K0rneliuz Van Strauss XIV > <[EMAIL PROTECTED]> wrote: > > rather than tr

Re: cfecipse: ctrl+i triggers

2005-03-17 Thread Qasim Rasheed
I think with newer version of cfeclipse, the snippet shortcut is ctl-shift-i On Thu, 17 Mar 2005 23:13:14 -0500, K0rneliuz Van Strauss XIV <[EMAIL PROTECTED]> wrote: > rather than triggering a snippet... ctrl+i gives me rather > than the snippet, if i remove that keystroke from my shortcuts.. i

cfecipse: ctrl+i triggers

2005-03-17 Thread K0rneliuz Van Strauss XIV
rather than triggering a snippet... ctrl+i gives me rather than the snippet, if i remove that keystroke from my shortcuts.. i get a tab space instead of a snippet. -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ Triangle Area ColdFusion User Group ]-= -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://ta

Re: Ajax

2005-03-17 Thread Aaron Rouse
I am too lazy to go to his site right now, but I recall "containers" and "n-selects" being two completely different examples. The "containers" I think were essentially some built in functionality. I have always been a big fan of qForms and would have loved to see 2.0 come out but certainly do not

RE: Query problem

2005-03-17 Thread Mark Leder
That worked. Thanks Barney. Mark -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 10:26 PM To: CF-Talk Subject: Re: Query problem Whoops. Try this one. Meant 'group by' but typed 'order by'. Sorry about that. SELECT memberID, MAX(paid

Re: Query problem

2005-03-17 Thread Barney Boisvert
Whoops. Try this one. Meant 'group by' but typed 'order by'. Sorry about that. SELECT memberID, MAX(paidThru) AS paidThru FROM someTableName GROUP BY memberID cheers, barneyb On Thu, 17 Mar 2005 22:22:41 -0500, Mark Leder <[EMAIL PROTECTED]> wrote: > Tried it, here's the error: > > [Macromed

RE: Query problem

2005-03-17 Thread Mark Leder
Tried it, here's the error: [Macromedia][SQLServer JDBC Driver][SQLServer]Column 'someTableName.memberID' is invalid in the select list because it is not contained in an aggregate function and there is no GROUP BY clause. Mark -Original Message- From: Barney Boisvert [mailto:[EMAIL PROT

Re: Query problem

2005-03-17 Thread Barney Boisvert
this sounds like it should do it for you, but perhaps I'm missing something SELECT memberID, max(paidThru) AS paidThru FROM someTableName ORDER BY memberID cheers, barneyb On Thu, 17 Mar 2005 22:03:03 -0500, Mark Leder <[EMAIL PROTECTED]> wrote: > I have a table with two columns, memberID (integ

ANNOUNCE: CFUNITED interview 3 - CFML and .Net, Pre-Conf class voting; hotel room block ends 4/15/05

2005-03-17 Thread Michael Smith
In this issue of ColdFusion conference and training news: 1. CFUNITED News - win CFMX 7 and CFUNITED ticket at CFDJ code competition 2. Vote for pre-conference classes 3. Integrating CFML and ASP.NET Server Controls interview with Charlie Arehart Happy coding - Michael Smith, TeraTech, Inc http://

Query problem

2005-03-17 Thread Mark Leder
I have a table with two columns, memberID (integer) and paidThru (date). I'm using SQL 2000. Most rows have only one member ID associated with one paidThru date. Problem is, some of the records have one memberID which can be associated with two or more paidThru dates (the multiple dates per member

Re: Get Disk Space from CF?

2005-03-17 Thread Jim McAtee
Thanks everyone. Should have thought to look at cflib.org in the first place. - Original Message - From: "Jon Austin" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, March 17, 2005 6:26 PM Subject: Re: Get Disk Space from CF? > Hmmm, brain is firing on all neurons today. > > http:

Re: Get Disk Space from CF?

2005-03-17 Thread Jon Austin
Hmmm, brain is firing on all neurons today. http://cflib.org/udf.cfm?ID=105 On Fri, 18 Mar 2005 11:26:04 +1000, Jon Austin <[EMAIL PROTECTED]> wrote: > Here is a tidy little UDF for you. > > On Thu, 17 Mar 2005 18:05:25 -0700, Jim McAtee <[EMAIL PROTECTED]> wrote: > > Does anyone know how I can

Re: Get Disk Space from CF?

2005-03-17 Thread Jon Austin
Here is a tidy little UDF for you. On Thu, 17 Mar 2005 18:05:25 -0700, Jim McAtee <[EMAIL PROTECTED]> wrote: > Does anyone know how I can retrieve the amount of disk space remaining in > a disk volume on the server on which CF is running? > > CF5, IIS5, Windows 2000 Server Standard.

RE: Get Disk Space from CF?

2005-03-17 Thread Taco Fleur
You can use the Scripting.FileSystemObject to get this information. FSO = createObject( "COM", "Scripting.FileSystemObject" ); Drive = FSO.getDrive( FSO.getDriveName( "D" ) ); diskSpaceLeft = Drive.freeSpace() / 1024; There might be some errors there as I typed it in this email, but it will get

Re: Get Disk Space from CF?

2005-03-17 Thread Spike
This technote refers to CFMX, but the COM stuff you can do in CF 5. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18210 HTH Spike Jim McAtee wrote: > Does anyone know how I can retrieve the amount of disk space remaining in > a disk volume on the server on which CF is running

Get Disk Space from CF?

2005-03-17 Thread Jim McAtee
Does anyone know how I can retrieve the amount of disk space remaining in a disk volume on the server on which CF is running? CF5, IIS5, Windows 2000 Server Standard. ~| Logware (www.logware.us): a new and convenient web-based

RE: Moving to Lucene

2005-03-17 Thread James Holmes
Exactly - one of the things you give up with Lucene is the set of document parsers included with Verity - if you want to index a Word Doc or PDF file, you have to find your own text extraction parsers to feed the text to Lucene. -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTE

Re: Server recommendations

2005-03-17 Thread Yves Arsenault
Thanks to all who replied to my questions. The feedback is appreciated. Cheers, Yves On Wed, 16 Mar 2005 15:20:43 -0600, Eric Creese <[EMAIL PROTECTED]> wrote: > I take it that is a NO > > -Original Message- > From: Jacob [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 16, 2005 3:2

Re: Ajax

2005-03-17 Thread S . Isaac Dealey
> It has a n-selects example, would not really call it a > feature. The > example is something he put up a couple years back after > having helped > me via emails to make a n-selects solution. Oh, so it's not a predesigned tool to do that... for some reason I thought the qForms API had one... I r

Re: SQL licensing question

2005-03-17 Thread Jim McAtee
Another thing to consider: I don't know whether this applies to your situation at all, but if you resell services on the server, then you must use service provider licensing (SPLA). An example would be offering MS SQL to web hosting customers in a shared environment. Another would be operating

Re: [Fwd: upgrade 6.1 to 7]

2005-03-17 Thread Jared Rypka-Hauer - CMG, LLC
The process is basically this: Install CF7 beside 6.1 Launch CF7 administrator, which will migrate your settings from CF6.1 Uninstall CF6.1 CF7 will co-opt your webserver settings during the install... so CF6.1 will be running headlessly. When you're done installing MX7, it will launch the Admin,

Re: Quick, how much is CF

2005-03-17 Thread Jared Rypka-Hauer - CMG, LLC
That's exactly what I thought... I've changed my attitude... if I'm having to work that hard to convince a customer to use my services, it's probably a bad match and we should go separate ways. I AM a CF developer... if you don't want CF, I can help you find someone, but there's not much else I c

LDAP and Active Directory and getting the objectGUID

2005-03-17 Thread Charles Heizer
Hello, Does anyone have an example on how to translate the attribute objectGUID to a legible string? If I look at it in ADSI edit, it's in hex format, but if I use coldfusion is garbage. Thanks, - Charles ~| Discover CFTicket -

Re: spelling suggestion

2005-03-17 Thread Dave Francis
For a limited set, a moldy-oldie way is to search with wild-cards replacing vowels. - Original Message - From: "Umer Farooq" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, March 17, 2005 6:07 PM Subject: spelling suggestion > Hi, > > for a person like me.. who can't spell to save h

Re: Ajax

2005-03-17 Thread Aaron Rouse
It has a n-selects example, would not really call it a feature. The example is something he put up a couple years back after having helped me via emails to make a n-selects solution. On Thu, 17 Mar 2005 17:56:06 -0500, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > > Though didn't the qForms API

Re: spelling suggestion

2005-03-17 Thread Barney Boisvert
Probably use some kind of spelling engine (I like aspell) that will generate suggestions for misspellings. create a table that has two columns 'word' and 'suggestions' (normalize as you see fit). WHen you get a search term, check and see if it's in the table. If it is, just use the suggestions,

spelling suggestion

2005-03-17 Thread Umer Farooq
Hi, for a person like me.. who can't spell to save his life.. whats the best way to enhance a search to have it search by like terms.. what would you use.. to do this.. a dictionary to look up the right spelling.. or would you store common misspelling in a DB field.. etc.. Any thoughts on thi

RE: HELP cfx_payflowpro

2005-03-17 Thread Ken Ferguson
That's just the way it outputs it. I just fixed it though. The problem was that my classpath was to the Verisign.jar file, as the docs said it should be, but I finally found a post in the archives saying that post-6.0, that isn't necessary. I changed the classpath to the directory and it works pe

Re: Strange error kills sessions

2005-03-17 Thread James Edmunds
This sounds like a mapping issue. I had this happen at CT (oddly enough, it was between two of my own, totally unrelated sites which happened to be on the same server!!) and fixed it by simply re-entering the mapping for custom tags on each of the sites. Try re-entering the tags mapping for your s

RE: HELP cfx_payflowpro

2005-03-17 Thread Connie DeCinko
I see two different names here. Which do you call with in your code? CFX_CFXPayFlowPro or CFX_PAYFLOWPRO? -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 3:43 PM To: CF-Talk Subject: HELP cfx_payflowpro I am trying to roll over onto a CF 7

RE: SQL licensing question

2005-03-17 Thread Scott Mulholland
Thanks Dave, I'll pass that along. Ironically they were told the opposite by whoever answered the phone at MS ;) -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 5:55 PM To: CF-Talk Subject: RE: SQL licensing question > What is the general pra

RE: SQL licensing question

2005-03-17 Thread Connie DeCinko
Depends upon who will be using the application. Microsoft told us that the license is different for say an intranet application vs. an Internet application. For an internal app, you would use CALs. -Original Message- From: Scott Mulholland [mailto:[EMAIL PROTECTED] Sent: Thursday, Mar

Re: Ajax

2005-03-17 Thread S . Isaac Dealey
> Isaac, > Actually I have used Dan's client server JSAPI for > quite some time. I've found it much more stable and > easier to implement than alternatives like the two > selects related tag. I know he was planning a > version 2.0 of QForms and I believe the JSAPI, but > so far it hasn't been rel

RE: SQL licensing question

2005-03-17 Thread Dave Watts
> What is the general practice in terms of licensing SQL server > for use in a web app? Per-processor licensing. > Is it the standard or the only option to go with the processor > license, or can you use an existing "X" client seat license and > CF is considered 1 seat or user of the "X' ava

HELP cfx_payflowpro

2005-03-17 Thread Ken Ferguson
I am trying to roll over onto a CF 7 box, as Win 2003 just completely died on my prod machine. Anyhow, I CANNOT seem to get the CFX_PAYFLOWPRO tag to work on this site. I access the test page and I get this error: Error processing CFX custom tag "CFX_CFXPayFlowPro". The CFX custom tag "CFX_CFXPay

Re: Hosting for SEMI dedicated

2005-03-17 Thread Nick Baker
Mike, I think I know you mean. Shared, but with some reasonable load limit. I am using Intermedia.net and have for years. They a more expensive, but have great reliability. I also had very good service with CrystalTech. Would still be with CrystalTech except their event scheduling granularity i

OT: SQL licensing question

2005-03-17 Thread Scott Mulholland
I was asked this question today by someone who received conflicting answers on this and not knowing the answer I figured someone on here probably would: What is the general practice in terms of licensing SQL server for use in a web app? Is it the standard or the only option to go with the proc

Re: Ajax

2005-03-17 Thread Rick Mason
Isaac, Actually I have used Dan's client server JSAPI for quite some time. I've found it much more stable and easier to implement than alternatives like the two selects related tag. I know he was planning a version 2.0 of QForms and I believe the JSAPI, but so far it hasn't been released. Our w

RE: Reg Expression Help

2005-03-17 Thread Brook Davies
Opps, I found one small problem. If I change the tempString so that the first string inside the single quotes also has the match were looking for it does not get replaced: The string "==" characters in the substring 'OPTION A == FULL CONFERENCE PACKAGE' does not get replaced. What needs to c

RE: Reg Expression Help

2005-03-17 Thread Brook Davies
OMG, I can't believe you just did that and made it look so simple. Thank you, thank you, thank you!! Brook At 02:20 PM 3/17/2005, you wrote: >How's aboot > > > > > #tempString# > #REReplace(tempString, "'(.*)?==(.*)?'", "'\1=\2'", > "ALL")# > > >Ade > >-Original Message-

Re: Ajax

2005-03-17 Thread Rick Mason
Rob, Thanks, it is much appreciated. Rick Mason ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware toda

RE: Reg Expression Help

2005-03-17 Thread Adrian Lynch
How's aboot #tempString# #REReplace(tempString, "'(.*)?==(.*)?'", "'\1=\2'", "ALL")# Ade -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED] Sent: 17 March 2005 22:08 To: CF-Talk Subject: Reg Expression Help Okay, Regex is not my strong suite and this on

Re: Best Practice

2005-03-17 Thread Claude Schneegans
>>What would be the best practice to use for the web app. If you convert the application to a Web application, then the database is on the server, and there is no need to download a local version. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox

Reg Expression Help

2005-03-17 Thread Brook Davies
Okay, Regex is not my strong suite and this one has been eluding me all morning. I'm trying to replace any occurrences of "==" inside a string enclosed with single quotes. So my test string is: And I want to replace the "==" at the end of this string inside the single quotes with "=" but I do

Re: Screen resolution custom tag?

2005-03-17 Thread Claude Schneegans
>>Personally I find using an image the most reliable for the task at hand I totally agree, and which page doesn't need an image anyway?, So there is actually NO overhead at all, except for the extra characters for the screen resolution, which is not even worth to talk about. Brilliant idea ind

RE: Quick, how much is CF

2005-03-17 Thread Nick Call
Many of the credit card clearing houses will not allow you to store card numbers anymore, neither electronically nor on paper. Every one of my restaurant clients got hit with this rule in 2003/2004 by their card processors. We had to update their POS systems and go through every one of their back-o

Re: I Hate Macromedia

2005-03-17 Thread Rey Bango
Oh for the love of God, can you guys please take this rant to CF-Community as it has absolutely NO TECHNICAL merit. Rey... ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.hou

RE: Hosting for SEMI dedicated

2005-03-17 Thread Andy Ousterhout
What is SEMI dedicated? Is this like almost pregnant? -Original Message- From: Mickael Hi All, I know that hosting has been discussed many times on this list. But I would still like to know who the stars are. I am presently hosting with Hostmysite.com and crystaltech.com but as of l

Re: Quick, how much is CF

2005-03-17 Thread Joe Rinehart
On Thu, 17 Mar 2005 16:17:08 -0500, Calvin Ward <[EMAIL PROTECTED]> wrote: > Quote him on the completed project and throw in the CF server for 'free'. > > Conversely, at least currently, I don't find clients that can't/won't fork > out 1,200 for a CF server to usually be all that fun or profitable

What happened to FusionScript?

2005-03-17 Thread Rey Bango
Went to the site fusionscript.com and it looks like it got taken over by one of those search pages. Did the project die out? Rey/// ~| Find out how CFTicket can increase your company's customer support efficiency by 100% htt

Re: cflogin tag and the browser back button

2005-03-17 Thread Rebecca Wells
I have tried all that and still have the same problem. In the Application.cfm file: In the logout.cfm file: And in the act_login.cfm page:

RE: Quick, how much is CF

2005-03-17 Thread Dave Watts
> Could be free if it's going to be a single user app, by using > the developer edition. This would violate the license. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington

RE: Quick, how much is CF

2005-03-17 Thread Connie DeCinko
Could be free if it's going to be a single user app, by using the developer edition. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 12:57 PM To: CF-Talk Subject: Quick, how much is CF Ok, I know I could go find this on MM, but I don't h

RE: Quick, how much is CF

2005-03-17 Thread Connie DeCinko
Gotta wonder what this guy is up to wanting to store CC numbers. Who in their right mind opens them selves up to the potential nightmare if that thing gets hacked. ~| Logware (www.logware.us): a new and convenient web-based ti

RE: Hosting for SEMI dedicated

2005-03-17 Thread Connie DeCinko
That don't sound right. Ask them to move your site(s) to another server. You should never see an overloaded server at CrystalTech unless there's a bad site on the server. -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 2:20 PM To: CF-Talk Subje

Strange error kills sessions

2005-03-17 Thread Shawna Hampton
I'm experiencing a very weird error on my CFMX 6.1 site (shared hosting at CrystalTech). I didn't follow the recent thread on CT's issues with sessions -- this could be related. I receive e-mail notifications whenever someone experiences an error on our site that tells me the time, the error, a

RE: Hosting for SEMI dedicated

2005-03-17 Thread Michael Dinowitz
I'm sure they'll have some 6.1 machines running as well. Give them a call and ask. Tell them you heard about it here. :) > Will they be able to stay on 6.1 for a while. There seems to be an issue > with FB4 Code running CFMX7 that I would rather not get in to right now > until the proper fixes ge

RE: Hosting for SEMI dedicated

2005-03-17 Thread Michael T. Tangorre
> From: Mickael [mailto:[EMAIL PROTECTED] > Will they be able to stay on 6.1 for a while. There seems to > be an issue with FB4 Code running CFMX7 that I would rather > not get in to right now until the proper fixes get resolved. It's not a problem with CFMX7 and FB4 since some people (myself

Re: Hosting for SEMI dedicated

2005-03-17 Thread Mickael
Will they be able to stay on 6.1 for a while. There seems to be an issue with FB4 Code running CFMX7 that I would rather not get in to right now until the proper fixes get resolved. Mike - Original Message - From: "Michael Dinowitz" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Thursday, March

Re: I Hate Macromedia

2005-03-17 Thread Peter Farrell
< RANT mode="ON"> I hate to be the bad one and support Macromedia, but they have a business model they want to protect and valuable one for all of their livelyhoods. When you buy the software - you are buying a LICENSE that allows you to use it. Licenses are crazy, but if you want to use that

Re: Screen resolution custom tag?

2005-03-17 Thread Jim Davis
>>>also instread of using XMLHttpRequest a hidden iframe will generally > >work just as well > >Exact, except that an IFRAME is also an HTTP request. As is XMLHttpRequest. All the solutions mentioned so far (xmlHTTPRequest, iFrame and an image) are all HTTP requests. They all have the overhead

Re: Ajax

2005-03-17 Thread Rob
> I think what you're doing would be defined as Ajax - the term is > fairly new. Definitely interested in the offer of demos. Yeah I guess, but I've been doing it since before the term existed so it seems odd calling it that. Actually what neruomancer is is an abstraction layer above ajax so you

RE: Hosting for SEMI dedicated

2005-03-17 Thread Michael Dinowitz
AHP has some VPS server deals for CF-Talk readers: http://www.fusionauthority.com/Article.cfm/ArticleID:4381 They actually provide the bandwidth for House of Fusion/Fusion Authority and some of my new stuff is going up on one of their VPS servers. > Hi All, > > I know that hosting has been discus

Hosting for SEMI dedicated

2005-03-17 Thread Mickael
Hi All, I know that hosting has been discussed many times on this list. But I would still like to know who the stars are. I am presently hosting with Hostmysite.com and crystaltech.com but as of late their machines are getting overloaded. I am looking for semi dedicated hosting for CF 6.1 an

Re: Quick, how much is CF

2005-03-17 Thread Bryan Stevenson
> And how is he going to store the credit card numbers? I would say Oracle > would be the best for this... Card processing companies store it for you...it's called "recurring billing" ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 25

RE: Quick, how much is CF

2005-03-17 Thread Calvin Ward
Quote him on the completed project and throw in the CF server for 'free'. Conversely, at least currently, I don't find clients that can't/won't fork out 1,200 for a CF server to usually be all that fun or profitable to work with. - Calvin -Original Message- From: Will Tomlinson [mailto:[

Re: Quick, how much is CF

2005-03-17 Thread Aaron Rouse
PGSQL because it is free :) On Thu, 17 Mar 2005 13:06:31 -0800, Jacob <[EMAIL PROTECTED]> wrote: > And how is he going to store the credit card numbers? I would say Oracle > would be the best for this... > > -Original Message- > From: Matthew Small [mailto:[EMAIL PROTECTED] > Sent: Thu

Re: Ajax

2005-03-17 Thread Sean Corfield
On Thu, 17 Mar 2005 15:16:42 -0500, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > -- to a point... But to demand that all things must be accessible to > all people regardless of handicap is just going to put handcuffs on Go tell that to the government... > Not that > I'm really terribly read up o

RE: Quick, how much is CF

2005-03-17 Thread Paul
Hopefully for credit card numbers the guy will be using SSL, in which case BD free won't do the job. Will, $1300 for a simple task like that isn't a good purchase. I doubt you can be persuasive enough! -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, Ma

RE: Quick, how much is CF

2005-03-17 Thread Jacob
And how is he going to store the credit card numbers? I would say Oracle would be the best for this... -Original Message- From: Matthew Small [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 1:03 PM To: CF-Talk Subject: RE: Quick, how much is CF Uh, free. BlueDragon. Why did

RE: Quick, how much is CF

2005-03-17 Thread Matthew Small
Uh, free. BlueDragon. Why didn't you just write it in ASP or .Net or Java or BD if he wanted a free server? It sounds like you lost a client because you were unwilling to provide what the client wanted. And anyway, if it's such a simple app, 1/2 of 2 hours is 1 hour. - Matt Small -Orig

Re: CFSILENT with CFAPPLICATION

2005-03-17 Thread Robyn
Great suggestions, guys. Thanks! Jochem van Dieten wrote: > Brian Kotek wrote: > >>Just a note that you can also always put just >>before you output your HTML content, and that will discard everything >>in the output buffer and start from scratch. This is an easy way to >>eliminate any whitespa

Re: Quick, how much is CF

2005-03-17 Thread Spike
Looks like 1,299 USD for the standard edition. Spike Will Tomlinson wrote: > Ok, I know I could go find this on MM, but I don't have time to dig around > their site right now. > > I have a prospective client that wants an app to collect CC#'s. That's IT! > But he wants it on his own IIS serve

Re: Quick, how much is CF

2005-03-17 Thread Bryan Stevenson
BlueDragon free version ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com54 ~~

Re: CFMX 7, CFForms, and Javascript

2005-03-17 Thread Don Neizer
The particular block where the code in question can be found (line 126) is commented as; code ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffus

Quick, how much is CF

2005-03-17 Thread Will Tomlinson
Ok, I know I could go find this on MM, but I don't have time to dig around their site right now. I have a prospective client that wants an app to collect CC#'s. That's IT! But he wants it on his own IIS server. When we talked bout the prospects of installing cf and it was gonna COST something,

RE: Moving to Lucene

2005-03-17 Thread Calvin Ward
Keep in mind that the BlueDragon implementation only supports English (no Language attribute), and can only search HTML and text based documents. Ref: http://www.newatlanta.com/products/bluedragon/self_help/docs/6_1/BlueDragon_ 61_CFML_Compatibility_Guide.pdf - Calvin -Original Message-

CFMX 7, CFForms, and Javascript

2005-03-17 Thread Don Neizer
We have a beginning CFForm application where a dropdown list passes data over to another dropdown list. Values passed to the second list can also be removed. We've tried using javascript code from another project, however, CFMX7 returns "Errors, warnings or exceptions were found when compiling

Re: Enable Verity

2005-03-17 Thread Steven Erat
Robertson-Ravo, Neil (RX) wrote: > When I access the Verity Section in CFIDE on my CFMX 6.1 install I get the > following message : > > "You must configure your application server to enable Verity. For > instructions, see "Installing and Using ColdFusion MX." > > Anyonre remember how to do this

RE: Ajax

2005-03-17 Thread Dave Watts
> The onTap framework has some tools that accomplish the same > ends, I just don't see the need for XmlHTTPRequest as a > transport medium. Part of the reason I wasn't too hip to use > Dan Switzer's API in spite of it being a pretty small > library... I'd think you'd only need or want to use XM

RE: cflogin tag and the browser back button

2005-03-17 Thread Dawson, Michael
Once they have logged out, redirect them to the sign-in page using CFLOCATION or a javascipt redirect. That will clear the form submission. Then, on each page request, you need to instruct the browser not to use the cached copies of the pages. I just posted some non-caching code this morning, b

RE: Ajax

2005-03-17 Thread Dave Watts
> The sort of reason that I think things like section 508 while > laudable are at least attempting to go way too far... So yes, > it's good for handicapped people to be able to do the same > things as the rest of us > -- to a point... But to demand that all things must be > accessible to all pe

Re: Ajax

2005-03-17 Thread S . Isaac Dealey
I forgot to mention FusionScript -- although I have no idea where that project's going -- or gone as the case may be... I'm under the impression that making the later versions commercial pretty much killed its advancement -- at least I remember hearing someone tell me the author gave a presentation

Enable Verity

2005-03-17 Thread Robertson-Ravo, Neil (RX)
When I access the Verity Section in CFIDE on my CFMX 6.1 install I get the following message : "You must configure your application server to enable Verity. For instructions, see "Installing and Using ColdFusion MX." Anyonre remember how to do this? I can't remember for the life of me. N Th

RE: I Hate Macromedia

2005-03-17 Thread Jerry Johnson
I also have absolutely no legal training. That's why the sig says "Web developer" and not "Esquire". =) But my understanding (and feel free to correct me, I'm used to it) is that if you refuse to let them in, they will pull the licenses for the software you have. (As in if you don't cooperate,

Re: Ajax

2005-03-17 Thread S . Isaac Dealey
> The earlier posted screenshot of the application I am > working on involves a content management application. This > is a type of Ajax application not reaching 508 compliance. > I don't see how a visual handicapped person could use this > type of application even when I provided them with a text

Re: Ajax

2005-03-17 Thread S . Isaac Dealey
>> It's worth pointing out that similar DHTML interfaces >> have been around for >> many, many years. We've been building interfaces like >> this before the term >> DHTML existed, using hidden frames in Netscape 3.0. Being >> able to use >> XmlHTTPRequest is just icing on the cake, really. > Total

Re: Ajax

2005-03-17 Thread Rick Mason
Rob, I think what you're doing would be defined as Ajax - the term is fairly new. Definitely interested in the offer of demos. Also the link posted was to the docs, was there a link to the code on that site that I missed? Rick Mason On Thu, 17 Mar 2005 07:51:44 -0800, Rob <[EMAIL PROTECTED]

RE: I Hate Macromedia

2005-03-17 Thread Ken Ferguson
"The BSA has no independent law enforcement authority of any kind. Its rights are derived from a power of attorney provided by its member software companies. Those companies have rights created by their software license agreements and under the laws protecting copyrights." (from Scott & Scott, LL

cflogin tag and the browser back button

2005-03-17 Thread Rebecca Wells
How do you get form data out of the browser's memory so that after a user logs into a secure website, then logs out, if you click the back button on the browser, a dialog box pops up warning : "The page you are trying to view contains POSTDATA that has expired from cache. If you resend the data,

Re: CFEclipse & VSS

2005-03-17 Thread Paul Kenney
But when will it come out? On Thu, 17 Mar 2005 19:36:06 -, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]> wrote: > Shadowing is your friend. Also the next version of VSS will be far improved > with regards to Web Development. > > -Original Message- > From: jonese > To: CF-Talk > Sent

RE: CFEclipse & VSS

2005-03-17 Thread Robertson-Ravo, Neil (RX)
Shadowing is your friend. Also the next version of VSS will be far improved with regards to Web Development. -Original Message- From: jonese To: CF-Talk Sent: 17/03/2005 16:21 Subject: SOT: CFEclipse & VSS Just a quick question and if possible a point to tell how to do this. I hav

Re: I Hate Macromedia

2005-03-17 Thread Charlie Griefer
if you spent weeks, months, or years working non-stop on an application with the expectation of getting a (financial) return on that investment, and found that your killer app was being freely passed around...I think you might feel a little bit differently about calling the person who brings it to

Re: I Hate Macromedia

2005-03-17 Thread Rob
On Thu, 17 Mar 2005 12:13:00 -0600, Lee <[EMAIL PROTECTED]> wrote: > LOL that's really good tell everyone that you are a > software rat. I don't think there is anyone on this list > that can honestly say that they have been 100% legal 100% > of the time. For one thing it's like a full time job > de

RE: Ajax

2005-03-17 Thread Dave Watts
> Forgive me if I'm missing something here but isn't this a bit > of a step backwards? > > Correct me if I'm wrong but the whole Flash based RIA thing > was supposed to address the difficulty with producing the > kind of applications you can produce with AJAX - as Micha > pointed out - these k

RE: Ajax tutorials

2005-03-17 Thread Micha Schopman
And that xmlHttpRequest gives you much and much more power and functionality than hidden iframes do. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours s

Re: upgrade 6.1 to 7]

2005-03-17 Thread Bryan Stevenson
Here's a tip for ya Doug ;-) If you want to ditch 6.1, but you want CF 7 to transfer settings for you...install side by side...but make sure your webroot IS NOT THE SAME AS THE CF 6 webroot. I made this mistake...thinking that if they run side-by-sdie then I should be able to uninstall one wit

  1   2   3   >