Re: cf open shopping cart

2006-01-10 Thread John C. Bland II
lol. Now that is just funny Dave. First off, I'm offended. I play PS2...not xbox. Second, conflict of interests means my company is building an e-commerce system (database already done and is quite intense in terms of functionality) that won't be free so why would I take the same knowledge (or

Big Gateways

2006-01-10 Thread Baz
Hi, I have a gateway CFC that returns queries for medications. Medications are complex things that have many properties and require many tables to store all the info. As well, there are hundreds of different ways to query the meds. My question is how do people break up their methods in these

Re: cf open shopping cart

2006-01-10 Thread Mike Kear
Well I for one was watching this project kick off with interest. Initially I saw it as an opportunity for me to contribute something back to the community that has been so good to me over quite a few years now. I thought I would gain from it because it would also be good for me to be involved in

RE: lets give these ppl hell!

2006-01-10 Thread DURETTE, STEVEN J \(AIT\)
Ken, Is it really necessary to disparage an ad campaign of a company that might just have people on this list? (READ THE SIGNATURE) Thanks, Steve -- Steve Durette Mgr - Results Mechanization ATT -Original Message- From: Ken Ketsdever [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: cf open shopping cart

2006-01-10 Thread Tim Laureska
Hear hear! Mike Same experience I had and that's not being critical just a factual observation. I too wanted to learn from and participate in such a project b/c I'm a sole developer who doesn't have that group project opportunity. But after a several days of seeing the same thing you saw, it

Re: Big Gateways

2006-01-10 Thread Dov Katz
I'd say there's one issue with your logic If all you mean by conditional processing is a bunch of extra IF's and CFSWITCH's etc, then the speed impact of those compared to database queries should be negligible. For example, if you have 10 different paths through your big cfc method, based

RE: cf open shopping cart

2006-01-10 Thread Jennifer Gavin-Wear
umm .. I've got my cart written in the last month ;) lol -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: 09 January 2006 22:33 To: CF-Talk Subject: RE: cf open shopping cart And you are.. saying its pretty damn pathetic that no one is helping out with the damn

good old CFLOCK question

2006-01-10 Thread Baz
I know locking questions have come up before... but it's a quickie... Is there ever a reason to lock an entire scope instead of using named locks? It seems that locking an entire scope just causes extreme inefficiency without any advantages... Thanks, Baz

RE: cf open shopping cart

2006-01-10 Thread Mark A Kruger
Dave ... other communities don't have that excuse... I think that's a stretch. I would wager that in other communities (as well as life church and your local elementary) about 10% of the people end up doing about 90% of the work. -Mark P.S. Where are these hot chics who do geek-podcasts?

RE: cf open shopping cart

2006-01-10 Thread Mark A Kruger
Dave, Ok - what's the site for the new open shopping cart I haven't even looked at it (sorry). -mark -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 10:14 PM To: CF-Talk Subject: Re: cf open shopping cart I agree with some of justins points

Re: good old CFLOCK question

2006-01-10 Thread James Holmes
I'm inclined to agree - use named locks. On 1/10/06, Baz [EMAIL PROTECTED] wrote: I know locking questions have come up before... but it's a quickie... Is there ever a reason to lock an entire scope instead of using named locks? It seems that locking an entire scope just causes extreme

Re: good old CFLOCK question

2006-01-10 Thread Robert Everland III
I would think that named locks would end up being difficult to manage. You would have to remember that you locked session.variablename with the lock lockname. My question would be is does locking lock the scope for the whole box, or only for that application and that scope. Bob

Re: Data Import into ACCESS through CF

2006-01-10 Thread Robert Everland III
I would try to do it in Access before I would try to do it in CF. Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229010 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

RE: cf open shopping cart

2006-01-10 Thread Mark A Kruger
Mike, Well said. I had much the same reaction as you. I would even devote some company resources to it - but it sounded a little fuzzy from the outset. In my experience most projects ar spear-headed by a person or very small team who direct the vision. There's a reason the communist never built

RE: Big Gateways

2006-01-10 Thread Baz
Dov, You bring up a lot of good points. Here is a trimmed down example of one of my queries in a method: cfquery name=local.ReturnStruct.Query SELECT DISTINCT MedicationID, Medication, MedicationC cfif not arguments.DistinctMedication , BrandNameID, BrandNameManufacturer, BrandName

RE: good old CFLOCK question

2006-01-10 Thread Mark A Kruger
Baz, Think this through locking the session scope locks THIS session, so you are really keeping the user from interfering with himself. In a sense, using named locks for session scope may be overkill unless you have some kind of polling or long running scripts, or perhaps you are setting or

Re: good old CFLOCK question

2006-01-10 Thread James Holmes
An application scoped lock works just for that application. A session scoped lock works just for that user's session. It's all a matter of how an app is structured. Take 10 threads that need to write to different data in the application scope for an app; named locks let them all operate at once,

RE: good old CFLOCK question

2006-01-10 Thread DURETTE, STEVEN J \(AIT\)
In my CF4 and CF5 days I found that it was actually faster to lock an entire scope (application) then set multiple variables in that scope before releasing the lock. I'd do something like: cflock scope=Application timeout=30 type=exclusive cfscript if(not

RE: cf open shopping cart

2006-01-10 Thread Aldon
I have been following the post on both sites since it was posted, and its not been clear where we are going. I won't be quick to accuse anyone of sitting around when there still isn't a clear-cut approach to the development defined. We all have other responsibilities and are willing to contribute

RE: cf open shopping cart

2006-01-10 Thread Aldon
Mike, I feel the same -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 9:36 AM To: CF-Talk Subject: RE: cf open shopping cart Mike, Well said. I had much the same reaction as you. I would even devote some company resources to it -

Re: Intranet Based on CF7 and Contribute

2006-01-10 Thread Robert Everland III
I think users that have a difficulty using a web browser are going to have as much difficulty handling Contribute. I think any application that allows users to affect pages by deleting portions of the code and creating application errors is the wrong way to go about doing content management.

Re: Intranet Based on CF7 and Contribute

2006-01-10 Thread Robert Everland III
I think users that have a difficulty using a web browser are going to have as much difficulty handling Contribute. I think any application that allows users to affect pages by deleting portions of the code and creating application errors is the wrong way to go about doing content management.

CFFILE Upload weirdness

2006-01-10 Thread Bud
Hi. One of the strangest things I've seen yet. This happens on one CF server running 7,0,1,116466 (a client's) but not mine, running the same code and the same version. Simple custom tag. Here is the cffile. cffile action=upload filefield=#filefield#

SMTP - socket error.

2006-01-10 Thread Protoculture
We are running a smtp server that gets mail generated from coldfusion. But having problems with intermitment connection timeouts from both the default windows iis smtp, and another SMTP server both seem to be having connection issues. We have run a certain SMTP server previously on this

RE: Big Gateways

2006-01-10 Thread Katz, Dov B \(IT\)
OK, so if this is what the query looks like (but larger), its probably pretty efficent, but if you want to break things up, I'd say to do it by grouping ideas together... Group 1: Brand, Manufacturer, and Medication name Group 2: Types of Medical Conditions Group 3: Active

RE: Big Gateways

2006-01-10 Thread Baz
Dov, Great stuff! Gonna implement it.. Cheers, Baz -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 9:14 AM To: CF-Talk Subject: RE: Big Gateways OK, so if this is what the query looks like (but larger), its probably pretty

ot - trying to find blog owner for Rapid CF Developer's Blog

2006-01-10 Thread Raymond Camden
Sorry for the OT post - but if the owner of the Rapid CF Developer's Blog is here, please email me. URL is http://rayhorn.contentopia.net/blog/index.cfm -- === Raymond Camden, Director of Development for Mindseye, Inc

RE: SQL query to get first sentence (using mySQL)

2006-01-10 Thread Andy Matthews
Anyone have ideas on this? !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 9:35 AM To: CF-Talk Subject: SOT:

RE: lets give these ppl hell!

2006-01-10 Thread Kevin Aebig
LOL... now that's fresh. !K -Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent: January 10, 2006 5:37 AM To: CF-Talk Subject: RE: lets give these ppl hell! Ken, Is it really necessary to disparage an ad campaign of a company that might just have people on

RE: action script copy by value

2006-01-10 Thread Kevin Aebig
Hey Brad, This may seem a little ridiculous, but have you cleared your cache lately? It is still Flash after all... Cheers, Kevin -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: January 9, 2006 11:25 AM To: CF-Talk Subject: action script copy by value I am going

RE: SQL query to get first sentence (using mySQL)

2006-01-10 Thread Adrian Lynch
Outside of a query you could do something like... - Loop through all your delimiters getting the first index of each. So . may be at index 29, ! at index 40 and ? at index 18. - Use the lowest one in your query below to denote the end of the first sentence. In a query, how about... - Replace

Re: CFFILE Upload weirdness

2006-01-10 Thread Dave Carabetta
On 1/10/06, Bud [EMAIL PROTECTED] wrote: Hi. One of the strangest things I've seen yet. This happens on one CF server running 7,0,1,116466 (a client's) but not mine, running the same code and the same version. Simple custom tag. Here is the cffile. cffile action=upload

