RE: Best practice question?

2005-03-28 Thread Calvin Ward
Jared is correct, Scoping improves performance and avoids ambiguity (ref CFMX study guide), and this makes sense. If you aren't going to scope, then you are decreasing performance and increasing ambiguity. So the best practice is to scope. In an application, based on the needs, you may

New Hotfixes - Apply if you have IIS Issues

2005-03-28 Thread Robertson-Ravo, Neil (RX)
All, Apologies if you all know of these but At last (and after months of denying via support that something was wrong *) - two Hotfixes were recently released which fix a whole host of issues with CFMX and IIS (plus other unrelated to IIS problems). ColdFusion MX 6.1 Updater: Hot Fix to upgrade

Re: CFC or UDF

2005-03-28 Thread Adam Haskell
The answers thus far are great. Generally they way I look at it is this. CFCs are stateful, meaning they can hold data and persist over time, udfs are just a place to put commonly used code. For instance if you have a bunch of time calculation functions could just put them in a time_finctions.cfm

Re: CFC or UDF

2005-03-28 Thread David Brown
Jim and others thank you for your responses. I am a bit wet behind the ears here for sure. Do I need to set the object to nothing to kill it? Here are the small number I have so foar (LDAP.cfc) In it I have a method for querying based on CN, a method for modify add and one for modify replace.

Re: CFC or UDF

2005-03-28 Thread David Brown
One other question: I know the web does not have state. By CFCs are statefull; Do you mean that in our shopping cart example I have a authentication.cfc once a user is authenticated by the cfc that it knows about the user through their purchase? Or do I have to create the cfc in session scope

RE: CFC or UDF

2005-03-28 Thread Dave Watts
I know the web does not have state. By CFCs are statefull; Do you mean that in our shopping cart example I have a authentication.cfc once a user is authenticated by the cfc that it knows about the user through their purchase? Or do I have to create the cfc in session scope and then that

Help With RegEXp.

2005-03-28 Thread David Manriquez
i need to remove some tags from HTML like inputs , images, selects ans scripts i test the RegExp in Visual REgEXP 3.0 and works .. but not in Coldfusion. Any tip?.. How i can test RegExp for Coldfusion? Mi code : cfset myHTML = rereplace(myHTML,img .*?,,ALL) cfset myHTML = rereplace(myHTML

adminapi and j2ee packaging

2005-03-28 Thread Cliff Meyers
(I posted this on the MM forums too... very curious if anyone has an answer) I want to access the Packaging Deployment area of the CF Administrator programatically so that we can automate the building of CFapps into .war files. I noticed that this isn't available via any of the CFCs listed in

Shared hosting -- please forward

2005-03-28 Thread Adam Churvis
If any of you know of any good ColdFusion shared hosting providers, would you please do me a favor and forward this message to their sales department? We have some new business for them. Thanks! :) - We need to publish a list of hosting providers that allow the following

Re: Best practice question?

2005-03-28 Thread Johnny Le
I just tried ArraySum(queryname[fieldname]) and it works, but when I tried to get the array queryname[fieldname], all I got is the value of the first row. I use cfdump var=#queryname[fieldname]#. I used cfset something = queryname[fieldname]/. None of them comes out as an array. Johnny

Requested resource 'null'???

2005-03-28 Thread Alisa Thomson
We just upgraded our CF5 server to CFMX over the weekend and in the cfserver.log, I see the following error a few times each minute: 03/28 10:52:02 error Requested resource 'null' (null) not found This did not occur in any of our development or test environments. We are running CFMX 6.1

New CFFORM website

2005-03-28 Thread Jeff Small
Just got this off Tim Buntel's blog: In case you haven't heard, cfform.com has officially launched! This is a site that Mike Nimer, the principal engineer on the CFFORM features for CFMX 7, has put together for sharing skins and other extensions for both Flash and XML forms. Think cflib.org

Re: Help With RegEXp.

2005-03-28 Thread Claude Schneegans
How i can test RegExp for Coldfusion? Try the REWizard at the address below. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

