RE: shopping cart / online store

2001-08-31 Thread Martin Wright
UGH! Dansie Cart is what finally what pushed me over the edge into learning ColdFusion. I think I tried everything from Perlshop, to Dansie, to Miva and finally figured it be easier to just figure out how to build a cart than to try and make one of those things do what you actually want it

RE: shopping cart / online store

2001-08-31 Thread Seamus Campbell
http://hotwired.lycos.com/webmonkey/programming/coldfusion/ I found this book very good - although aimed at beginners Sams Teach Yourself Allaire ColdFusion ISBN 0672317966 Seamus At 11:55 am 1/09/01 , you wrote: UGH! Dansie Cart is what finally what pushed me over the edge into

shopping cart / online store

2001-08-29 Thread Brian Almeter
This is a multi-part message in MIME format. --=_NextPart_000_002D_01C13071.8036D780 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Hello Does anybody know of a good resource for planning, developing, and building an online store front with ColdFusion?

RE: shopping cart / online store

2001-08-29 Thread Bryan Love
] -Original Message- From: Brian Almeter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 7:01 AM To: CF-Talk Subject: shopping cart / online store This is a multi-part message in MIME format. --=_NextPart_000_002D_01C13071.8036D780 Content-Type: text/plain; charset=iso

RE: shopping cart / online store

2001-08-29 Thread JSchlosser
Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 1:53 PM To: CF-Talk Subject: RE: shopping cart / online store NetReady. It's pretty new, but it's cheap and it blows the competition away Here's a feature list: Administration

RE: shopping cart / online store

2001-08-29 Thread Eric Dawson
I like the cart ... is the open source licence good for unlimited implementations? servers? sites? Eric Dawson From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: shopping cart / online store Date: Wed, 29 Aug 2001 15:43:23 -0400 If your user doesn't

RE: shopping cart / online store

2001-08-29 Thread Ian Lurie
To: CF-Talk Subject: RE: shopping cart / online store NetReady. It's pretty new, but it's cheap and it blows the competition away Here's a feature list: Administration Expandable shipping model based on the total weight of an order *NEW* InterShipper

RE: shopping cart / online store

2001-08-29 Thread BT
FYI, I was check it out and got a CFUSION error while posting to secure.dcprom.com... -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 4:53 PM To: CF-Talk Subject: RE: shopping cart / online store Just as a plug, we're using NetReady right

RE: shopping cart / online store

2001-08-29 Thread Dan Phillips
PROTECTED]] Sent: Wednesday, August 29, 2001 4:53 PM To: CF-Talk Subject: RE: shopping cart / online store Just as a plug, we're using NetReady right now on www.dessy.com for their lookbook product. It integrated with their site with about 3 hours of work, start-to-finish. Very slick... -Original

RE: shopping cart / online store

2001-08-29 Thread Fuon See Tu
-Talk [EMAIL PROTECTED] Subject: RE: shopping cart / online store Date: Wed, 29 Aug 2001 16:57:17 -0400 Hello Does anybody know of a good resource for planning, developing, and building an online store front with ColdFusion? Including search capabilities, credit card transactions, etc. Web

RE: shopping cart / online store

2001-08-29 Thread Dave Feltenberger
to make it worthwhile. Instead, we load balanced it all onto several really fast ColdFusion servers and they do the business logic. -Original Message- From: Fuon See Tu [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 5:29 PM To: CF-Talk Subject: RE: shopping cart / online store

RE: shopping cart / online store

2001-08-29 Thread Bryan Love
Developer Telecommunication Systems Inc. [EMAIL PROTECTED] -Original Message- From: Eric Dawson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 12:56 PM To: CF-Talk Subject: RE: shopping cart / online store I like the cart

RE: shopping cart / online store

2001-08-29 Thread Bryan Love
:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 2:00 PM To: CF-Talk Subject: RE: shopping cart / online store FYI, I was check it out and got a CFUSION error while posting to secure.dcprom.com... -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29

RE: shopping cart / online store

2001-08-29 Thread Fuon See Tu
Thanx, I've taken that into account. but SP's still rule! :P From: Dave Feltenberger [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: shopping cart / online store Date: Wed, 29 Aug 2001 17:43:31 -0400 The problem with using stored procedures

RE: shopping cart / online store

2001-08-29 Thread Dave Watts
The problem with using stored procedures is that if you decide to switch databases, you have to re-write all of them because almost all database vendors use different stored procedure code and structure. By writing the queries in the program itself (included as a query file or in the

RE: shopping cart / online store

2001-08-29 Thread Bud
On 8/29/01, Dan Phillips penned: I've always liked http://dansie.net/cart.html . It's a really simple Perl based cart that is pretty flexable. It can handle mom and pop type sites or really heavy e-commerce sites. Priced reasonably too. UGH! Dansie Cart is what finally what pushed me over the

RE: shopping cart / online store

2001-08-29 Thread Tyson Vanek
. Just my $0.02, -Tyson -Original Message- From: Dave Feltenberger [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 4:44 PM To: CF-Talk Subject: RE: shopping cart / online store The problem with using stored procedures is that if you decide to switch databases, you have to re

RE: shopping cart / online store

2001-08-29 Thread Dave Feltenberger
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 6:59 PM To: CF-Talk Subject: RE: shopping cart / online store That's certainly true, but in the case of most complex applications, you're not likely to switch the database on a whim

Re: shopping cart / online store

2001-08-29 Thread David Hannum \(Ohio University\)
PROTECTED] Sent: Wednesday, August 29, 2001 7:15 PM Subject: RE: shopping cart / online store On 8/29/01, Dan Phillips penned: I've always liked http://dansie.net/cart.html . It's a really simple Perl based cart that is pretty flexable. It can handle mom and pop type sites or really heavy e-commerce

RE: shopping cart / online store

2001-08-29 Thread Dave Watts
systems). In our case, we either create another layer of abstraction (e.g. EJBs, regular Java classes, etc.) or simply write the SQL in query files (assuming we're using ColdFusion, that is) - either way we almost completely do away with stored procedures in this case. Out of curiosity,