RE: lets give these ppl hell!

2006-01-10 Thread Ken Ketsdever
Sorry it you took offense, the comment had nothing to do with ATT. But rather about the quantity of email received. Personally, I would be thankful for one less undesired email be it from ATT, SBCGlobal or Mothers Cookies (unless it came with a sample, love Mothers Oatmeal Cookies). I have yet to

OT: CF Webtools looking for designers

2006-01-10 Thread Mark A Kruger
CF Webtools is looking for designers for contract work. We need: Good turn around on Mockups Good slicer CSS expertise (if you are 5 levels deep table person please refrain from responding. We already have 3 of those - ha). We have 2 to 5 projects per month requiring design work. If you are a

RE: action script copy by value

2006-01-10 Thread Brad Wood
Kevin, I haven't cleared my cache recently, but I did find out why it wasn't working. If I just have a cfgrid populated by a query, I can do myGrid.dataProvider.slice(0) and get a copy of all the items in the list. I found out the PROBLEM is when I change the data provider with flash remoting:

RE: cf open shopping cart

2006-01-10 Thread Bud
If you REALLY want an open-source shopping cart in CF, someone, one person, will just need buckle down and write a feature set, decide on a framework, and CODE MOST OF IT OUT. Hasn't Ben Forta done that? Mine was based on the one out of WACK 4, a lng time ago. :) I've been working on