Re: Help With RegEXp.

2005-03-28 Thread Ben Doom
cfset myHTML = rereplace(myHTML ,InvalidTag*?.+/script,,ALL) You're missing a dot in this one, after the invalidtag bit. Also, try using rereplacenocase() and see if that picks up better. Also, what version of CF? --Ben ~|

Re: Help With RegEXp.

2005-03-28 Thread Adam Haskell
try chaging rereplace to rereplaceNOCASE see if that fixes it. Adam H On Mon, 28 Mar 2005 11:26:33 -0500, Ben Doom [EMAIL PROTECTED] wrote: cfset myHTML = rereplace(myHTML ,InvalidTag*?.+/script,,ALL) You're missing a dot in this one, after the invalidtag bit. Also, try using

RE: Best practice question?

2005-03-28 Thread Jim Davis
-Original Message- From: Johnny Le [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 10:07 AM To: CF-Talk Subject: Re: Best practice question? I just tried ArraySum(queryname[fieldname]) and it works, but when I tried to get the array queryname[fieldname], all I got is the

Re: CFUnited - Where's Macromedia?

2005-03-28 Thread David Epler
It is great that Macromedia is allowing several of its employees to speak at CFUnited and they have been doing that for several years now. That does add value to the conference, but is not the same as being a sponsor. With 3 months to go, one would have thought they would have been a sponsor

Re: Best practice question?

2005-03-28 Thread Johnny Le
Thanks, Jim. This helps a lot. Johnny -Original Message- It's definitely at least a little flakey (which is why I stressed testing this stuff out first). It seems to only be an array on a direct access, not an assignment. So the following all work fine: +)

Apply CSS to CFChart

2005-03-28 Thread Connie DeCinko
I see that you can apply CSS to Flash Forms in a ColdFusion page. What about applying CSS to CFChart objects? I don't see any documentation for that and as such must specify the font and font size, etc. for each chart on the page. Constanty Connie DeCinko III Web Architect, Webmaster, Web

REPOST: Determine session timeout setting in CF5 on Linux

2005-03-28 Thread Scott Brady
We have an application that runs on a Linux box (a box we almost never use, except one client refuses to be on a Windows machine) and is running CF5. The application is timing out after 20 minutes, when it's supposed to be an hour. When we first got told about this issue, we realized the admin

Empty list for an IN clause

2005-03-28 Thread Ian Skinner
What is the simplest way to handle the possibility of an empty list for an IN clause. For Example: RDT_MOBLID IN (cfqueryparam value=#valueList(Safetrace.R_MDL_MOBLID)# list=yes cfsqltype=cf_sql_varchar) -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA

RE: Empty list for an IN clause

2005-03-28 Thread Ian Skinner
Ok, this seems to be working. RDT_MOBLID IN (cfqueryparam value=#listAppend(valueList(Safetrace.R_MDL_MOBLID),'0')# list=yes cfsqltype=cf_sql_varchar) AND -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! -

.CAR Deployment issue CFMX7 new install

2005-03-28 Thread Tony Weeg
hi there. my .car file is saying that it deployed but no datasources, no mappings... nothing? any ideas? thanks. -- tony Tony Weeg macromedia certified coldfusion mx developer email: tonyweeg [at] gmail [dot] com blog: http://www.revolutionwebdesign.com/blog/ cool tool:

Re: Empty list for an IN clause

2005-03-28 Thread Douglas Knudsen
in your case, perhaps this would suffice cfif safetrace.recordcount GT 0 RDT_MOBLID IN (cfqueryparam value=#valueList(Safetrace.R_MDL_MOBLID)# list=yes cfsqltype=cf_sql_varchar) /cfif D On Mon, 28 Mar 2005 09:19:35 -0800, Ian Skinner [EMAIL PROTECTED] wrote: What is the simplest way to handle

Re: CFUnited - Where's Macromedia?

2005-03-28 Thread Rick Root
David Epler wrote: It is great that Macromedia is allowing several of its employees to speak at CFUnited and they have been doing that for several years now. That does add value to the conference, but is not the same as being a sponsor. With 3 months to go, one would have thought they would

Re: Empty list for an IN clause

2005-03-28 Thread Sam Farmer
Put the whole clause in a cfif statement: cfif Safetrace.recordCount RDT_MOBLID IN (cfqueryparam value=#valueList(Safetrace.R_MDL_MOBLID)# list=yes cfsqltype=cf_sql_varchar) /cfif Sam On Mon, 28 Mar 2005 09:19:35 -0800, Ian Skinner [EMAIL PROTECTED] wrote: What is the simplest way to

Re: Empty list for an IN clause

2005-03-28 Thread Scott Kellogg
Add null=#yesnoformat(NOT listlen(valuelist(Safetrace.R_MDL_MOBLID)))# RDT_MOBLID IN (cfqueryparam value=#valueList(Safetrace.R_MDL_MOBLID)# list=yes cfsqltype=cf_sql_varchar null=#yesnoformat(NOT listlen(valuelist(Safetrace.R_MDL_MOBLID)))#) Ian Skinner wrote: Ok, this seems to be working.

Re: Empty list for an IN clause

2005-03-28 Thread Sam Farmer
That will work fine but if there is an empty list you are asking the database to search for a clause that you know it will not find. Depending on your set up this could cause a performance hit. Sam On Mon, 28 Mar 2005 09:27:27 -0800, Ian Skinner [EMAIL PROTECTED] wrote: Ok, this seems to be

RE: Empty list for an IN clause

2005-03-28 Thread Ian Skinner
Tried that, it still threw an error, since IN (NULL) I believe is not valid SQL syntax. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning -Original Message- From: Scott Kellogg

RE: Empty list for an IN clause

2005-03-28 Thread Ian Skinner
I thought of that, but I need the query to return no records, and because of other statements in the where clause, this would cause the query to return all records. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run.

OT- Reseller CFMX hosting

2005-03-28 Thread Asim Manzur
Is there any hosting service available for coldfusion which offers some sort of refferal service. i.e. receive some % on your refferal hosting a/c. -- Regards, ~| Logware (www.logware.us): a new and convenient web-based time

redirection/user authentication

2005-03-28 Thread Jack Benson
Hey, folks. Having a bit of trouble setting up a basic application based user authentication on my site. I keep getting an error in mozilla-based browers, redirection limit for this URL exceeded, that sort of thing. In IE, it just won't load at all - eventually gives me a server unavailable

Re: Empty list for an IN clause

2005-03-28 Thread Marius Milosav
try this: cfset mdlList = valueList (Safetrace.R_MDL_MOBLID) cfif listLen (mdlList) gt 0 run your normal query cfelse select * from your table where 0 = 1 /cfif Marius Milosav www.scorpiosoft.com It's not about Technology, it's about people Virtual Company (VICO) Application demo

RE: OT- Reseller CFMX hosting

2005-03-28 Thread Michael T. Tangorre
HostMySite has a nice reseller plan. You have to manage the accounts you sell though. The upside is that you buy them at ~30% less than non-reseller accounts so your ability to make some $$ is there. However, I have found that managing hosting is not worth the time :-) -Original Message-

Setting up MySql Data Source

2005-03-28 Thread Eric Creese
I just loaded MySql to my development machine. I have MySql up and running and even created the database I will be using. I am trying to set up a DSN in CFAdmin but it keeps failing. Since this is a non-server machine do I have to change the port? my error Connection verification failed for

Re: Setting up MySql Data Source

2005-03-28 Thread Eric Creese
Actually I checked the port at 3306 and that appears fine. I am using localhost for the server setting? Should I use something else? I just loaded MySql to my development machine. I have MySql up and running and even created the database I will be using. I am trying to set up a DSN in CFAdmin

RE: OT- Reseller CFMX hosting

2005-03-28 Thread Connie DeCinko
CrystalTech offers both referral fees and discounts to resellers. -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 10:59 AM To: CF-Talk Subject: OT- Reseller CFMX hosting Is there any hosting service available for coldfusion which offers

Re: just noticed this when validating email

2005-03-28 Thread Rebecca Wells
Rick, I understand where you're coming from. Years ago I really struggled with learning Javascript. I hated it and really resisted it, but realized that it is an inescapably valuable toolset for a web developer. So I perservered and now I'm pretty good at it. Books that I recommend include

RE: redirection/user authentication

2005-03-28 Thread Connie DeCinko
Instead of doing a CFLocation, do a CFInclude. This will replace the current page's contents with your login page. cflogin idletimeout=29 cfif not IsDefined(cflogin) cfinclude template=loginform.cfm cfabort cfelse !---Invoke

Re: redirection/user authentication

2005-03-28 Thread George Abraham
The redirection is going into an infinite loop. IE gives that error because it is hiding that info from the user. I would revisit the code to see where exactly you are making sure the user is logged in. That is usually the place where this error occurs. It is definitely a checking error. George

Read a scheduled task's settings?

2005-03-28 Thread Jim McAtee
CF5/IIS5 Is there an easy way to read the current settings of a scheduled task? I have a scheduled task that I suspend and unsuspend by changing its start date to a date in the future or in the past. But I have no way of telling what its current state is. cfregistry?

Re: redirection/user authentication

2005-03-28 Thread S . Isaac Dealey
Hi Jack, The choice of referrer for your file name variable seems like it might be a bit confusing -- since it's not actually a referrer until you've directed the user to the next page, which occurs after the variable is set. I'd change it to currentlocation or similar to avoid that confusion,

RE: CFUnited - Where's Macromedia?

2005-03-28 Thread Calvin Ward
It shows investment in the community, which in turn can be a marketing plus. I think it has worked well for Sun... - Calvin -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 12:38 PM To: CF-Talk Subject: Re: CFUnited - Where's Macromedia? David

Re: CFUnited - Where's Macromedia?

2005-03-28 Thread Adrocknaphobia
I agree with Rick. Who cares if MM is sponsoring the conference? In fact I'd rather they not, so it stays focused solely on CF. Afterall if you want demos of all the MM products go to MAX. This conference is aimed at CF developers. MM is sending a bunch of great speakers so lets be happy with that

Re: redirection/user authentication

2005-03-28 Thread Jack Benson
So I've now taken out the cflocation tag, and replaced it with this: cfsetting showdebugoutput=no cfapplication name=02133 sessionmanagement=Yes setclientcookies=Yes applicationtimeout=#CreateTimeSpan(0,0,3,0)# cfparam Name=Application.DSN Default=MassInc2 !--// set this equal to your IP address

RE: just noticed this when validating email

2005-03-28 Thread Matt Osbun
Rick- yes, there is a Javascript For Dummies. I first encountered JavaScript using Thau's JavaScript Tutorial at Webmonkey. Might want to give it a try- it's a good first brush kind of thing. http://webmonkey.wired.com/webmonkey/programming/javascript/tutorials/tu torial1.html Matt Osbun Web

RE: just noticed this when validating email

2005-03-28 Thread Rick Faircloth
Thanks for the tip, Rebecca. I'll check those out and perhaps start cooking up some Javascript stew...coming from a Cold-Fusion-was-my-introduction- to-modern-programming point-of-view, Javascript and even Actionscript look alien...so unintuitive. I realize, however, that that's probably mostly

Re: just noticed this when validating email

2005-03-28 Thread Joe Rinehart
cfif getquery.theID EQ blablah do this /cfif The same thing in JS goes somethin like this. if (getquery.theId == blablah) { doThis(); } Seems similar to me :) Symbollic language is powerful in that it gives those who speak it a common vocabulary that lets them express like ideas without

Re: redirection/user authentication

2005-03-28 Thread Jack Benson
I've tried a few more of the changes you guys suggested here: !--- check if user is logged in --- cfset currentlocation = GetFileFromPath(getBaseTemplatePath()) cfif currentlocation neq login.cfm cfif GetAuthUser() eq cfinclude template=login.cfm cfabort /cfif

RE: Setting up MySql Data Source

2005-03-28 Thread Matt Osbun
I ran into this problem a few months ago, unfortunately at a previous job, so I don't have access to all my documents/notes/DL'd files for fixing this. Basically though, if you are using a version of MySQL later than (I think) 4.0, you may need to download a different connector than what CF6.1

Re: OT- Reseller CFMX hosting

2005-03-28 Thread Rick Root
Michael T. Tangorre wrote: HostMySite has a nice reseller plan. You have to manage the accounts you sell though. The upside is that you buy them at ~30% less than non-reseller accounts so your ability to make some $$ is there. However, I have found that managing hosting is not worth the time

RE: just noticed this when validating email

2005-03-28 Thread Rick Faircloth
Thanks, Matt...I'll check it out. Rick -Original Message- From: Matt Osbun [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 1:35 PM To: CF-Talk Subject: RE: just noticed this when validating email Rick- yes, there is a Javascript For Dummies. I first encountered JavaScript using

Re: CFUnited - Where's Macromedia?

2005-03-28 Thread Paul Kenney
Microsoft's taking over Macromedai!? Oh no, not again! I don't how many times I can take it! In all seriousness, I think this discussion should either end or go over to cf-community. -- Paul Kenney [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.pjk.us

Re: Ordering WACK from Amazon (Arrival Date)

2005-03-28 Thread Tim Claremont
My order from Amazon, as of this morning, still says anticipated arrival of June 2 - June 4, 2005. Having said all that, what's with the Amazon ship date? I ordered two copies of the first one! - Calvin ~| Find out how

RE: just noticed this when validating email

2005-03-28 Thread Rick Faircloth
Agreed...I guess the thing that causes me to hesitate is that I usually experience seeing Javascript on this list. Of course, what I see here is far beyond beginner stuff, usually. It's not so much that I don't think I can learn it, or climb the learning curve as much as do I have time away from

How to Check if 1st character is a quote?

2005-03-28 Thread Paul Henderson
I want to run a simple check to see if a string's 1st character is an open quote (), usually I would try something like: cfif Left(Form.Test, 1) IS x) but if x = (quote) I will get a syntax error, how can I get around this? Thanks for the help. -Paul

Re: redirection/user authentication

2005-03-28 Thread Ben Doom
I would try looking both at the application.cfm file and any files that might get called (like login.cfm) and replacing all the cflocations with a simple printout of the conditions under which they are relocating (ie from application to index.cfm because x). That should at least help you track

Re: How to Check if 1st character is a quote?

2005-03-28 Thread S . Isaac Dealey
quotes are escaped by doubling them: left(form.test,1) is ) or use the other set of quotes left(form.test,1) is '') either should work I want to run a simple check to see if a string's 1st character is an open quote (), usually I would try something like: cfif Left(Form.Test, 1) IS x)

RE: redirection/user authentication

2005-03-28 Thread Dawson, Michael
CFDUMP every scope as well. M!ke -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 1:08 PM To: CF-Talk Subject: Re: redirection/user authentication I would try looking both at the application.cfm file and any files that might get called (like

RE: Setting up MySql Data Source

2005-03-28 Thread Ken Ferguson
Go to mysql and download the ConnectorJ. I've found that to be the only really reliable connection method. -Original Message- From: Matt Osbun [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 12:42 PM To: CF-Talk Subject: RE: Setting up MySql Data Source I ran into this problem a

Re: How to Check if 1st character is a quote?

2005-03-28 Thread Dave Carabetta
On Mon, 28 Mar 2005 14:09:55 -0500, Paul Henderson [EMAIL PROTECTED] wrote: I want to run a simple check to see if a string's 1st character is an open quote (), usually I would try something like: cfif Left(Form.Test, 1) IS x) but if x = (quote) I will get a syntax error, how can I get

Re: redirection/user authentication

2005-03-28 Thread Jack Benson
Ben - tried that as well. Login.cfm doesn't have any cflocation tags in it, and I've now removed all of them from the application.cfm file - but I'm still getting that URL redirection exceeded problem. Here's the whole file again, as altered: cfsetting showdebugoutput=no cfapplication

RE: How to Check if 1st character is a quote?

2005-03-28 Thread Paul Henderson
Yup, that works thanks! -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 2:13 PM To: CF-Talk Subject: Re: How to Check if 1st character is a quote? On Mon, 28 Mar 2005 14:09:55 -0500, Paul Henderson [EMAIL PROTECTED] wrote: I want to run a

RE: redirection/user authentication

2005-03-28 Thread Dawson, Michael
My suggestion is to have the form submit to itself. I do all my forms that way and it makes it much easier to pass the form data back to itself in case of errors. Then, in the application.cfm, I do the login checks. I would also suggest copying these files to backup, then rebuilding each step

Re: Read a scheduled task's settings?

2005-03-28 Thread Adam Haskell
Yep use cfregistry in CF5 this is the path: HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Schedule Adam H On Mon, 28 Mar 2005 11:27:46 -0700, Jim McAtee [EMAIL PROTECTED] wrote: CF5/IIS5 Is there an easy way to read the current settings of a scheduled task? I have a

Flash remoting contractor needed.

2005-03-28 Thread Emmet McGovern
Hey people. I'm in need of a flash remoting guy/gal for a current cf/flash project. This is project involves doing the data connector bit for an existing CF app and existing FLA's If anyone is interested please email me offlist for details. Anyone who refuses to work under a Non-Disclosure

Re: redirection/user authentication

2005-03-28 Thread Jack Benson
Mike - it would be great if you could show me a form-based login that actually works! I usually do make my forms self-submitting but decided to keep everything seperate here, because I thought it would make it easier to figure out where I was going wrong. In my original version of this code,

Merchant account of choice

2005-03-28 Thread Tony Weeg
hi there. whats the easiest and lowest rates for a merchant system that works with cf these days? i know stacy (who im not sure is around anymore is affiliated with one...) used to be attached to one... i dont need a shopping cart just a good api/custom tag. thanks! -- tony Tony Weeg

RE: Merchant account of choice

2005-03-28 Thread Tim Laureska
I'd be curious to hear on this one too Tony... been working with authorize.net, but don't know how their rates compare to others... the api wasn't too difficult -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:16 PM To: CF-Talk Subject: Merchant

Re: Setting up MySql Data Source

2005-03-28 Thread Irvin Gomez
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=6ef0253 I just loaded MySql to my development machine. I have MySql up and running and even created the database I will be using. I am trying to set up a DSN in CFAdmin but it keeps failing. Since this is a non-server machine

RE: Merchant account of choice

2005-03-28 Thread Emmet McGovern
We've been using e-onlinedata now for quite some time. We have all of our carts processing through authorize.net and their merchant account. I still haven't found one cheaper. We've been able to set everyone up dame day. Credit approval and all. https://www.e-onlinedata.com/fullcityhosting

Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Vince Bonfanti
That's the question raised in my new blog (hint: the answer is no): http://blog.newatlanta.com/index.cfm Vince Bonfanti New Atlanta Communications, LLC http://www.newatlanta.com ~| Discover CFTicket - The leading

Re: Merchant account of choice

2005-03-28 Thread Alex Sherwood
Tim Laureska wrote: I'd be curious to hear on this one too Tony... been working with authorize.net, but don't know how their rates compare to others... the api wasn't too difficult Me too. Don't know about rates, but their integration is simple. Check out CF_AUTHORIZE custom tag from

Re: Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Jim McAtee
Is blatant advertising permitted on this list? (hint: you know the answer) - Original Message - From: Vince Bonfanti [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, March 28, 2005 1:36 PM Subject: Is BlueDragon.NET the greatest thing since sliced bread? That's

RE: Merchant account of choice

2005-03-28 Thread Tim Laureska
Let me know if you go with authorize.net.. I can send a couple sample tags... they provide a manual too once you sign up with them -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:16 PM To: CF-Talk Subject: Merchant account of choice hi there.

Re: Merchant account of choice

2005-03-28 Thread Rick Root
Tony Weeg wrote: i dont need a shopping cart just a good api/custom tag. I got my merchant account through payquake (no minimum transaction fees like many, though they have slightly higher rates and an annual fee.. but for as little as I use credit cards, payquake works well. The processing

Re: Merchant account of choice

2005-03-28 Thread Alex Sherwood
Ditto. Tim Laureska wrote: Let me know if you go with authorize.net.. I can send a couple sample tags... they provide a manual too once you sign up with them -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:16 PM To: CF-Talk Subject: Merchant

Re: redirection/user authentication

2005-03-28 Thread Jack Benson
FYI, I've got it working!! Thanks very much for all your help, everyone! ~| 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

RE: Merchant account of choice

2005-03-28 Thread Burns, John D
In a related question, how many of you have multiple sites using credit card processors? Do you make each site sign up for a separate merchant account or has anyone been successful in setting something up where all transactions go through one account? Also, I heard that PayPal was supposed to be

RE: Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Adrian Lynch
It's about as related to CF as you can get. Would you be so sharp if it were a write up by someone at MM? Ade -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: 28 March 2005 21:42 To: CF-Talk Subject: Re: Is BlueDragon.NET the greatest thing since sliced bread? Is

RE: Sorta HTML Editor but almost no features!

2005-03-28 Thread Damien McKenna
TinyMCE and configure the toolbars. Not sure if you can stop them specifically pasting in extras, but you can also block tags you don't want by only allowing the ones you do. Its really quite powerful :) -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

RE: Sorta HTML Editor but almost no features!

2005-03-28 Thread Emmet McGovern
Tiny MCE all the way. Its so simple to integrate its silly. http://tinymce.moxiecode.com/ Emmet -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 4:30 PM To: CF-Talk Subject: Sorta HTML Editor but almost no features! I'm looking for a

Re: Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Jordan Michaels
Jim probably just didn't realize that this post was from someone who represents a leader in the CF community who only intends to talk about CF-related stuff. If some joe off the street started making posts about their blog in here I might have the same reaction Jim did. ;) -JM Adrian Lynch

Re: Setting up MySql Data Source

2005-03-28 Thread Matt Robertson
Irvin Gomez [EMAIL PROTECTED] wrote: http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=6ef0253 Will this affect (i.e. kill) my ability to continue to run CF and mySQL 4.0? -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

Alternating Row Colour - Sorta

2005-03-28 Thread Les Mizzell
Here's the page in question: http://www.stpaulscolumbia.com/calendar.cfm Client is asking for alternating colors for DAYS - not rows. At first, I figured, OK, Odd Dates one colour, Even Dates another. Nope, don't work because there may be something on the 5th and 7th, both odd dates - but not

Re: Setting up MySql Data Source

2005-03-28 Thread Irvin Gomez
I don't honestly know, since I first installed MySQL about 2 months ago (v4.1). The process was very straightforward with the Windows Essentials package. I folloed the instructions on that page and everything is working without a hitch. Sorry I can't be of more help :-) Irvin Gomez [EMAIL

RE: Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Calvin Ward
Wasn't the release of the product announced on this list when it occurred? How about Ben drops a bi-weekly announcement of the WACK books under various guises? And maybe Damon can re-announce Blackstone's release once a month too? I too consider this blatant and undesirable advertising, just as

RE: Alternating Row Colour - Sorta

2005-03-28 Thread Adrian Lynch
If that's a straight forward query output then this should do it for you: cfoutput query=query cfif query.CurrentRow MOD 2 one colour cfelse another colour /cfif /cfoutput If it's not a standard output, you're using group=column in your

RE: Alternating Row Colour - Sorta

2005-03-28 Thread Patrick McGeehan
It looks like you are already using a group by in the query to group by month, just use a second group by, this one on the day. In the second group by set the bg color. Patrick McGeehan Applications Developer DIT CF_DIT#mcg#/CF_DIT -Original Message- From: Les Mizzell

RE: Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Adrian Lynch
So when others mention their lastest blog entry that's ok? -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 28 March 2005 22:58 To: CF-Talk Subject: RE: Is BlueDragon.NET the greatest thing since sliced bread? Wasn't the release of the product announced on this list

RE: Alternating Row Colour - Sorta

2005-03-28 Thread Katz, Dov B \(IT\)
I usually use a counter variable, or a cfoutput/grouping, when possible, and just incrememn CFSET CurrentVal= CFSET Counter=0 CFOUTPUT/CFLOOP over Query CFIF CurrentVal NEQ Query.Val CFSET CurrentVal=Query.Val CFSET Counter=Counter+1 Cfset currentBG=iif(counter MOD 2 is

Re: Alternating Row Colour - Sorta

2005-03-28 Thread Jim McAtee
Here's one way. cfset olddate = 1/1/1950 cfset bgcolor = 0 cfloop query=myquery cfif myquery.eventdate neq olddate cfset olddate = myquery.eventdate cfset bgcolor = 1 - bgcolor /cfif tr style=background-color:#IIf(bgcolor, DE('white'), DE('gray'))# td.../td td.../td /tr

Re: New CFFORM website

2005-03-28 Thread Irvin Gomez
Nice effort, but not much attention to detail. Most of the examples are really clumsily put together. Heck, even the form on the contact page (http://www.cfform.com/contact.cfm) won't enforce any sort of validation on the email field! Given that Macromedia bribed Jakob Nilsen into stopping his

RE: Merchant account of choice

2005-03-28 Thread Ken Ferguson
I've got several sites using credit cards and I use the same merchant account for each. It's fairly simple to keep everything separated by providing prefixes for the transactions from each separate site. Reporting isn't harmed... I use Verisign. --Ferg -Original Message- From: Burns,

Re: Best practice question?

2005-03-28 Thread Sean Corfield
On Sun, 27 Mar 2005 23:10:09 -0500, Justin D. Scott [EMAIL PROTECTED] wrote: That's why I like the way FuseBox handles input. So much so that I use it even outside my FuseBox apps. It takes all of the FORM and URL variables and moves them to the ATTRIBUTES scope if it doesn't already exist.

Re: Alternating Row Colour - Sorta

2005-03-28 Thread Les Mizzell
cfoutput query=query cfif query.CurrentRow MOD 2 one colour cfelse another colour /cfif /cfoutput Nope, that's not it. Let's say the Calendar is showing a number of events: Mon - event 1 Mon - event 2 Mon - event 3 Tue - event 1 Tue - event

RE: Alternating Row Colour - Sorta

2005-03-28 Thread Adrian Lynch
How about looking back at the previous day to see if it's changed. cfif CurrentRow NEQ 1 AND Day(query[date][CurrentRow]) NEQ Day(query[date][CurrentRow - 1]) Change colour /cfif -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: 28 March 2005 23:10 To: CF-Talk

Expanding Wikipedia content

2005-03-28 Thread Damien McKenna
http:// http://en.wikipedia.org/wiki/ColdFusion en.wikipedia.org/wiki/ColdFusion I started adding some extra content today to flesh it out some. Please contribute your own thoughts. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] The Limu Company -

RE: Setting up MySql Data Source

2005-03-28 Thread Ken Ferguson
No, just get the ConnectorJ download from MySQL and it will work just fine. I've got it running with this package on 12 different sites in MX, MX 6.1, and MX 7. --Ferg -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:47 PM To: CF-Talk

RE: Merchant account of choice

2005-03-28 Thread Burns, John D
Have you been told there are legal issues with this? We are thinking of implementing something similar but Bank Of America said you can't legally. Obviously, there are other problems like having to handle disputed claims and getting the checks cut and sent to the individual clients, but I just

  1   2   >