RE: lets give these ppl hell!

2006-01-10 Thread DURETTE, STEVEN J \(AIT\)
The campaign wasn't e-mail based (as far as I know). ATT bought up a HUGE amount of banner space. HUGE amounts of screen space in New York when the ball came down. I don't know where they got the numbers from but my guess is that it was the fact that they put banner adds anywhere they could

RE: cf open shopping cart

2006-01-10 Thread Russ
Like was said before, what this project needs is a good project manager to manage the whole thing. Somebody needs to either a. build the whole thing themselves and let people add features or b. figure out the spec and possibly through a round of RFC's solidify it and then break it up and have

RE: lets give these ppl hell!

2006-01-10 Thread Ken Ketsdever
When I saw the comment from ATT about half all web users etc.. I jumped to the conclusion it was an email campaign. Obviously I was wrong, my apologies. I guess I am the half that is out of the loop because I don't recall seeing any advertisements from ATT recently, online or otherwise, Either

RE: cf open shopping cart

2006-01-10 Thread Brad Wood
-Crickets- *no one moves* :) What is an RFC? (Sorry for the stupid question.) ~Brad So who's it going to be? Who's going to take the lead and manage this thing? ~| Message:

Fusebox IFrame Bug

2006-01-10 Thread Kevin Penny
Not sure who to blame on this one but what I'm finding is that when using FuseBox 4.1 framework I have a page that has an Iframe in the middle of it which shows another page from the framework - When the entire page is loaded all at once, I'll get random Framework/Fusebox errors within the

Re: cf open shopping cart

2006-01-10 Thread Bryan Stevenson
That's cool I wont ask about it anymore or try to help out the community since most of you are just so great that you are above helping out ~Dave the disruptor~ Cool your jets big guy and try not to tar the entire list with the same brush and feathers ;-) Some of uswell work for

undefined struct element

2006-01-10 Thread Greg Saunders
We occasionally see users come to the site with bad cookies, meaning that if I dump the cookies, i find an entry (say foo) whose value is: [undefined struct element] I think that isDefined(cookie.foo) returns TRUE, but if I try to do this: cfset variables.foo = cookie.foo then

RE: cf open shopping cart

2006-01-10 Thread Russ
RFC is a request for comments. We can't have everybody try to set the specs, but someone should write out the specs, and then post it for everyone else to critique. After a few rounds of critique, most of the kinks should be worked out. This is how new standards get set in place. SMTP, HTTP

RE: Fusebox IFrame Bug

2006-01-10 Thread Brad Wood
Weird, do you have any variable locking problems where two concurrent page requests from the same session are hitting heads? What happens if you type the address of the iframe in the main url and load that page by itself? Is there any # or characters getting in the iframe src that could be

SOT: Aqua Studio / Oracle

2006-01-10 Thread Stuart Kidd
Hi guys, I don't know whether anyone has used Aqua Studio before but in case you have then maybe you can help. I am trying to create a field with an incremental ID.  I found this clever script: CREATE SEQUENCE supplier_seq     MINVALUE 1     START WITH 1     INCREMENT BY 1     CACHE 20;

Re: cf open shopping cart

2006-01-10 Thread Ken Ferguson
I think your judgment of others not wanting to join your project is a little off. It's kind of odd to attack others for not sharing desire to work on a particular project. Why is it that you think everyone in the community should share YOUR priorities? Why do you think everyone else should

Re: SOT: Aqua Studio / Oracle

2006-01-10 Thread C. Hatton Humphrey
I don't know whether anyone has used Aqua Studio before but in case you have then maybe you can help. I am trying to create a field with an incremental ID. I found this clever script: CREATE SEQUENCE supplier_seq MINVALUE 1 START WITH 1 INCREMENT BY 1 CACHE 20; but i have

RE: action script copy by value

2006-01-10 Thread Kevin Aebig
Hey Brad, I've been working with Flash longer than most, so I'll try and answer your questions. It seems every decent language should have a way to copy by reference AND by value (without a slice(0) hack), but I haven't figured it out yet with Actionscript. --Nope. You can use an loop or a

RE: Aqua Studio / Oracle

2006-01-10 Thread Russ
I think there are some tools that let you run sql like osql.exe (not sure if it comes if you don't have enterprise manager). You can also just stick it into a CF page inside a cfquery and assuming you have the right permissions to the database it should create sequence for you.

Re: lets give these ppl hell!

2006-01-10 Thread Ken Ferguson
And the best of luck to you Dave. I hope your new method of spamming, as there's no way to argue that in the end that's what it is, makes you incredibly rich! --Ferg dave wrote: sounds like a personal problem ;) it's a great marketing tool, just look at forbidden (who cart we all bashed on

RE: action script copy by value

2006-01-10 Thread Brad Wood
Kevin, thank you very much for your help. --The statement above is using the remoting bindings and 'results' refers to an object, not an array. That makes perfect sense. I had just assumed that the results object would be a list-based object and inherit the length property etc... Other than

Re: SOT: Aqua Studio / Oracle

2006-01-10 Thread Stuart Kidd
Thanks for that Hatton.  I managed to get the query window open and put a query inside but seem to get some errors. CREATE SEQUENCE PATCHID     MINVALUE 1     MAXVALUE 999     START WITH 1     INCREMENT BY 1     CACHE 20; Do you know whether my sequence should have a

Re: Fusebox IFrame Bug

2006-01-10 Thread John Beynon
you'll get the same behaviour using normal frames too - the problem is the two requests are running and one request overwrites the application stored structure - if you change the mode from development to production the problem will go away as the application structure will not be recreated on

Re: SOT: Aqua Studio / Oracle

2006-01-10 Thread Deanna Schneider
I'm not familiar with that particular tool. But, it shouldn't matter that you have a column named patchid. It would matter if you had another object called patchid (table, trigger, proc, etc). In which case you should get an error about it already existing. You can just run the query select

raptor...still SOT(WAS Re: SOT: Aqua Studio / Oracle)

2006-01-10 Thread Douglas Knudsen
fyi, Oracle has a new tool called Raptor http://www.oracle.com/technology/products/database/project_raptor/index.html I have been using it for a week now...nice. DK On 1/10/06, Stuart Kidd [EMAIL PROTECTED] wrote: Thanks for that Hatton. I managed to get the query window open and put a query

Re: Javascript timeout

2006-01-10 Thread Ken
Hi Guys. I used Bobby's script located at http://www.mcfedries.com/JavaScript/timer.asp and it works. However, when the user hits the back button, the timer again starts at 10 seconds. Is there a way to stop that from happening. I do not want to reset the time if the back-button is used. It should

Re: SOT: Aqua Studio / Oracle

2006-01-10 Thread Dave Carabetta
On 1/10/06, Stuart Kidd [EMAIL PROTECTED] wrote: Thanks for that Hatton. I managed to get the query window open and put a query inside but seem to get some errors. CREATE SEQUENCE PATCHID MINVALUE 1 MAXVALUE 999 START WITH 1 INCREMENT BY 1 CACHE 20; If you

Re: SOT: Aqua Studio / Oracle

2006-01-10 Thread Aaron Rouse
I typically prepend my sequence names with SEQ_ and then the table that I intend to use it with. So if for table PATCHES I would call mine SEQ_PATCHES. Then if I was populating that PATCHID field with the sequence value through a trigger I would have a trigger named TRG_PATCHES On 1/10/06,

RE: action script copy by value

2006-01-10 Thread Kevin Aebig
The biggest still being how on Earth to attach a click listener to checkbox in a cfgrid when using cfgridcolumn type=Boolean -- I haven't dove too deep into Flash Forms (Flex2 is my next endeavor), so I might be off in left field... From within Flash, to even get a checkbox or anything other

OT: ColdFusion Podcast Episode 10

2006-01-10 Thread Michael T. Haynie
We're talking about AJAX,OO Programming, and the future of web applications this week. Let us know your comments! Thanks, Michael http://www.coldfusionpodcast.com/ ~| Message:

OT: Stored Procedure Help

2006-01-10 Thread Mark Drew
Does anyone know how to loop over a list that you have passed into a stored procedure (from within the stored procedure)? I am trying to insert some relationships into a table: i.e. insert user details and pass a list of permissions (e.g. 1, 4, 6, 8) loop over user permission list insert

RE: action script copy by value

2006-01-10 Thread Brad Wood
Thanks Kevin. I had assumed that Cold Fusion simply assigned a special cellRenderer to that column to generate the check box. The only think is, I don't have access to the code in that cellRenderer since it is encapsulated in the cfgridcolumn tag. I don't know if it is possible to modify the

RE: action script copy by value

2006-01-10 Thread Kevin Aebig
I'm not sure if you can use a cellRenderer, but you could at least use labelfunction to alter each cell as they were set. http://www.asfusion.com/blog/entry/using-labelfunction-to-format-cfgrid Cheers, Kevin -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: January

RE: cf open shopping cart

2006-01-10 Thread Snake
Actually of that is to do with rhe fact that no-one in the cf community wants to give away anything for free. Everyone who writes some crappy tag tries to sell it. Snake -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: 10 January 2006 04:14 To: CF-Talk Subject: Re: cf open

RE: Stored Procedure Help

2006-01-10 Thread Adrian Lynch
Not sure if this works, I grabbed it from a bunch of snippets I have. DECLARE @list VARCHAR(100), @loop BIT, @item INT SET @list = '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15' SET @loop = 1 WHILE @loop = 1 BEGIN -- If we can't find the delimiter the last element is all that's left of the list

Professional Opinions on HostMySite.com

2006-01-10 Thread Scott Stewart
All, The company that I work for is considering HostMySite.com to host our web and email presence. (I use them to host my personal site http://www.sstwebworks.com http://www.sstwebworks.com/ ) I need to know who's got a small business web presence with HostMySite and what your

RE: Fusebox IFrame Bug

2006-01-10 Thread Kevin Penny
You the man John - Thanks a ton - (is this documented anywhere? - Known issues?) -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 10:04 AM To: CF-Talk Subject: Re: Fusebox IFrame Bug you'll get the same behaviour using normal frames too -

Re: cf open shopping cart

2006-01-10 Thread Joe Rinehart
or so. These folks are working for me on a HUGE federal government project which is an equally HUGE change in the way they do business. To top it off this project has spurred on some much needed house cleaning from a data standpointcreating a bunch of spin-off projects. These are CF

RE: OT: Eclipse is the One Ring?

2006-01-10 Thread Munson, Jacob
LOL, yeah I guess if you follow the logic through from the books, then that would be the correct conclusion. But really this was just a silly diversion. I currently use Eclipse with CFEclipse, EPIC for perl, JSEclipse for JavaScript, and XMLBuddy. So I would be very upset if Eclipse were

Retaining form data after navigating away?

2006-01-10 Thread Pete Ruckelshaus
I'm sure there is an elegant solution to this, I just don't know what it is. I have a form. Text fields, dropdowns, that sort of thing. One dropdown field has companies with a listing of companies. If a company is not in the dropdown, the user needs to add that company to the database, which is

RE: Professional Opinions on HostMySite.com

2006-01-10 Thread Russ
I have heard a lot of good things about them, but lately their response has been less then stellar. It's true that when you call them up you get to speak to somebody most of the time. Except that somebody is usually either a CSR or a low level tech. If you need something to get done that

Re: Professional Opinions on HostMySite.com

2006-01-10 Thread Jordan Michaels
Scott Stewart wrote: All, The company that I work for is considering HostMySite.com to host our web and email presence. (I use them to host my personal site http://www.sstwebworks.com http://www.sstwebworks.com/ ) I need to know who's got a small business web presence with HostMySite and what

RE: Professional Opinions on HostMySite.com

2006-01-10 Thread Scott Stewart
Probably the shared hosting... sas Scott A. Stewart ColdFusion Developer GNSI 11820 Parklawn Dr Rockville, MD 20852 (301) 770-9610 -Original Message- From: Jordan Michaels [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 1:35 PM To: CF-Talk Subject: Re: Professional

RE: cf open shopping cart

2006-01-10 Thread Brad Wood
508?? Careful with that AJAX stuff and the Feds, they'll go all 508 on ya :) ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229072 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

RE: Retaining form data after navigating away?

2006-01-10 Thread Brad Wood
I have done this before by having them add the company in a popup window. After the popup saves and right before it closes, call a function in the opener window to reload the options in the drop down. A hidden iframe works nicely here. Refresh the iframe which has a query-built JavaScript loop

Re: cf open shopping cart

2006-01-10 Thread Bryan Stevenson
Careful with that AJAX stuff and the Feds, they'll go all 508 on ya :) We're in Canada...no such beastie as 508 here (although we have an equivalent)no matter thoughinternal app so those rules do not applythansk though ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce

Re: cf open shopping cart

2006-01-10 Thread Joe Rinehart
A, you lucky Canadians and your common-sense approach to self-governance! I took my first trip to Canada last spring, and thought it was an absolutely great country. -Joe On 1/10/06, Bryan Stevenson [EMAIL PROTECTED] wrote: Careful with that AJAX stuff and the Feds, they'll go all 508 on

Re: cf open shopping cart

2006-01-10 Thread Bryan Stevenson
A, you lucky Canadians and your common-sense approach to self-governance! I took my first trip to Canada last spring, and thought it was an absolutely great country. -Joe Come back and see us anytime Joeglad ya liked it ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce

RE: ColdFusion Podcast Episode 10

2006-01-10 Thread Adrian Lynch
From: http://www.dcooper.org/blog//client/index.cfm?mode=entryentry=A1B8B067-4E22 -1671-5161C140E81A92B3 As you may know, the Adobe ColdFusion team is hard at work on Scorpio, the next major release of the ColdFusion product. We're making great progress, but we've decided some functionality in

Re: cf open shopping cart

2006-01-10 Thread Bryan Stevenson
508 = accessibility compliance 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.com

RE: ColdFusion Podcast Episode 10

2006-01-10 Thread Andy Matthews
That's awesome. Too bad we're not even using MX 7 yet. :( !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006

RE: cf open shopping cart

2006-01-10 Thread Bobby Hartsfield
Damn... lost another one to #replace(str, Geiko, Canada)#... ;-) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 2:09 PM To: CF-Talk Subject: Re: cf

RE: Retaining form data after navigating away?

2006-01-10 Thread Bobby Hartsfield
If you can depend on JS, I'd go with it. You could have a link that pops up a window with the company name form (or even makes a hidden div with the form in it visible). When it's submitted, add it to the database and append the new option to the drop down (via JS) with the new company info. Then

RE: Javascript timeout

2006-01-10 Thread Bobby Hartsfield
That might be a tough one. AJAX comes to mind (back button would do the user no good if they didn't leave the page) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10,

OT: Stored Procedure Help

2006-01-10 Thread Mark Drew
Does anyone know how to loop over a list that you have passed into a stored procedure (from within the stored procedure)? I am trying to insert some relationships into a table: i.e. insert user details and pass a list of permissions (e.g. 1, 4, 6, 8) loop over user permission list insert

Re: Fusebox IFrame Bug

2006-01-10 Thread John Beynon
I have an entry on my blog concerning it - http://john.beynon.org.uk/index.cfm/2005/1/18/framesets-and-Fusebox-41 :) On 1/10/06, Kevin Penny [EMAIL PROTECTED] wrote: You the man John - Thanks a ton - (is this documented anywhere? - Known issues?) -Original Message- From: John

RE: Stored Procedure Help

2006-01-10 Thread Brad Wood
Is this a comma delimited list, or an xml document. I use xml a lot when I want to pass in a variable length list of items to change. Very handy MS SQl's XML functionality. ~Brad -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 11:41 AM To:

Re: Retaining form data after navigating away?

2006-01-10 Thread Pete Ruckelshaus
This sounds like the ideal approach. Do you have any code samples? Thanks, Pete On 1/10/06, Brad Wood [EMAIL PROTECTED] wrote: I have done this before by having them add the company in a popup window. After the popup saves and right before it closes, call a function in the opener window to

Optimizing IIS6 for CFMX

2006-01-10 Thread Tony
Hola. Does anyone know of a good link to a page that discusses best practices for dealing with IIS6 and CFMX 7 Thanks! Tony ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229087 Archives:

RE: Optimizing IIS6 for CFMX

2006-01-10 Thread Ken Ketsdever
If you find anything that doesn't make the list please forward your findings. Thanks, Ken -Original Message- From: Tony [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 12:53 PM To: CF-Talk Subject: Optimizing IIS6 for CFMX Hola. Does anyone know of a good link to a page

Re: Retaining form data after navigating away?

2006-01-10 Thread Ken Ferguson
How about, on the same form, you give them the option to enter the name of the nonexistent company. Then, on your action page, if you detect that they entered a new company, catch that and have them finish entering that data. Then you can continue and handle the results of the first form after

RE: Professional Opinions on HostMySite.com

2006-01-10 Thread Matthew Walker
I've got a couple of small sites (~1000 sessions/day) on their CF Builder+ plan (which they recently more-or-less doubled the specs of at no cost). Been very happy with them. Had one or two problems with their control panel admin interface but when I submit a support ticket everything gets dealt

RE: Professional Opinions on HostMySite.com

2006-01-10 Thread Matthew Walker
BTW they have a good range of custom tags installed too. http://www.hostmysite.com/support/cfusion/cftags/ -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, 11 January 2006 7:31 a.m. To: CF-Talk Subject: Professional Opinions on HostMySite.com All,

Re: Professional Opinions on HostMySite.com

2006-01-10 Thread Jim Wright
Scott, I have sites for three of my clients hosted there. I've been generally happy with them. We've had a few technical difficulties, but the problems were addressed. The sites that I have there depend on regular FTP uploads from the client's location, and we have had two problems with

Re: Professional Opinions on HostMySite.com

2006-01-10 Thread J W
I have nothing but good things to say about their hosting. A client of mine is using them now and I have used them in the past. Excellent service, not that I have had anything complicated like adjusting load balancing. Uptime has been great. I would use them again for sure. Jeff On 1/10/06,

Re: Combining verity results with database query

2006-01-10 Thread Jim Wright
As a follow up to this post, in case anybody has the same problem I did, I had to put the word key in brackets...something like... WHERE dbResults.primaryID = verityResults.[key] This was in MX7 running on a W2K Server box. -jim And did you try it without table aliases and with the join in

Re: Combining verity results with database query

2006-01-10 Thread Pete Ruckelshaus
Why not just use a UNION in a QoQ? Pete ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229095 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

RE: Retaining form data after navigating away?

2006-01-10 Thread Brad Wood
Here are some snippets of code. I actually use a handy custom tag so most of this doesn't have to be re-written every time I want to dynamically change a drop down. It is pretty flexible, but I am sure you can take from it what you want/need when you see what it is doing. There are several ways

Re: CFFILE Upload weirdness

2006-01-10 Thread Bud
dave wrote: While it looks like you're experiencing the issue in this TechNote, http://www.macromedia.com/go/f97044e, you should make sure that you have the cumulative updater to Merrimack installed, found here: http://www.macromedia.com/go/aae43964. I think that should resolve things. One thing

  1   2   >