Re: Shopping Cart for subscription based purchases

2010-03-16 Thread Casey Dougall

On Tue, Mar 16, 2010 at 4:05 PM, Mary Jo Sminkey wrote:

>
> > I'm looking for a shopping cart that I can use to take order that are
> > subscription based on reoccurring purhases. I've looked at Google's
> > offering which is EXPERIMENTAL and Authorize.net's service.  Can
> > anyone recommend a service that easy to manage?  Both Google and
> > Authorize.net require working with XML data and I'm not quite sure how
> > to work with their integration. Any examples of how to work with that
> > would be awesome!
>
>
> If you are looking to mostly roll your own, here's a CFC for the AuthNet
> Recurring API:
>
> http://authorizenetrecurring.riaforge.org/
>
>
> Another option is to use a processor like Shift4 that uses tokens. This way
> you can just save the token and use that for each recharge, and easily
> handle cancellations/changes to the subscription solely on your end.
>
>
>
ABS Subscriptions at Authorize.net suck!

1. Notifications on payments are not reliable.
2. Expired Cards are not updated - Nice little cheat her, you can update a
credit card adding 2 years to the experation year and it works a fair amount
without customer interaction.
3. I know there was a 3rd but I'll stop here I can't remember the exact
reason why we switched to CIM processing but it's amazing... you just need
to handle your own recurring cycles and re-charge attempts based on decline
reasons.


It's a bit more work going CIM route, but then again I know 100% what's
valid in my system every day, what's in re-try mode for declines, what we
canceled because of re-try attempts that continue to decline etc.

Think that's similar to Shift4 they provide a Authorize.Net provides a
CustomerID and PaymentID because you can have multiple cards associated with
one profile. then you just select the CustomerId PaymentId and amount to
charge each month.

http://www.authorize.net/solutions/merchantsolutions/merchantservices/cim/


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331800
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Shopping Cart for subscription based purchases

2010-03-16 Thread Mary Jo Sminkey

> I'm looking for a shopping cart that I can use to take order that are 
> subscription based on reoccurring purhases. I've looked at Google's 
> offering which is EXPERIMENTAL and Authorize.net's service.  Can 
> anyone recommend a service that easy to manage?  Both Google and 
> Authorize.net require working with XML data and I'm not quite sure how 
> to work with their integration. Any examples of how to work with that 
> would be awesome!


If you are looking to mostly roll your own, here's a CFC for the AuthNet 
Recurring API:

http://authorizenetrecurring.riaforge.org/


Another option is to use a processor like Shift4 that uses tokens. This way you 
can just save the token and use that for each recharge, and easily handle 
cancellations/changes to the subscription solely on your end. 








~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331799
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Shopping Cart Delivery Charge

2008-05-15 Thread William Seiter
You can carry a variable through your cfloop/cfoutput query to hold the running 
total of the surcharges.
You can also hit the database with a new call for the sum, as other have 
mentioned.

You can also do:



William 



> Hi
> 
> I am building a shopping cart which calculates shipping charges, some 
> products also have an additional surcharge. Which is where i am stuck,
> 
> 
> The additional surcharge is stored within the product table.
> 
> What i thought was to loop through the products in the cart,  query 
> the products database to get the surcharge or surcharges, loop through 
> the query results for the individual surcharges. If this is the 
> correct way, how do i then add the surcharges up and account for when 
> the loop finishes.
> 
> Jason
> 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305376
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Delivery Charge

2008-05-15 Thread Jason Congerton
The surcharge is for each product, you can only buy one main product at at time 
(multiple purchases are treated as trade), you can also add multiple 
accessories (which have no delivery charge) Shopping cart items are stored in 
the session. I am exploring the sum route at the moment.

Thank you all for your response. 



> Do you already have a query with your shopping cart? If so, just use a 
> query-of-query (with SUM()). You don't mention if the surcharge is by 
> product or by each item, but you may need to also be sure to factor in 
> the product quantity. 
> 
> --- Mary Jo
> 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305375
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Delivery Charge

2008-05-15 Thread Mary Jo Sminkey
Do you already have a query with your shopping cart? If so, just use a 
query-of-query (with SUM()). You don't mention if the surcharge is by product 
or by each item, but you may need to also be sure to factor in the product 
quantity. 

--- Mary Jo



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305374
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Delivery Charge

2008-05-15 Thread Richard White
sorry i must be half asleep, you can use the sum function. so the full function 
would be

select sum(surcharge) from products
where productid in()
and surcharge <> ""



> i think the best way would be to do this is directly through sql in 
> one query. you can build a list with the ids of all the products the 
> customer has selected, then in 1 query...
> 
> select surcharge from products
> where productid in( list="yes" cfsqltype="cf_sql_varchar">)
> and surcharge <> ""
> 
> i am not sure but there must be a function in sql that adds up all the 
> values in a column - maybe someone else can suggest it - but this sql 
> statement then saves all the time that a loop would take and would 
> just return the results where those products you have entered have a 
> surcharge, then it is just a matter of adding it up. but as i said 
> there must be a sql function you can use within this same function to 
> do that
> 
> 
> > Hi
> > 
> > I am building a shopping cart which calculates shipping charges, 
> some 
> > products also have an additional surcharge. Which is where i am 
> stuck,
> > 
> > 
> > The additional surcharge is stored within the product table.
> > 
> > What i thought was to loop through the products in the cart,  query 
> 
> > the products database to get the surcharge or surcharges, loop 
> through 
> > the query results for the individual surcharges. If this is the 
> > correct way, how do i then add the surcharges up and account for 
> when 
> > the loop finishes.
> > 
> > Jason
> > 




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305371
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Delivery Charge

2008-05-15 Thread Richard White
if there isnt a function in sql that can do that then there is a function on 
cflib to get a columntotal

http://cflib.org/udf.cfm?ID=887

so you can run that one query then pass the resulting column into the 
columnTotal udf and thats it, you will have the total surcharge...

> i think the best way would be to do this is directly through sql in 
> one query. you can build a list with the ids of all the products the 
> customer has selected, then in 1 query...
> 
> select surcharge from products
> where productid in( list="yes" cfsqltype="cf_sql_varchar">)
> and surcharge <> ""
> 
> i am not sure but there must be a function in sql that adds up all the 
> values in a column - maybe someone else can suggest it - but this sql 
> statement then saves all the time that a loop would take and would 
> just return the results where those products you have entered have a 
> surcharge, then it is just a matter of adding it up. but as i said 
> there must be a sql function you can use within this same function to 
> do that
> 
> 
> > Hi
> > 
> > I am building a shopping cart which calculates shipping charges, 
> some 
> > products also have an additional surcharge. Which is where i am 
> stuck,
> > 
> > 
> > The additional surcharge is stored within the product table.
> > 
> > What i thought was to loop through the products in the cart,  query 
> 
> > the products database to get the surcharge or surcharges, loop 
> through 
> > the query results for the individual surcharges. If this is the 
> > correct way, how do i then add the surcharges up and account for 
> when 
> > the loop finishes.
> > 
> > Jason
> > 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305369
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Delivery Charge

2008-05-15 Thread Richard White
i think the best way would be to do this is directly through sql in one query. 
you can build a list with the ids of all the products the customer has 
selected, then in 1 query...

select surcharge from products
where productid in()
and surcharge <> ""

i am not sure but there must be a function in sql that adds up all the values 
in a column - maybe someone else can suggest it - but this sql statement then 
saves all the time that a loop would take and would just return the results 
where those products you have entered have a surcharge, then it is just a 
matter of adding it up. but as i said there must be a sql function you can use 
within this same function to do that


> Hi
> 
> I am building a shopping cart which calculates shipping charges, some 
> products also have an additional surcharge. Which is where i am stuck,
> 
> 
> The additional surcharge is stored within the product table.
> 
> What i thought was to loop through the products in the cart,  query 
> the products database to get the surcharge or surcharges, loop through 
> the query results for the individual surcharges. If this is the 
> correct way, how do i then add the surcharges up and account for when 
> the loop finishes.
> 
> Jason
> 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305368
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping cart with focus on inventory management? Or just inventory management?

2008-05-06 Thread Tom McNeer
+1 for SiteDirector (http://www.quilldesign.com).

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304788
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping cart with focus on inventory management? Or just inventory management?

2008-05-06 Thread Mary Jo Sminkey
>Hi.  I'm looking for a ColdFusion shopping cart that also has a good 
>feature set for managing inventory.  Really looking for an inventory 
>management system that also has a shopping cart.  Or actually it might 
>not even *have* to have a shopping cart, if you know of a good CF 
>inventory management system, please post it.

My product CFWebstore does have a pretty comprehensive set of inventory 
management features as well, so you might want to take a look at it. I have a 
fair number of customers that also use it in conjunction with Quickbooks (using 
a 3rd party product to handle imports). It kind of depends on exactly what 
features you need which approach works best. 



Mary Jo Sminkey
Author of CFWebstore, ColdFusion Ecommerce
http://www.cfwebstore.com



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304786
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping cart with focus on inventory management? Or just inventory management?

2008-05-05 Thread Jake Churchill
I was happy with SiteDirector the one time I used it.

Jake Churchill
CF Webtools
11204 Davenport, Ste. 100
Omaha, NE  68154
http://www.cfwebtools.com
402-408-3733 x103



Ryan Stille wrote:
> Hi.  I'm looking for a ColdFusion shopping cart that also has a good 
> feature set for managing inventory.  Really looking for an inventory 
> management system that also has a shopping cart.  Or actually it might 
> not even *have* to have a shopping cart, if you know of a good CF 
> inventory management system, please post it.
>
> Thanks,
> -Ryan
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304749
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-09 Thread Tana Adams
The main issue 
> people have with it these days (and typically the reason I get from 
> people that switch to my product) is that it no longer is really a 
> ColdFusion application, it merely uses ColdFusion as the front-end to 
> the underlying Java code. 

Ok, I wondered about that after reading through their site.  Now it makes 
sense.  Yes, that would most likely be a problem for me.  Thanks so much! 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296224
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-08 Thread Mary Jo Sminkey
> Someone also mentioned another cart to me today called AbleCommerce.  
> I hadn't come across that one yet -- has anyone ever had experience 
> with it?

Well, I can only briefly comment as it's a competitor to my product and it's 
been awhile since I had any direct access to a copy. But it's been around for 
awhile, as it was the first real ecommerce platform for ColdFusion and has a 
large, active community still. The main issue people have with it these days 
(and typically the reason I get from people that switch to my product) is that 
it no longer is really a ColdFusion application, it merely uses ColdFusion as 
the front-end to the underlying Java code. So it's considerably harder to 
modify than most of the other products listed here (assuming you are a CF 
developer and not a Java developer). You'd certainly want to make sure that you 
won't need to add or change any core functions to determine how much of an 
issue this is...which is not a bad assessment to do in any case prior to 
purchase to know how well any particular product meets your needs. 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296215
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-08 Thread Tana Adams
Thank you all for your posts...most helpful!

Someone also mentioned another cart to me today called AbleCommerce.  I hadn't 
come across that one yet -- has anyone ever had experience with it?

Thanks again!

Tana 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296180
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread C. Hatton Humphrey
> >For the QuickBooks integration, that requires a product called T-Hub
> >by Atandra along with some custom coding on your part to build the
> >interface.  If you want to email me off-list I can talk more to that.
>
> Hey Hatton, I'd be interested in hearing what you did with T-Hub.

T-Hub acts as an SOAP/XML intermediary between the Quickbooks API and
any web interface.  In short, it handles 4 basic transaction types
spanning 3 "Levels":

Level 1:
Order Export - Sends a basic request asking for orders.  The store has
to return an XML structure that contains ALL information about the
order including customer details (bill and ship to), payment details
(method, discounts, gift certificates, extra charges), and all product
details.  This level of integration can be done with any store that
will dump said information in a CSV file OR can be done via the XML
method provided certification is attained (see note below).

Level 2:
Order Payment Status Update - Since T-Hub monitors Quickbooks, as soon
as a payment is made on an invoice the system can be triggered to
update the payment status on the website.  This happens via a SOAP
request where T-Hub sends a packet that includes the order number and
other specifics.  The web store has to acknowledge receipt of the
data.  It must be certified by Atandra.

Order Shipment Status Update - Same as Payment, only with shipping information.

Level 3:
Product Inventory/Price Import - T-Hub collects the information about
the products in the QB database and sends them via XML to the web
store.  The store must be able to dynamically add product,
manufacturers, categories and update price and inventory.
Certification is needed for this step.

What is this "certification"?  Atandra will certify that a store
software package works with T-Hub for a fee.  We have a client that
needs only Level 3, but that fee is $750.  We have passed that cost on
to the client and are working on a client specific version of the
integration code at this time.  We have two other clients that are
interested in the rest of the integration and are planning on building
out complete integration to the T-Hub standards as soon as they commit
to the quote.  Certification provides a few different things.  The
main one being that they list packages that have been certified.

It's quite the interesting business model.  They built this tool to
interface between QB and web... and if a web package wants to be
"okayed" to interface with T-Hub you have to pay THEM money to test
YOUR code.

Hatton

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296091
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Mary Jo Sminkey
>For the QuickBooks integration, that requires a product called T-Hub
>by Atandra along with some custom coding on your part to build the
>interface.  If you want to email me off-list I can talk more to that.

Hey Hatton, I'd be interested in hearing what you did with T-Hub. Obviously I 
do get asked about Quickbooks integration fairly frequently, but there's so 
many good 3rd party products out there that specialize in this, it just makes 
more sense to let them handle it using a order export from the store versus my 
trying to constantly stay updated with what Intuit does (hard enough keeping up 
with PayPal, UPS, FedEx, AuthNet and all the other payment gateways, etc.!) 
There's a couple others I usually recommend but always interested to hear about 
others people might be using.  

--- Mary Jo


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296090
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread C. Hatton Humphrey
+6 for CFWebStore - that's how many installations we have going right
now, with a few more coming down the pike soon.

Pros:
* It's fusebox based.
* It's got solid documentation
* It's completely skinnable and modifyable
* It has everything you're talking about except one - Quickbooks

For the QuickBooks integration, that requires a product called T-Hub
by Atandra along with some custom coding on your part to build the
interface.  If you want to email me off-list I can talk more to that.

Definitely worth the cost!

Hatton

On Jan 7, 2008 8:31 PM, Mary Jo Sminkey <[EMAIL PROTECTED]> wrote:
> > We're looking for something
> > already existing that can track inventory, accept gift
> > certificates/discounts, PayPal, (possibly with an extention to tie
> > into Quickbooks) to name a few.  I think the closest products to what
> > we want would be similar to ZenCart or ProductCart.  Does anyone have
> > any ideas for me?
>
> Be sure to check out CFWebstore as well (www.cfwebstore.com). It can handle 
> these kinds of things (and much more!) and has very high ratings from users 
> on the Adobe Exchange, Hotscripts, etc. Feel free to email me directly if you 
> have specific questions you'd like addressed. We do have an active 
> peer-to-peer user group where you can direct questions as well.
>
> ---
> Mary Jo Sminkey
> [EMAIL PROTECTED]
> http://www.cfwebstore.com
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296089
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Mary Jo Sminkey
> We're looking for something 
> already existing that can track inventory, accept gift 
> certificates/discounts, PayPal, (possibly with an extention to tie 
> into Quickbooks) to name a few.  I think the closest products to what 
> we want would be similar to ZenCart or ProductCart.  Does anyone have 
> any ideas for me?

Be sure to check out CFWebstore as well (www.cfwebstore.com). It can handle 
these kinds of things (and much more!) and has very high ratings from users on 
the Adobe Exchange, Hotscripts, etc. Feel free to email me directly if you have 
specific questions you'd like addressed. We do have an active peer-to-peer user 
group where you can direct questions as well. 

---
Mary Jo Sminkey
[EMAIL PROTECTED]
http://www.cfwebstore.com



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296085
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Andrew Spear
I second SiteDirector.  I've used it quite a bit over the last 8 years or so

> Check out SiteDirector by QuillDesign (www.quilldesign.com).  I've 
> used it several times and found it to be a nice commerce system. 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296084
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Tana Adams
> Check out SiteDirector by QuillDesign (www.quilldesign.com).  I've 
> used it several times and found it to be a nice commerce system. 

Thank you, Brian.  I'll check that further.  I appreciate your suggestion.

Tana


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296078
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Tana Adams
>Dana,
>Don't you have a shopping cart app?
>
>Bruce
>
>On Jan 7, 2008 2:17 PM, Tana Adams <[EMAIL PROTECTED]> wrote:

Yes we do but it's WebDNA/WebCatalog and that's no longer being supported.

Tana 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296077
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Brian K
Check out SiteDirector by QuillDesign (www.quilldesign.com).  I've used it 
several times and found it to be a nice commerce system. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296075
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Recommendation?

2008-01-07 Thread Bruce Sorge
Dana,
Don't you have a shopping cart app?

Bruce

On Jan 7, 2008 2:17 PM, Tana Adams <[EMAIL PROTECTED]> wrote:

> Hi,
>
> We're looking to convert our current e-commerce site over to ColdFusion
> but are having a tough time locating a fairly robust shopping cart that will
> work with it. We're looking for something already existing that can track
> inventory, accept gift certificates/discounts, PayPal, (possibly with an
> extention to tie into Quickbooks) to name a few.  I think the closest
> products to what we want would be similar to ZenCart or ProductCart.  Does
> anyone have any ideas for me?
>
> Thank you!
>
> Tana
>
>


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296074
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart Theory

2007-09-17 Thread Les Mizzell
> What would the rest of you consider the optimal way to store items 
> before checking out?

One request that the client made was that you could have an account - 
but that it be possible to shot/checkout *without* and account as well.

So, there's a "sign in to retrieve your data" before you checkout, or 
you can just checkout without signing in. This requires a temporary id 
with temporary storage until we know who the actual shopper is.

If you have an account, then a cookie is set (when allowed) and the site 
knows who you are whenever you return anyway - if you selected the 
"remember me" option at some point...

After some thought - a temporary table to hold items plus a session ID 
to keep up with the customer, *AND* set a cookie with the same data just 
to be sure. If one craps out, there other exist as a backup. Overkill? 
Probably not...

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288590
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Shopping Cart Theory

2007-09-17 Thread Billy Cox
I use CF Webstore which stores shopping cart data in a database table. I
think this is more customer-friendly since average mortals don't want to be
troubled by session expiration.




-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 17, 2007 9:41 AM
To: CF-Talk
Subject: Shopping Cart Theory


I'm building a small shopping cart for a client - seems quicker to go 
from scratch than try to wrestle something already built back into our 
specific needs. Although I've done a couple of these, I was just 
wondering...

What would the rest of you consider the optimal way to store items 
before checking out?

Session var with an array?
A temporary "holding database" for the items with just a UUID Session 
Var to keep up with the owner?

I'm leaning towards the array in a session var - but this is on a shared 
server and I've seen sessions time out unexpectedly before, which 
wouldn't be good ("where'd all my stuff go???").

Anybody else?



~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288582
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Theory

2007-09-17 Thread Bruce Sorge
I have done both. It really depends on what the client wants and the hosting
environment. I did one where the items were held in a temporary database
table with a UUID simply because the client wanted to make sure that the
customer could come back to their items if they either changed their minds
later on or if something happened like their computer shut down
unexpectedly. I put a time/date stamp on the cart and would purge the cart
after 5 days.
We also set it up so that if a registered (i.e. logged in customer) was
shopping and they did not finalize their purchase, it would kick an email to
them saying that they still had items in their cart and that they were going
to be deleted in x days, and gave them a link to go back to the site and
decide if they wanted to buy the items.

I personally favor the holding of the items myself for the reason you said
below, if something happens, you don't want the customer to have to go back
and put all their items back into the cart. That would be a fast way to get
me away from your site.

Bruce

On 9/17/07, Les Mizzell  wrote:
>
> I'm building a small shopping cart for a client - seems quicker to go
> from scratch than try to wrestle something already built back into our
> specific needs. Although I've done a couple of these, I was just
> wondering...
>
> What would the rest of you consider the optimal way to store items
> before checking out?
>
> Session var with an array?
> A temporary "holding database" for the items with just a UUID Session
> Var to keep up with the owner?
>
> I'm leaning towards the array in a session var - but this is on a shared
> server and I've seen sessions time out unexpectedly before, which
> wouldn't be good ("where'd all my stuff go???").
>
> Anybody else?
>
>


~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288578
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart Theory

2007-09-17 Thread Christopher Jordan
I'm for storing them in a table. I suppose that if you wanted to allow
"guest" shopping, you could assign a temporary user id (some UUID) and store
it on their machine as a cookie, and then use that as a key in the "cart"
table. That's just a thought off the top of my head, so there could be some
issues that I've not thought about, but it seems like a solid idea.

Chris


On 9/17/07, ColdFusion <[EMAIL PROTECTED]> wrote:
>
> Personally,  I have them become a user before check out and then have the
> items in a shopping cart table based on their user id.
> That way it saves their cart for later purchase if needed. Else they can
> remove the items.
>
>
>
> -Original Message-
> From: Les Mizzell [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 17, 2007 10:41 AM
> To: CF-Talk
> Subject: Shopping Cart Theory
>
> I'm building a small shopping cart for a client - seems quicker to go from
> scratch than try to wrestle something already built back into our specific
> needs. Although I've done a couple of these, I was just wondering...
>
> What would the rest of you consider the optimal way to store items before
> checking out?
>
> Session var with an array?
> A temporary "holding database" for the items with just a UUID Session Var
> to
> keep up with the owner?
>
> I'm leaning towards the array in a session var - but this is on a shared
> server and I've seen sessions time out unexpectedly before, which wouldn't
> be good ("where'd all my stuff go???").
>
> Anybody else?
>
>
>
> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288577
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Shopping Cart Theory

2007-09-17 Thread ColdFusion
Personally,  I have them become a user before check out and then have the
items in a shopping cart table based on their user id.
That way it saves their cart for later purchase if needed. Else they can
remove the items.



-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 17, 2007 10:41 AM
To: CF-Talk
Subject: Shopping Cart Theory

I'm building a small shopping cart for a client - seems quicker to go from
scratch than try to wrestle something already built back into our specific
needs. Although I've done a couple of these, I was just wondering...

What would the rest of you consider the optimal way to store items before
checking out?

Session var with an array?
A temporary "holding database" for the items with just a UUID Session Var to
keep up with the owner?

I'm leaning towards the array in a session var - but this is on a shared
server and I've seen sessions time out unexpectedly before, which wouldn't
be good ("where'd all my stuff go???").

Anybody else?



~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288575
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Shopping cart questions?

2006-12-02 Thread Jenny Gavin-Wear
You don't even need to run a scheduled task to do this, just put it in the
application.cfm.

Storing the cart in a db table is the way to go, I use the CFID, too.


-Original Message-
From: Patrick McElhaney [mailto:[EMAIL PROTECTED]
Sent: 28 November 2006 02:39
To: CF-Talk
Subject: Re: Shopping cart questions?


On 11/27/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> Well, that is what I was thinking. The other issue that I have as far as
> using the database storage is image uploads. I plan on allowing a user to
> upload as many as 10 images per ad, and was wondering how to handle the
> image upload if they end up not checking out. Should I just run a
scheduled
> task every so often and delete the images off the server based on the info
> in the tempCart table?

I would run a scheduled task to delete expired carts (in the tempCart
table) and their associated images at the same time.

Patrick

--
Patrick McElhaney
704.560.9117



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262583
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping cart?

2006-12-01 Thread Mary Jo Sminkey
>I had a customer that was constantly 
>changing prices, and if I only did joins to the product table to get 
>price, things would get ugly.  You could optionally maintain a 
>"price_history" table or something, but that overcomplicates it if you 
>ask me.

Doug covered the basics real well here, I'll just add that another good reason 
for not joining the product table is so you can delete products no longer being 
used, while maintaining your order history. 

--- Mary Jo

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262572
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping cart?

2006-12-01 Thread Rick Root
Doug, here's what I've always done.

User visits site - CF creates a shopping cart key (createUUID()) and 
stores it in the session scope, as a cookie, or puts it into a very 
simple CARTS table.

My cart_contents table looks like this (pardon the caps, I still use 
caps for SQL)

CREATE TABLE CART_CONTENTS (
   CART_KEY char(35) NOT NULL default '',
   PRODUCT_ID int(10) unsigned NOT NULL default '0',
   OPTION_ID int(10) unsigned NOT NULL default '0',
   QUANTITY int(10) unsigned NOT NULL default '0',
   ACCESS_TIME datetime NOT NULL default '-00-00 00:00:00',
   PRIMARY KEY  (CART_KEY,PRODUCT_ID,OPTION_ID)
) TYPE=MyISAM;

This setup allows me to have multiple SIZES/COLORS of each product in 
the cart, and keep them separate.  The "access_time" field allows me to 
delete old cart contents.

When the user checks out, an ORDER is created in the ORDERS table, and 
the I *COPY* the cart_contents items into an ORDER_CONTENTS table with 
the same structure, except the order_contents table also contains the 
CURRENT price of the product.  Never rely on your products table for 
historical price information.  I had a customer that was constantly 
changing prices, and if I only did joins to the product table to get 
price, things would get ugly.  You could optionally maintain a 
"price_history" table or something, but that overcomplicates it if you 
ask me.

After checkout is complete, the cart_key stored in the session scope is 
deleted... if they do more shopping, an ew cart_key gets created.

Rick


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:262568
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping cart questions?

2006-11-27 Thread Patrick McElhaney
On 11/27/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> Well, that is what I was thinking. The other issue that I have as far as
> using the database storage is image uploads. I plan on allowing a user to
> upload as many as 10 images per ad, and was wondering how to handle the
> image upload if they end up not checking out. Should I just run a scheduled
> task every so often and delete the images off the server based on the info
> in the tempCart table?

I would run a scheduled task to delete expired carts (in the tempCart
table) and their associated images at the same time.

Patrick

-- 
Patrick McElhaney
704.560.9117

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261806
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping cart questions?

2006-11-27 Thread Doug Brown
Well, that is what I was thinking. The other issue that I have as far as
using the database storage is image uploads. I plan on allowing a user to
upload as many as 10 images per ad, and was wondering how to handle the
image upload if they end up not checking out. Should I just run a scheduled
task every so often and delete the images off the server based on the info
in the tempCart table?


Doug

- Original Message - 
From: "Snake" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, November 27, 2006 7:05 PM
Subject: RE: Shopping cart questions?


> If u store the cart in the database, they can at least come back later and
> complete the order.
>
> -Original Message-
> From: Doug Brown [mailto:[EMAIL PROTECTED]
> Sent: 28 November 2006 00:52
> To: CF-Talk
> Subject: Shopping cart questions?
>
> I have a classifieds site that I am needing to design a shopping cart for.
> What I am looking to do is let the user create their ad and then once they
> are done and hit continue, they are taken to a page where they can choose
to
> check out, or they can create another ad. I am wondering what the best way
> to store this information would be. I may in the future use a clustered
> enviornment and therfore do not think keeping the cart contents in the
> session scope would be a great idea. What would be the best way? Database?
> All input is appreciated.
>
>
>
> Doug B.
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261804
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Shopping cart questions?

2006-11-27 Thread Snake
If u store the cart in the database, they can at least come back later and
complete the order. 

-Original Message-
From: Doug Brown [mailto:[EMAIL PROTECTED] 
Sent: 28 November 2006 00:52
To: CF-Talk
Subject: Shopping cart questions?

I have a classifieds site that I am needing to design a shopping cart for.
What I am looking to do is let the user create their ad and then once they
are done and hit continue, they are taken to a page where they can choose to
check out, or they can create another ad. I am wondering what the best way
to store this information would be. I may in the future use a clustered
enviornment and therfore do not think keeping the cart contents in the
session scope would be a great idea. What would be the best way? Database?
All input is appreciated.



Doug B.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261801
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping cart questions?

2006-11-27 Thread Patrick McElhaney
You could serialize the cart (using WDDX or some other method) and put
it in the client scope.  I also think just using a database is a good
option.

Using a database would allow you to easily see your customers' carts,
which might be useful from a support perspective. Also, it would allow
a customer to put ads in his cart and log in later from another
computer to pick up where he left off.

Patrick

On 11/27/06, Doug Brown <[EMAIL PROTECTED]> wrote:
> I have a classifieds site that I am needing to design a shopping cart for. 
> What I am looking to do is let the user create their ad and then once they 
> are done and hit continue, they are taken to a page where they can choose to 
> check out, or they can create another ad. I am wondering what the best way to 
> store this information would be. I may in the future use a clustered 
> enviornment and therfore do not think keeping the cart contents in the 
> session scope would be a great idea. What would be the best way? Database? 
> All input is appreciated.
>
>
>
> Doug B.
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261800
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart

2006-08-21 Thread Will Tomlinson
> thanks for that, Will, sorted by putting adding a form validation and 
> restricted max characters in the input box.
> 
> What did you think of the Admin and overall features 
> list/functionality?

Haven't had time to go thru it much Jen. I'll look more later in the week .

Thanks,
Will

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250534
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart

2006-08-21 Thread mac jordan
On 8/21/06, Jenny Gavin-Wear <[EMAIL PROTECTED]> wrote:
>
>
>
> No mySQL version planned in the immediate future,
>
>
>
rules it out for us, then.  Unless you'd like to commission us to convert it
:)


-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250447
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Shopping Cart

2006-08-21 Thread Jenny Gavin-Wear
Hi Mac,

No mySQL version planned in the immediate future,

I would consider reasonable offers for the source code.

Jenny

-Original Message-
From: mac jordan [mailto:[EMAIL PROTECTED]
Sent: 21 August 2006 08:34
To: CF-Talk
Subject: Re: Shopping Cart


On 8/19/06, Jenny Gavin-Wear <[EMAIL PROTECTED]> wrote:
>
> I have been wondering whether to post this link for a while now, so here
> goes.
>
> http://www.fasttrackonline.co.uk/shopping-cart-features.cfm
>
> Constructive feedback would be appreciated.
>
> If anyone is interested in selling this on, please contact me off the
> list.
>

are you supplying this with source code?  Do you plan to do a mySQL version?


-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.405 / Virus Database: 268.11.3/423 - Release Date: 18/08/2006
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250441
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Shopping Cart

2006-08-21 Thread Jenny Gavin-Wear
thanks for that, Will, sorted by putting adding a form validation and 
restricted max characters in the input box.

What did you think of the Admin and overall features list/functionality?



-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED]
Sent: 21 August 2006 04:25
To: CF-Talk
Subject: Re: Shopping Cart


>thanks Will, was installing a new feature, fixed if you'd like to take a 
>look...
>

The only thing I see is you spelled colors wrong. hahaha

Just pickin' on ya. Took a peruse around but gotta hit the bed. I'll look more 
this week tho. 

It's lookin good, but I get an error if I enter "a" into the qty field when you 
add to basket. 

SQLINSERT INTO dbo.tbl_trolley (cfid, stockID, colours, sizes, 
quantity, delivery, weight) VALUES ( '115081' , 434 , 'Blue' , 'Large' , a , 
1.5000 , 0 )

And it looks like you needta cfqueryparam those things. 

I'll look more later,
Will



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250440
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart

2006-08-21 Thread Robertson-Ravo, Neil (RX)
Yep, and there is even more confusion when a load balancer etc comes into
play as it is that IP which you will see, not the web server.







"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: mac jordan
To: CF-Talk
Sent: Mon Aug 21 08:34:00 2006
Subject: Re: Shopping Cart

On 8/19/06, Jenny Gavin-Wear <[EMAIL PROTECTED]> wrote:
>
> I have been wondering whether to post this link for a while now, so here
> goes.
>
> http://www.fasttrackonline.co.uk/shopping-cart-features.cfm
>
> Constructive feedback would be appreciated.
>
> If anyone is interested in selling this on, please contact me off the
> list.
>

are you supplying this with source code?  Do you plan to do a mySQL version?


-- 

mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250433
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart

2006-08-21 Thread mac jordan
On 8/19/06, Jenny Gavin-Wear <[EMAIL PROTECTED]> wrote:
>
> I have been wondering whether to post this link for a while now, so here
> goes.
>
> http://www.fasttrackonline.co.uk/shopping-cart-features.cfm
>
> Constructive feedback would be appreciated.
>
> If anyone is interested in selling this on, please contact me off the
> list.
>

are you supplying this with source code?  Do you plan to do a mySQL version?


-- 
mac jordan
home: www.kestrel.org
work: www.webhorus.net
them: www.jordan-cats.org


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250431
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart

2006-08-20 Thread Will Tomlinson
>thanks Will, was installing a new feature, fixed if you'd like to take a 
>look...
>

And it also poops out if you enter a long quantity adding to basket. 

 The error occurred in 
C:\Inetpub\sc.fasttrackonline.co.uk\process\trolley-add.cfm: line 68

66 :   
67 :   NULL
68 :   
69 :   )
70 :   

SQLINSERT INTO dbo.tbl_trolley (cfid, stockID, colours, sizes, 
quantity, delivery, weight) VALUES ( '115081' , 434 , 'Blue' , 'Large' , 
999 , 1.5000 , 0 )
DATASOURCEsc 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250430
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Shopping Cart

2006-08-20 Thread Will Tomlinson
>thanks Will, was installing a new feature, fixed if you'd like to take a 
>look...
>

The only thing I see is you spelled colors wrong. hahaha

Just pickin' on ya. Took a peruse around but gotta hit the bed. I'll look more 
this week tho. 

It's lookin good, but I get an error if I enter "a" into the qty field when you 
add to basket. 

SQLINSERT INTO dbo.tbl_trolley (cfid, stockID, colours, sizes, 
quantity, delivery, weight) VALUES ( '115081' , 434 , 'Blue' , 'Large' , a , 
1.5000 , 0 )

And it looks like you needta cfqueryparam those things. 

I'll look more later,
Will

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250429
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Shopping Cart

2006-08-20 Thread Jenny Gavin-Wear
thanks Will, was installing a new feature, fixed if you'd like to take a look...



-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED]
Sent: 20 August 2006 13:34
To: CF-Talk
Subject: Re: Shopping Cart


>I have been wondering whether to post this link for a while now, so here goes.
>
>http://www.fasttrackonline.co.uk/shopping-cart-features.cfm
>
>Constructive feedback would be appreciated.
>

Gettin an error Jenny. 
 Element MM_USERAUTHORIZATION is undefined in SESSION.
 
The error occurred in C:\Inetpub\sc.fasttrackonline.co.uk\login.cfm: line 81

79 :  
80 :
81 :
82 :  Admin   
83 :


Will



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250421
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Shopping Cart

2006-08-20 Thread Will Tomlinson
>I have been wondering whether to post this link for a while now, so here goes.
>
>http://www.fasttrackonline.co.uk/shopping-cart-features.cfm
>
>Constructive feedback would be appreciated.
>

Gettin an error Jenny. 
 Element MM_USERAUTHORIZATION is undefined in SESSION.
 
The error occurred in C:\Inetpub\sc.fasttrackonline.co.uk\login.cfm: line 81

79 :  
80 :
81 :
82 :  Admin   
83 :


Will

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250398
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: shopping cart integration

2006-07-17 Thread Stas Newdel
Hi Mary,

We are using your product and the integration options work well for us.

I was wondering if anyone has an opinion on a related subject.

As an e-commerce merchant we don't just accept payments. There are  
refunds, exchanges, fraudulent transactions, etc. I've been extremely  
dissatisfied with options available through Verisign Payment manager.  
It lets you do things easily enough, but the interface is clunky and  
slow. I can't even look up transactions based on a persons name, I  
have to download a CSV report and then search through it. So, are  
there any other more flexible payment gateways?

On Jul 15, 2006, at 9:24 AM, Mary Jo Sminkey wrote:

>> Might someone out there point me (a simpleton) in a direction to  
>> gain a
>> little more understanding about shopping carts and details about  
>> connecting
>> back end code to all the appropriate financial pieces please?
>
> In terms of connecting to the bank, you generally use an online  
> payment gateway such as Authorize.Net or Verisign PayFlow which  
> handles the processing of the credit card and then depositing the  
> funds through your merchant account. In terms of how to do this, it  
> varies totally depending on the service that you use. AuthNet is  
> the easiest I am familiar with, you just use a CFHTTP post and then  
> process the return information to see if the transaction failed or  
> was approved. Others like Linkpoint and Verisign require installing  
> components on the server but provide CFX tags to make CF  
> integration easier. Others may be more difficult, such as  
> Cybersource which requires the use of a COM object. And there are  
> those like PayPal and 2Checkout where the customer leaves your site  
> altogether and you have to determine whether to save the order  
> before or after the customer leaves your site and how to deal with  
> uncompleted orders. So you really need to decide which service you  
> are using before looking for specific information on how to  
> integrate it.
>
> 
> Mary Jo Sminkey
> http://www.cfwebstore.com
> CFWebstore, ColdFusion E-commerce



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246793
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: shopping cart integration

2006-07-16 Thread Will Tomlinson
This is  a test. 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246705
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: shopping cart integration

2006-07-15 Thread Rick Faircloth
Thanks for the info, Mary Jo...

Rick


-Original Message-
From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] 
Sent: Saturday, July 15, 2006 6:15 PM
To: CF-Talk
Subject: Re: shopping cart integration

>You might want to check out PayPal's Website Payments Pro. It's a 
>fairly new offering from PayPal and it may do what you want. Customers 
>don't leave your web site. From what I can tell, it doesn't require you 
>to have a credit card merchant account or to have to use a separate 
>payment gateway system like Authorizenet.

While it's true that the Direct Pay portion of Payments Pro does not leave
your website, PayPal does require that you also use Express Checkout which
does take the customer to their site if you sign up for Payments Pro.
Basically, they don't want to just process payments, they want that free
advertising where your website has a "easy payments through PayPal" button
on it. Now, I'm sure many individual sites that use Payments Pro just ignore
that requirement and use Direct Pay only but they are in violation of the
licensing by doing so. Not sure how well PayPal polices this part of the
policy, and I can say that the Express Checkout is a real pain to do. It
requires no less than 3 separate SOAP transactions to their server,
sometimes more, and it sends the customer over to their site and then back
to yours. And hides their billing information so you're out of luck if you
intend to save this information. I would say PayPal is one of the harder
methods to get working *if* you want the customer to complete orders on your
site. It's fine if you are happy with just a simple button on your site that
sends them over to PayPal to complete the transaction and doesn't need to do
any more. But to fully integrate PayPal into a true ecommerce site is pretty
complicated and guaranteed to cause a fair amount of hair-pulling. ;-) 



Mary Jo Sminkey
http://www.cfwebstore.com
CFWebstore, ColdFusion E-commerce



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246671
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: shopping cart integration

2006-07-15 Thread Mary Jo Sminkey
>You might want to check out PayPal's Website Payments Pro. It's a fairly 
>new offering from PayPal and it may do what you want. Customers don't 
>leave your web site. From what I can tell, it doesn't require you to 
>have a credit card merchant account or to have to use a separate payment 
>gateway system like Authorizenet.

While it's true that the Direct Pay portion of Payments Pro does not leave your 
website, PayPal does require that you also use Express Checkout which does take 
the customer to their site if you sign up for Payments Pro. Basically, they 
don't want to just process payments, they want that free advertising where your 
website has a "easy payments through PayPal" button on it. Now, I'm sure many 
individual sites that use Payments Pro just ignore that requirement and use 
Direct Pay only but they are in violation of the licensing by doing so. Not 
sure how well PayPal polices this part of the policy, and I can say that the 
Express Checkout is a real pain to do. It requires no less than 3 separate SOAP 
transactions to their server, sometimes more, and it sends the customer over to 
their site and then back to yours. And hides their billing information so 
you're out of luck if you intend to save this information. I would say PayPal 
is one of the harder methods to get working *if* you want the customer to 
complete orders on your site. It's fine if you are happy with just a simple 
button on your site that sends them over to PayPal to complete the transaction 
and doesn't need to do any more. But to fully integrate PayPal into a true 
ecommerce site is pretty complicated and guaranteed to cause a fair amount of 
hair-pulling. ;-) 



Mary Jo Sminkey
http://www.cfwebstore.com
CFWebstore, ColdFusion E-commerce

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246667
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: shopping cart integration

2006-07-15 Thread Bob Imperial
Thank you Mary Jo  That answers my main question about the connecting
the financial end and clarifies things for me.
Cart>gateway>merchantAcc 

And thank you all for your responses ... I knew I wasn't the only one
working on the weekend ;)

Bob 

-Original Message-
From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] 
Sent: Saturday, July 15, 2006 12:24 PM
To: CF-Talk
Subject: Re: shopping cart integration

>Might someone out there point me (a simpleton) in a direction to gain a 
>little more understanding about shopping carts and details about 
>connecting back end code to all the appropriate financial pieces please?

In terms of connecting to the bank, you generally use an online payment
gateway such as Authorize.Net or Verisign PayFlow which handles the
processing of the credit card and then depositing the funds through your
merchant account. In terms of how to do this, it varies totally depending on
the service that you use. AuthNet is the easiest I am familiar with, you
just use a CFHTTP post and then process the return information to see if the
transaction failed or was approved. Others like Linkpoint and Verisign
require installing components on the server but provide CFX tags to make CF
integration easier. Others may be more difficult, such as Cybersource which
requires the use of a COM object. And there are those like PayPal and
2Checkout where the customer leaves your site altogether and you have to
determine whether to save the order before or after the customer leaves your
site and how to deal with uncompleted orders. So you really need to decide
which service you are using before looki


Mary Jo Sminkey
http://www.cfwebstore.com
CFWebstore, ColdFusion E-commerce



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:24
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: shopping cart integration

2006-07-15 Thread Chris Montgomery
Rick Faircloth said the following on 7/15/2006 1:33 PM:
> Sounds like this might work ok for my client who wants to have
> renters make monthly rental payments, but a more robust system might
> be called for with a regular shopping cart. It would be a pain to
> have to leave a site to check a shopping cart, then go back to the 
> "merchant" site.
> 
> It's too bad there's not a way to use a PayPal shopping cart
> integrated into my own pages...

You might want to check out PayPal's Website Payments Pro. It's a fairly 
new offering from PayPal and it may do what you want. Customers don't 
leave your web site. From what I can tell, it doesn't require you to 
have a credit card merchant account or to have to use a separate payment 
gateway system like Authorizenet. All for $20/month (which is quite a 
bit cheaper than paying monthly fees for your credit card merchant 
account and payment processor). Note: I haven't used it yet, but it 
looks promising for those wanting to integrate a credit card processing 
system into their shopping cart and get up and running quickly.

https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside

There's also a new solution from Google, Google Checkout, that offers an 
API for integrating it into an e-commerce site:

https://checkout.google.com/sell?promo=sbhp

Again, I have no experience with this and only heard about it recently.

Hope that helps.

-- 
Chris Montgomery
Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management
210-490-2415 (office), 210-232-2790 (mobile)

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246665
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: shopping cart integration

2006-07-15 Thread Rick Faircloth
Sounds like this might work ok for my client who wants to have renters make
monthly
rental payments, but a more robust system might be called for with a regular
shopping cart.
It would be a pain to have to leave a site to check a shopping cart, then go
back to the
"merchant" site.

It's too bad there's not a way to use a PayPal shopping cart integrated into
 my own pages...

Rick

-Original Message-
From: Casey Dougall [mailto:[EMAIL PROTECTED] 
Sent: Saturday, July 15, 2006 1:32 PM
To: CF-Talk
Subject: Re: shopping cart integration

paypal sends the data back in the URL if the order is completed. You can set
the "return" url and include some product specific information along with
the transaction ID but I don't think this is a bulletproof operation. you
still rely on url scope variables to complete an order which is kinda
choppy. at least you can verify this later by logging into paypal to check
the products in the shopping cart.

 Paypal is very easy to integrate though. you can even send multiple
products to the cart at the same time so they only have to leave your
website once to perform checkout.


Casey

On 7/15/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
> So, I guess PayPal would be easier to use than, say, Authorize.net or 
> VeriSign Pay Flow, but PayPal presents other problems because a user 
> goes off-site and saving order info (whether or not the transaction 
> was completed?) is a problem?
>
> I'm considering using PayPal for a client's site to process rental 
> payments, but you've opened up some issues that I need to clarify...
>
> Rick
>
>
> -Original Message-
> From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED]
> Sent: Saturday, July 15, 2006 12:24 PM
> To: CF-Talk
> Subject: Re: shopping cart integration
>
> >Might someone out there point me (a simpleton) in a direction to gain 
> >a little more understanding about shopping carts and details about 
> >connecting back end code to all the appropriate financial pieces please?
>
> In terms of connecting to the bank, you generally use an online 
> payment gateway such as Authorize.Net or Verisign PayFlow which 
> handles the processing of the credit card and then depositing the 
> funds through your merchant account. In terms of how to do this, it 
> varies totally depending on the service that you use. AuthNet is the 
> easiest I am familiar with, you just use a CFHTTP post and then 
> process the return information to see if the transaction failed or was 
> approved. Others like Linkpoint and Verisign require installing 
> components on the server but provide CFX tags to make CF integration 
> easier. Others may be more difficult, such as Cybersource which 
> requires the use of a COM object. And there are those like PayPal and 
> 2Checkout where the customer leaves your site altogether and you have 
> to determine whether to save the order before or after the customer 
> leaves your site and how to deal with uncompleted orders. So you 
> really need to decide which service you are using before looking for 
> specific information on how to integrate it.
>
> 
> Mary Jo Sminkey
> http://www.cfwebstore.com
> CFWebstore, ColdFusion E-commerce
>
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246663
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: shopping cart integration

2006-07-15 Thread Casey Dougall
paypal sends the data back in the URL if the order is completed. You can set
the "return" url and include some product specific information along with
the transaction ID but I don't think this is a bulletproof operation. you
still rely on url scope variables to complete an order which is kinda
choppy. at least you can verify this later by logging into paypal to check
the products in the shopping cart.

 Paypal is very easy to integrate though. you can even send multiple
products to the cart at the same time so they only have to leave your
website once to perform checkout.


Casey

On 7/15/06, Rick Faircloth <[EMAIL PROTECTED]> wrote:
>
> So, I guess PayPal would be easier to use than, say, Authorize.net
> or VeriSign Pay Flow, but PayPal presents other problems because
> a user goes off-site and saving order info (whether or not the transaction
> was completed?) is a problem?
>
> I'm considering using PayPal for a client's site to process rental
> payments,
> but you've opened up some issues that I need to clarify...
>
> Rick
>
>
> -Original Message-
> From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED]
> Sent: Saturday, July 15, 2006 12:24 PM
> To: CF-Talk
> Subject: Re: shopping cart integration
>
> >Might someone out there point me (a simpleton) in a direction to gain a
> >little more understanding about shopping carts and details about
> >connecting back end code to all the appropriate financial pieces please?
>
> In terms of connecting to the bank, you generally use an online payment
> gateway such as Authorize.Net or Verisign PayFlow which handles the
> processing of the credit card and then depositing the funds through your
> merchant account. In terms of how to do this, it varies totally depending
> on
> the service that you use. AuthNet is the easiest I am familiar with, you
> just use a CFHTTP post and then process the return information to see if
> the
> transaction failed or was approved. Others like Linkpoint and Verisign
> require installing components on the server but provide CFX tags to make
> CF
> integration easier. Others may be more difficult, such as Cybersource
> which
> requires the use of a COM object. And there are those like PayPal and
> 2Checkout where the customer leaves your site altogether and you have to
> determine whether to save the order before or after the customer leaves
> your
> site and how to deal with uncompleted orders. So you really need to decide
> which service you are using before looking for specific information on how
> to integrate it.
>
> 
> Mary Jo Sminkey
> http://www.cfwebstore.com
> CFWebstore, ColdFusion E-commerce
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246662
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: shopping cart integration

2006-07-15 Thread Rick Faircloth
So, I guess PayPal would be easier to use than, say, Authorize.net
or VeriSign Pay Flow, but PayPal presents other problems because
a user goes off-site and saving order info (whether or not the transaction
was completed?) is a problem?

I'm considering using PayPal for a client's site to process rental payments,
but you've opened up some issues that I need to clarify...

Rick


-Original Message-
From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] 
Sent: Saturday, July 15, 2006 12:24 PM
To: CF-Talk
Subject: Re: shopping cart integration

>Might someone out there point me (a simpleton) in a direction to gain a 
>little more understanding about shopping carts and details about 
>connecting back end code to all the appropriate financial pieces please?

In terms of connecting to the bank, you generally use an online payment
gateway such as Authorize.Net or Verisign PayFlow which handles the
processing of the credit card and then depositing the funds through your
merchant account. In terms of how to do this, it varies totally depending on
the service that you use. AuthNet is the easiest I am familiar with, you
just use a CFHTTP post and then process the return information to see if the
transaction failed or was approved. Others like Linkpoint and Verisign
require installing components on the server but provide CFX tags to make CF
integration easier. Others may be more difficult, such as Cybersource which
requires the use of a COM object. And there are those like PayPal and
2Checkout where the customer leaves your site altogether and you have to
determine whether to save the order before or after the customer leaves your
site and how to deal with uncompleted orders. So you really need to decide
which service you are using before looking for specific information on how
to integrate it. 


Mary Jo Sminkey
http://www.cfwebstore.com
CFWebstore, ColdFusion E-commerce



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246661
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: shopping cart integration

2006-07-15 Thread Mary Jo Sminkey
>Might someone out there point me (a simpleton) in a direction to gain a
>little more understanding about shopping carts and details about connecting
>back end code to all the appropriate financial pieces please? 

In terms of connecting to the bank, you generally use an online payment gateway 
such as Authorize.Net or Verisign PayFlow which handles the processing of the 
credit card and then depositing the funds through your merchant account. In 
terms of how to do this, it varies totally depending on the service that you 
use. AuthNet is the easiest I am familiar with, you just use a CFHTTP post and 
then process the return information to see if the transaction failed or was 
approved. Others like Linkpoint and Verisign require installing components on 
the server but provide CFX tags to make CF integration easier. Others may be 
more difficult, such as Cybersource which requires the use of a COM object. And 
there are those like PayPal and 2Checkout where the customer leaves your site 
altogether and you have to determine whether to save the order before or after 
the customer leaves your site and how to deal with uncompleted orders. So you 
really need to decide which service you are using before looking for specific 
information on how to integrate it. 


Mary Jo Sminkey
http://www.cfwebstore.com
CFWebstore, ColdFusion E-commerce

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246660
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: shopping cart integration

2006-07-15 Thread Larry Lyons
>Might someone out there point me (a simpleton) in a direction to gain a
>little more understanding about shopping carts and details about connecting
>back end code to all the appropriate financial pieces please? I have spent a
>little time digging around in the code for a CF cart app or two but am still
>a little hesitant to try to set one one up from A-Z. While I don't claim to
>be a cf programmer, I've been knee deep if cf stuff off and on for the last
>few years, mostly simple stuff, some large scale applications with and
>without a clear methodology. I would consider myself more a gui guy with
>aspirations of hacking up perfectly good code ;) I Any direction, thoughts,
>ideas on where to start with learning how to actually connect the code to
>the bank would be much appreciated. TIA
> 
>Bob ... just another old dog trying to learn new tricks.


You might want to try reading Ben Forta's CFWACK book it has an excellent set 
of chapters on developin shopping carts. For more information see 
http://www.antiwrap.com/?1036.

hth,
larry

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246659
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: shopping cart suggestions

2006-05-05 Thread Crow T. Robot
It really only costs $250 for as many sites as I can develop?  I like 
the idea of the store only consisting of three include files.  What I'm 
trying to get at here is to make it so my more junior developers can 
easily wrap their heads around this and have the ability to make changes 
if need be without having to learn any complicated framework.

Personally, I like CFWebStore, but it is just too much for our 
less-experienced people to handle.  I'm learning to hate FuseBox more 
and more every day.  :)

Matt Williams wrote:
> Cartweaver is a pretty good deal. One time fee for multiple stores. Code is
> editable, store elements are easily implemented into existing site.
> 
> 
> On 5/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>>> I really hate the HoF search, I never seem to find what I'm looking
>> for.
>>
>> I'll second that. It must be that "Powered by Google" thing.
>>
>> Lee
>>
>>
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239662
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: shopping cart suggestions

2006-05-05 Thread Crow T. Robot
This may seem like a stupid question, but what;s the URL?  Googling 
brings up a lot of fluff, and I'm not 100% sure the sitedirector.com is 
the right site

Eric J. Hoffman wrote:
> SiteDirectorI love it. 
> 
> 
> 
> 
> 
> Eric J. Hoffman
> Managing Partner
> 2081 Industrial Blvd
> StillwaterMN55082
> mail: [EMAIL PROTECTED]
> www: http://www.ejhassociates.com
> tel: 651.717.4105
> fax: 651.717.4115
> mob: 651.245.2717
> 
> 
> 
> This message contains confidential information and is intended only for 
> [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you should not 
> disseminate, distribute or copy this e-mail. Please notify [EMAIL PROTECTED] 
> immediately by e-mail if you have received this e-mail by mistake and delete 
> this e-mail from your system. E-mail transmission cannot be guaranteed to be 
> secure or error-free as information could be intercepted, corrupted, lost, 
> destroyed, arrive late or incomplete, or contain viruses. Eric J. Hoffman 
> therefore does not accept liability for any errors or omissions in the 
> contents of this message, which arise as a result of e-mail transmission. If 
> verification is required please request a hard-copy version.
> 
> 
> -Original Message-
> 
> From: Ray Champagne [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, May 04, 2006 2:29 PM
> To: CF-Talk
> Subject: shopping cart suggestions
> 
> I need some.  I tried searching the archives, but to be honest, I really
> hate the HoF search, I never seem to find what I'm looking for.
> 
> Looking for something easy to implement, that is customizable (as far as
> layout goes, as well as the underlying logic), we don't mind paying for
> one, as long as it is decent.
> 
> CFWebStore
> Cf EZ Cart
> 
> ???
> 
> 
> --
> Ray Champagne - Senior Application Developer CrystalVision Web Site
> Design and Internet Services
> 603.433.9559
> www.crystalvision.org
> 
> 
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239645
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: shopping cart suggestions

2006-05-05 Thread Ray Champagne
The beef I have is in step 5 below:

1) I search on "shopping cart suggestions"

2) Up pops several pages of results.

3) I click on one of the result topics

4) I'm brought to a page with 200 threads that I have to sift through 
visually to find my topic

5) WTF?

Ray

[EMAIL PROTECTED] wrote:
>> I really hate the HoF search, I never seem to find what I'm looking
> for.
> 
> I'll second that. It must be that "Powered by Google" thing. 
> 
> Lee
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239625
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: shopping cart suggestions

2006-05-04 Thread Andrew Spear
I second SiteDirector!

>I need some.  I tried searching the archives, but to be honest, I really 
>hate the HoF search, I never seem to find what I'm looking for.
>
>Looking for something easy to implement, that is customizable (as far as 
>layout goes, as well as the underlying logic), we don't mind paying for 
>one, as long as it is decent.
>
>CFWebStore
>Cf EZ Cart
>
>???
>
>
>-- 
>Ray Champagne - Senior Application Developer
>CrystalVision Web Site Design and Internet Services
>603.433.9559
>www.crystalvision.org

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239574
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: shopping cart suggestions

2006-05-04 Thread Eric J. Hoffman
SiteDirectorI love it. 





Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4115
mob: 651.245.2717



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


-Original Message-

From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 04, 2006 2:29 PM
To: CF-Talk
Subject: shopping cart suggestions

I need some.  I tried searching the archives, but to be honest, I really
hate the HoF search, I never seem to find what I'm looking for.

Looking for something easy to implement, that is customizable (as far as
layout goes, as well as the underlying logic), we don't mind paying for
one, as long as it is decent.

CFWebStore
Cf EZ Cart

???


--
Ray Champagne - Senior Application Developer CrystalVision Web Site
Design and Internet Services
603.433.9559
www.crystalvision.org




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239569
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: shopping cart suggestions

2006-05-04 Thread Ken Ferguson
I always have to apologize for dropping the recommendation on a CF list, 
but the best one I've ever used is www.x-cart.com. It's a PHP MySQL app, 
but I just can't say enough good about it. It's a great app; it's well 
supported; it's constantly updated; it's got tons of add-ons available; 
it's really easy to install and equally easy to manage -- very powerful 
to boot. I REALLY like it.

-Ferg

Ray Champagne wrote:
> I need some.  I tried searching the archives, but to be honest, I really 
> hate the HoF search, I never seem to find what I'm looking for.
>
> Looking for something easy to implement, that is customizable (as far as 
> layout goes, as well as the underlying logic), we don't mind paying for 
> one, as long as it is decent.
>
> CFWebStore
> Cf EZ Cart
>
> ???
>
>
>   


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239561
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: shopping cart suggestions

2006-05-04 Thread Matt Williams
Cartweaver is a pretty good deal. One time fee for multiple stores. Code is
editable, store elements are easily implemented into existing site.


On 5/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> > I really hate the HoF search, I never seem to find what I'm looking
> for.
>
> I'll second that. It must be that "Powered by Google" thing.
>
> Lee
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239559
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: shopping cart suggestions

2006-05-04 Thread Lee.S.Surma
> I really hate the HoF search, I never seem to find what I'm looking
for.

I'll second that. It must be that "Powered by Google" thing. 

Lee

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239557
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: shopping cart suggestions

2006-05-04 Thread Josh Nathanson
I am in the process of setting up a store using CFWebstore.  It's Fusebox 
3.0 which takes a bit of getting used to, but once you're comfortable it's 
pretty straightforward to do customization.  Everything is commented which 
helps a lot in figuring out which template is calling which etc.

-- Josh


- Original Message - 
From: "Ray Champagne" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Thursday, May 04, 2006 12:28 PM
Subject: shopping cart suggestions


>I need some.  I tried searching the archives, but to be honest, I really
> hate the HoF search, I never seem to find what I'm looking for.
>
> Looking for something easy to implement, that is customizable (as far as
> layout goes, as well as the underlying logic), we don't mind paying for
> one, as long as it is decent.
>
> CFWebStore
> Cf EZ Cart
>
> ???
>
>
> -- 
> Ray Champagne - Senior Application Developer
> CrystalVision Web Site Design and Internet Services
> 603.433.9559
> www.crystalvision.org
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239556
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: shopping cart suggestions

2006-05-04 Thread Steve Kahn
Ray

Were using CFwebstore - its fine, gotta like fusebox thou.
About to purchase 'Sitedirector' from Quilldesign.
Depending on what you need in features really dictates the price.

HTH
Steve

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 04, 2006 3:29 PM
To: CF-Talk
Subject: shopping cart suggestions

I need some.  I tried searching the archives, but to be honest, I really 
hate the HoF search, I never seem to find what I'm looking for.

Looking for something easy to implement, that is customizable (as far as 
layout goes, as well as the underlying logic), we don't mind paying for 
one, as long as it is decent.

CFWebStore
Cf EZ Cart

???


-- 
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239554
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart Recommendations

2006-04-05 Thread Troy Montour
One that I have used is Cartweaver. www.cartweaver.com


Thank You
Troy Montour
Vampires Internet Company
4663 Main ST
Fridley, MN 55421
[EMAIL PROTECTED]
P: 763.571.3872
M: 763.458.2368
F: 763.586.0552




On Apr 5, 2006, at 12:26 PM, Jeff Chastain wrote:

> Interesting, I was actually looking at the LiteCommerce product by  
> the same
> company that makes X-Cart.  LiteCommerce appears to be a bit easier  
> to do UI
> customizations on at this point.
>
> This is going way off topic for this list now, but as I have been  
> fighting
> it all morning, I will take help any where I can get it.  LiteCommerce
> requires PHP 4.x (not 5).  I am running MySQL 5 on my dev box.   
> However, the
> default install of PHP 4.4.2 won't talk to MySQL 5.  Can anybody  
> point me to
> some info or give me a little guidance on setting this up (off list)?
>
> Thanks
> -- Jeff
>
>
> -Original Message-
> From: Ken Ferguson [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, April 05, 2006 12:27 PM
> To: CF-Talk
> Subject: Re: Shopping Cart Recommendations
>
> www.x-cart.com
> I've used this product several times and it is awesome. It's really
> inexpensive, has tons of add-ons as well as an outstanding feature  
> set right
> out of the box. It's easy to customize... I always recommend this  
> cart.
>
> --Ferg
>
> Jeff Chastain wrote:
>> I am looking for a shopping cart recommendation.  I am putting
>> together a simple web site / store front for my wife and don't really
>> have the time to write this myself.  The biggest requirement is that
>> it be customizable from a UI standpoint and preferably open source so
>> that additional functionality could be added later.  I have already
>> tried quite a few different carts, and even paid for one, but I have
>> yet to find one that is very easily re-skinned.  Having to dig  
>> through
>> the source code looking for every bit of display code does not count
>> as re-skinnable to me.  Other than that, just a general basic cart,
>> probably that would talk with PayPal, is all that I am looking for.
>>
>> Any suggestions?
>>
>> Thanks
>> -- Jeff
>>
>>
>>
>>
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237040
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart Recommendations

2006-04-05 Thread Jeff Chastain
Interesting, I was actually looking at the LiteCommerce product by the same
company that makes X-Cart.  LiteCommerce appears to be a bit easier to do UI
customizations on at this point.

This is going way off topic for this list now, but as I have been fighting
it all morning, I will take help any where I can get it.  LiteCommerce
requires PHP 4.x (not 5).  I am running MySQL 5 on my dev box.  However, the
default install of PHP 4.4.2 won't talk to MySQL 5.  Can anybody point me to
some info or give me a little guidance on setting this up (off list)?

Thanks
-- Jeff
 

-Original Message-
From: Ken Ferguson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 05, 2006 12:27 PM
To: CF-Talk
Subject: Re: Shopping Cart Recommendations

www.x-cart.com
I've used this product several times and it is awesome. It's really
inexpensive, has tons of add-ons as well as an outstanding feature set right
out of the box. It's easy to customize... I always recommend this cart.

--Ferg

Jeff Chastain wrote:
> I am looking for a shopping cart recommendation.  I am putting 
> together a simple web site / store front for my wife and don't really 
> have the time to write this myself.  The biggest requirement is that 
> it be customizable from a UI standpoint and preferably open source so 
> that additional functionality could be added later.  I have already 
> tried quite a few different carts, and even paid for one, but I have 
> yet to find one that is very easily re-skinned.  Having to dig through 
> the source code looking for every bit of display code does not count 
> as re-skinnable to me.  Other than that, just a general basic cart, 
> probably that would talk with PayPal, is all that I am looking for.
>  
> Any suggestions?
>  
> Thanks
> -- Jeff
>
>
>
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237029
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart Recommendations

2006-04-05 Thread Ken Ferguson
www.x-cart.com
I've used this product several times and it is awesome. It's really 
inexpensive, has tons of add-ons as well as an outstanding feature set 
right out of the box. It's easy to customize... I always recommend this 
cart.

--Ferg

Jeff Chastain wrote:
> I am looking for a shopping cart recommendation.  I am putting together a
> simple web site / store front for my wife and don't really have the time to
> write this myself.  The biggest requirement is that it be customizable from
> a UI standpoint and preferably open source so that additional functionality
> could be added later.  I have already tried quite a few different carts, and
> even paid for one, but I have yet to find one that is very easily
> re-skinned.  Having to dig through the source code looking for every bit of
> display code does not count as re-skinnable to me.  Other than that, just a
> general basic cart, probably that would talk with PayPal, is all that I am
> looking for.
>  
> Any suggestions?
>  
> Thanks
> -- Jeff
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237027
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart Recommendations

2006-04-05 Thread Tony
i must recommend www.quilldesign.com 's site director 4

its the bomb dizzy

On 4/5/06, Larry Lyons <[EMAIL PROTECTED]> wrote:
> You may also want to look at a couple of free ones - Ben Forta's CFWACK book 
> has a fairly basic shopping cart that's pretty good. There's also a Web 
> Monkey article on building a CF based shopping cart at 
> http://www.antiwrap.com/?950. Its basic but it works. As for adding 
> Authorize.net or Paypal, there are several tutorials available on how to do 
> that.
>
> hth,
> larry
>
> --
> Larry C. Lyons
> Web Analyst
> BEI Resources
> American Type Culture Collection
> email: llyons(at)atcc(dot)org
> tel: 703.365.2700.2678
> --
>
> >Strictly CF? ZenCart is a popular and free PHP shopping cart. It supports
> >Authorize.net and Paypal out of the box and it specifically has an
> >abstracted templating system.
> >
> >The CF shopping carts I have bookmarked are:
> >
> >AbleCommerce, $1000 starting
> >http://www.ablecommerce.com/
> >
> >CFWebstore $300 starting
> >http://www.cfwebstore.com/
> >
> >CF-ezcart $175 starting
> >http://www.cf-ezcart.com/
> >
> >Netready $350
> >http://aloha-webdesign.com/index.asp?fuseaction=details&pid=19
> >
> >QuillDesign QD Cart
> >http://www.quilldesign.com/qdcart/index.cfm
> >
> >QuillDesign SiteDirector
> >http://www.quilldesign.com/director/index.cfm
> >
> >Cartweaver $250
> >http://www.cartweaver.com/
> >
> >ampleShop $800 starting
> >http://www.amplecom.com/e-commerce-software-ColdFusion-MX.cfm
> >
> >CF Shopkart $179 starting
> >http://www.cfshopkart.com/
> >
> >QuickEStore $99
> >http://www.quickestore.com/
> >
> >CF Merchant $475
> >http://www.oleani.com/products.cfm?pid=1
> >
> >
> >---
> >Kevin Graeme
> >Cooperative Extension Technology Services
> >University of Wisconsin-Extension
> >
> >
> >>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237011
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart Recommendations

2006-04-05 Thread Larry Lyons
You may also want to look at a couple of free ones - Ben Forta's CFWACK book 
has a fairly basic shopping cart that's pretty good. There's also a Web Monkey 
article on building a CF based shopping cart at http://www.antiwrap.com/?950. 
Its basic but it works. As for adding Authorize.net or Paypal, there are 
several tutorials available on how to do that.

hth,
larry

--
Larry C. Lyons
Web Analyst
BEI Resources
American Type Culture Collection
email: llyons(at)atcc(dot)org
tel: 703.365.2700.2678
--

>Strictly CF? ZenCart is a popular and free PHP shopping cart. It supports
>Authorize.net and Paypal out of the box and it specifically has an
>abstracted templating system.
>
>The CF shopping carts I have bookmarked are:
>
>AbleCommerce, $1000 starting
>http://www.ablecommerce.com/
>
>CFWebstore $300 starting
>http://www.cfwebstore.com/
>
>CF-ezcart $175 starting
>http://www.cf-ezcart.com/
>
>Netready $350
>http://aloha-webdesign.com/index.asp?fuseaction=details&pid=19
>
>QuillDesign QD Cart 
>http://www.quilldesign.com/qdcart/index.cfm
>
>QuillDesign SiteDirector
>http://www.quilldesign.com/director/index.cfm
>
>Cartweaver $250
>http://www.cartweaver.com/
>
>ampleShop $800 starting
>http://www.amplecom.com/e-commerce-software-ColdFusion-MX.cfm
>
>CF Shopkart $179 starting
>http://www.cfshopkart.com/
>
>QuickEStore $99
>http://www.quickestore.com/
>
>CF Merchant $475
>http://www.oleani.com/products.cfm?pid=1
>
>
>---
>Kevin Graeme
>Cooperative Extension Technology Services
>University of Wisconsin-Extension
> 
>
>>

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237010
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart Recommendations

2006-04-05 Thread Kevin Graeme
Strictly CF? ZenCart is a popular and free PHP shopping cart. It supports
Authorize.net and Paypal out of the box and it specifically has an
abstracted templating system.

The CF shopping carts I have bookmarked are:

AbleCommerce, $1000 starting
http://www.ablecommerce.com/

CFWebstore $300 starting
http://www.cfwebstore.com/

CF-ezcart $175 starting
http://www.cf-ezcart.com/

Netready $350
http://aloha-webdesign.com/index.asp?fuseaction=details&pid=19

QuillDesign QD Cart 
http://www.quilldesign.com/qdcart/index.cfm

QuillDesign SiteDirector
http://www.quilldesign.com/director/index.cfm

Cartweaver $250
http://www.cartweaver.com/

ampleShop $800 starting
http://www.amplecom.com/e-commerce-software-ColdFusion-MX.cfm

CF Shopkart $179 starting
http://www.cfshopkart.com/

QuickEStore $99
http://www.quickestore.com/

CF Merchant $475
http://www.oleani.com/products.cfm?pid=1


---
Kevin Graeme
Cooperative Extension Technology Services
University of Wisconsin-Extension
 

> -Original Message-
> From: Jeff Chastain [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, April 04, 2006 4:06 PM
> To: CF-Talk
> Subject: Shopping Cart Recommendations
> 
> I am looking for a shopping cart recommendation.  I am 
> putting together a
> simple web site / store front for my wife and don't really 
> have the time to
> write this myself.  The biggest requirement is that it be 
> customizable from
> a UI standpoint and preferably open source so that additional 
> functionality
> could be added later.  I have already tried quite a few 
> different carts, and
> even paid for one, but I have yet to find one that is very easily
> re-skinned.  Having to dig through the source code looking 
> for every bit of
> display code does not count as re-skinnable to me.  Other 
> than that, just a
> general basic cart, probably that would talk with PayPal, is 
> all that I am
> looking for.
>  
> Any suggestions?
>  
> Thanks
> -- Jeff
> 
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237009
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart Recommendations

2006-04-04 Thread James Edmunds
Have you looked at Cartweaver?

On 4/4/06, Jeff Chastain <[EMAIL PROTECTED]> wrote:
>
> I am looking for a shopping cart recommendation.  I am putting together a
> simple web site / store front for my wife and don't really have the time
> to
> write this myself.  The biggest requirement is that it be customizable
> from
> a UI standpoint and preferably open source so that additional
> functionality
> could be added later.  I have already tried quite a few different carts,
> and
> even paid for one, but I have yet to find one that is very easily
> re-skinned.  Having to dig through the source code looking for every bit
> of
> display code does not count as re-skinnable to me.  Other than that, just
> a
> general basic cart, probably that would talk with PayPal, is all that I am
> looking for.
>
> Any suggestions?
>
> Thanks
> -- Jeff
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236990
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart qty problems.

2006-02-18 Thread Phillip Perry
Well my Internet was shut down yesterday for the whole day so I had to work
on this myself. I decided it would be easier to just let ppl adjust the qty
during checkout via up and down arrows that add or subtract one to the qty
(or del the item if 1 item is left) and I got it to work fine that way.
Thanks for the effort anyways and sorry I wasnt clear enough on what I was
doing.

Phil

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Friday, February 17, 2006 8:32 AM
To: CF-Talk
Subject: RE: Shopping Cart qty problems.


Sorry, can't do anything with that either. There's more to it.

...:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: Phillip Perry [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 7:36 PM
To: CF-Talk
Subject: RE: Shopping Cart qty problems.

here is the code...

Quantity: 
   
  #idx#
   
   

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 3:38 PM
To: CF-Talk
Subject: RE: Shopping Cart qty problems.


Going to need a little more than that :)

It sounds like you are only outputting the last qty value for all of them
though. -or- you are updating them all to the last qty's value somewhere.

.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-Original Message-
From: Phillip Perry [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 3:27 PM
To: CF-Talk
Subject: Shopping Cart qty problems.

Hi,

I have a cart that displays the qty in a drop down list. The list is from
1 - max qty in the DB. The problem is that if the user chooses more than one
item, all items qty's become the same as the last item chosen.

Example:

item 1qty chosen 4; qty after item 2 = 2
item 2qty chosen 2; qty stays the same.

and the qty for each item goes to 1 when the user decides to checkout also.

Any help is appreciated.

Phil












~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232794
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart qty problems.

2006-02-17 Thread Bobby Hartsfield
Sorry, can't do anything with that either. There's more to it.

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com

-Original Message-
From: Phillip Perry [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 16, 2006 7:36 PM
To: CF-Talk
Subject: RE: Shopping Cart qty problems.

here is the code...

Quantity: 
   
  #idx#
   
   

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 3:38 PM
To: CF-Talk
Subject: RE: Shopping Cart qty problems.


Going to need a little more than that :)

It sounds like you are only outputting the last qty value for all of them
though. -or- you are updating them all to the last qty's value somewhere.

:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-Original Message-
From: Phillip Perry [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 3:27 PM
To: CF-Talk
Subject: Shopping Cart qty problems.

Hi,

I have a cart that displays the qty in a drop down list. The list is from
1 - max qty in the DB. The problem is that if the user chooses more than one
item, all items qty's become the same as the last item chosen.

Example:

item 1qty chosen 4; qty after item 2 = 2
item 2qty chosen 2; qty stays the same.

and the qty for each item goes to 1 when the user decides to checkout also.

Any help is appreciated.

Phil










~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232687
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart qty problems.

2006-02-16 Thread Phillip Perry
here is the code...

Quantity: 
   
  #idx#
   
   

-Original Message-
From: Bobby Hartsfield [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 3:38 PM
To: CF-Talk
Subject: RE: Shopping Cart qty problems.


Going to need a little more than that :)

It sounds like you are only outputting the last qty value for all of them
though. -or- you are updating them all to the last qty's value somewhere.

...:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-Original Message-
From: Phillip Perry [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 16, 2006 3:27 PM
To: CF-Talk
Subject: Shopping Cart qty problems.

Hi,

I have a cart that displays the qty in a drop down list. The list is from
1 - max qty in the DB. The problem is that if the user chooses more than one
item, all items qty's become the same as the last item chosen.

Example:

item 1qty chosen 4; qty after item 2 = 2
item 2qty chosen 2; qty stays the same.

and the qty for each item goes to 1 when the user decides to checkout also.

Any help is appreciated.

Phil








~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232653
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart qty problems.

2006-02-16 Thread Bobby Hartsfield
Going to need a little more than that :)

It sounds like you are only outputting the last qty value for all of them
though. -or- you are updating them all to the last qty's value somewhere.

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com


-Original Message-
From: Phillip Perry [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 16, 2006 3:27 PM
To: CF-Talk
Subject: Shopping Cart qty problems.

Hi,

I have a cart that displays the qty in a drop down list. The list is from
1 - max qty in the DB. The problem is that if the user chooses more than one
item, all items qty's become the same as the last item chosen.

Example:

item 1qty chosen 4; qty after item 2 = 2
item 2qty chosen 2; qty stays the same.

and the qty for each item goes to 1 when the user decides to checkout also.

Any help is appreciated.

Phil






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232576
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart Coupon facility

2005-12-01 Thread Mike | NZSolutions Ltd
Hey thanks guys,

I can see what I need to do.

mike

-Original Message-
From: Ken Ferguson [mailto:[EMAIL PROTECTED] 
Sent: Friday, 2 December 2005 4:40 a.m.
To: CF-Talk
Subject: Re: Shopping Cart Coupon facility


There's not enough information here to tell you EXACTLY what to do. 
However, an overview of what you need to do follows. You need to alter 
your coupon creation code to add the ability to select products or 
groups of products, depending on your organization, to which the coupon 
will apply. Then you'll need to alter the function below such that it 
checks a person's cart contents against a query for the products in the 
valid groups...

So in the coupon creation, they should be able to select product 
categories (jerseys...) or specific products. Then in the isValid 
function you should check, given the coupon code, whether it's limited 
to a certain group of products. Then you'll just check the cart to see 
if the products there meet the criterion. You can be as specific as you 
like too. You could make it such that they're good for specific products

or you could make them invalid for specific products...

--Ferg

Mike | NZSolutions Ltd wrote:

>hi there,
> 
>i have the following function which checks the validity of a coupon 
>code at checkout time. when uploading a new coupon, the site admin can 
>specify a minimum amount spent as well as having it available for any 
>purchase...
>--
>returntype="numeric">
> 
> 
>
> 
> password="#Request.App.DBpassword#"
username="#Request.App.DBusername#">
>SELECT promotion_id
> FROM promotions
> WHERE promotion_uuid = value="#arguments.promotion_uuid#">
> AND dExpiry >=  
>AND amount_min <= value="#arguments.order_subtotal#" scale="2">  AND enabled = 
>
>
> 
> 
>  password="#Request.App.DBpassword#" 
>username="#Request.App.DBusername#">
>  SELECT promotion_id
>  FROM promotions_to_customer
>  WHERE promotion_id = value="#getPromotion.promotion_id#">
>  AND customer_id = value="#arguments.customer_id#">
>  
>  
>  
>   
>   
>  
>   
>  
>  
> 
>  
>  
> 
> 
>  
>--
> 
>now, the client has requested that a particular coupon only be 
>available if the customer has a selected product (or product type eg. 
>jerseys) in their cart.
> 
>i am a bit lost as to how i should be modifying the above to account 
>for this.
> 
>any help would be really appreciated.
>
>Regards
>Mike
>
>
>
>



~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225863
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart Coupon facility

2005-12-01 Thread Ken Ferguson
There's not enough information here to tell you EXACTLY what to do. 
However, an overview of what you need to do follows. You need to alter 
your coupon creation code to add the ability to select products or 
groups of products, depending on your organization, to which the coupon 
will apply. Then you'll need to alter the function below such that it 
checks a person's cart contents against a query for the products in the 
valid groups...

So in the coupon creation, they should be able to select product 
categories (jerseys...) or specific products. Then in the isValid 
function you should check, given the coupon code, whether it's limited 
to a certain group of products. Then you'll just check the cart to see 
if the products there meet the criterion. You can be as specific as you 
like too. You could make it such that they're good for specific products 
or you could make them invalid for specific products...

--Ferg

Mike | NZSolutions Ltd wrote:

>hi there,
> 
>i have the following function which checks the validity of a coupon code
>at checkout time. when uploading a new coupon, the site admin can
>specify a minimum amount spent as well as having it available for any
>purchase...
>--
>returntype="numeric">
>
>
>
> 
> password="#Request.App.DBpassword#" username="#Request.App.DBusername#">
>SELECT promotion_id
> FROM promotions
> WHERE promotion_uuid = value="#arguments.promotion_uuid#">
> AND dExpiry >= 
>AND amount_min <= value="#arguments.order_subtotal#" scale="2">  AND enabled =
>
>
> 
> 
>  password="#Request.App.DBpassword#" username="#Request.App.DBusername#">
>  SELECT promotion_id
>  FROM promotions_to_customer
>  WHERE promotion_id = value="#getPromotion.promotion_id#">
>  AND customer_id = value="#arguments.customer_id#">
>  
>  
>  
>   
>   
>  
>   
>  
>  
> 
>  
>  
> 
> 
>  
>--
> 
>now, the client has requested that a particular coupon only be available
>if the customer has a selected product (or product type eg. jerseys) in
>their cart.
> 
>i am a bit lost as to how i should be modifying the above to account for
>this.
> 
>any help would be really appreciated.
>
>Regards
>Mike
>
>
>
>

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225827
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart Coupon facility

2005-12-01 Thread Mark Fuqua
Sorry to sound so hack-like, but how about putting a code in the coupon
(coupon = jer456 or jer897 for a coupon meant for a jersey) that specifies
what the coupon specifically applies to, with a generic code which specifies
no required product (coupon = gen345 for generic).  Then if the coupon is
not generic, meaning a specific product should be in the cart, call a
function that loops over cart contents looking for the specific product
type, returning pass/fail result.

Mark


-Original Message-
From: Mike | NZSolutions Ltd [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 30, 2005 9:17 PM
To: CF-Talk
Subject: Shopping Cart Coupon facility


hi there,

i have the following function which checks the validity of a coupon code
at checkout time. when uploading a new coupon, the site admin can
specify a minimum amount spent as well as having it available for any
purchase...
--





 
SELECT promotion_id
 FROM promotions
 WHERE promotion_uuid = 
 AND dExpiry >= 
AND amount_min <=   AND enabled =



 
  
  SELECT promotion_id
  FROM promotions_to_customer
  WHERE promotion_id = 
  AND customer_id = 
  

  
   
   
  
   
  

 
  
  
 

  
--

now, the client has requested that a particular coupon only be available
if the customer has a selected product (or product type eg. jerseys) in
their cart.

i am a bit lost as to how i should be modifying the above to account for
this.

any help would be really appreciated.

Regards
Mike





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225814
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart Coupon facility

2005-12-01 Thread Mark Fuqua
Hey there,

Sorry to sound so hack-like, but how about putting a code in the coupon
(coupon = jer456 or jer897 for a coupon meant for a jersey) that specifies
what the coupon specifically applies to, or a generic code which specifies
no required product (coupon = gen345 for generic).  Then do a check:  if the
coupon is not generic, meaning a specific product should be in the cart,
call a function that loops over cart contents looking for the specific
product type, returning pass/fail result.

Mark




~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225813
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart - Coupon/Discount

2005-11-22 Thread Mike | NZSolutions Ltd
Thanks mary,

I think this is the way I will head - 2 different table setups.

mike

-Original Message-
From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 23 November 2005 5:37 a.m.
To: CF-Talk
Subject: Re: Shopping Cart - Coupon/Discount


>i am a bit stumped as to whether i should be looking at one set of 
>tables to handle all the options above, or whether i should create to 
>distinct sets to handle either a discount scenario or a free product 
>scenario.

>From my own experience, I would say to go with a different set of
tables/settings. One for discounts and one for promotions (free items).
You could certainly try to do it in one table, but the information you
need for each of these, and the calculations involved are somewhat
different. 

--
Mary Jo Sminkey
http://www.cfwebstore.com






~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:224997
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart - Coupon/Discount

2005-11-22 Thread Mary Jo Sminkey
>i am a bit stumped as to whether i should be looking at one set of
>tables to handle all the options above, or whether i should create to
>distinct sets to handle either a discount scenario or a free product
>scenario.

>From my own experience, I would say to go with a different set of 
>tables/settings. One for discounts and one for promotions (free items). You 
>could certainly try to do it in one table, but the information you need for 
>each of these, and the calculations involved are somewhat different. 

--
Mary Jo Sminkey
http://www.cfwebstore.com




~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:224981
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart

2005-10-21 Thread Short Fuse Media
Damien McKenna wrote:

>My comment was regarding the "party" customer type which relates to
>sales parties that are typically held in private houses amongst friends.
>It's a common MLM sales technique.
>  
>

Oh! Gotchya - Naw the Party Entity Model works like this: (as per ofBiz 
Site)

"A Party can be either a Person, or a group of Parties. A Party Group 
could be a company, an organization within the company, a supplier, a 
customer, and so forth. Information that describes Parties or is 
directly related to Parties is contained in these entities."

In short - this level of abstraction is something I've seen even 
commercial products missing. Something to consider in an O.S. shopping 
cart scenario. I mean, how many devlopers JUST stop at the front end of 
e-commerce. There are alot of other systems that (in the end) it will 
have to work with. Take fulfillment and warehousing for instance.

And having a good entity model right up front can help you from getting 
blasted down the road when you have to say: integrate a shopping cart 
with an order fulfillment system.

Erik Yowell
Short Fuse Media, Inc.
[EMAIL PROTECTED]



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221843
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart

2005-10-21 Thread Damien McKenna
> >Sounds like there must be an MLM or two involved.
> 
> Que? I don't quite get the MLM association (you mean Multi-Level 
> Marketing?)

Correct.

> OfBiz is a sourceforge project all under MIT Open Source licensing...

My comment was regarding the "party" customer type which relates to
sales parties that are typically held in private houses amongst friends.
It's a common MLM sales technique.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 

~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221837
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart

2005-10-21 Thread Short Fuse Media
Damien McKenna wrote:

>Sounds like there must be an MLM or two involved.
>
>  
>

Que? I don't quite get the MLM association (you mean Multi-Level 
Marketing?) OfBiz is a sourceforge project all under MIT Open Source 
licensing...

Erik Yowell
Short Fuse Media, Inc.
[EMAIL PROTECTED]


~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart

2005-10-21 Thread Damien McKenna
> There's also OFBiz  (Open for Business Project) http://www.ofbiz.org -

> It's a friggin' beast, but looks rather cool. Personally, I 
> love their "PARTY" entity model

Sounds like there must be an MLM or two involved.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include 

~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221810
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart

2005-10-21 Thread Short Fuse Media
>See oscommerce.com for what they are working on - it is really good.
>  
>

There's also OFBiz  (Open for Business Project) http://www.ofbiz.org - 
It's a friggin' beast, but looks rather cool. Personally, I love their 
"PARTY" entity model - at the very least, their db schema alone is worth 
looking at.

Erik Yowell
Short Fuse Media, Inc.
[EMAIL PROTECTED]

"Beer is living proof that God loves us and wants us to be happy."

- Benjamin Franklin


~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221799
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart

2005-10-19 Thread Mike | NZSolutions Ltd
Recently I created a shopping cart application for a client including
backend. I used the oscommerce php model to develop from - I found this
really good as there is extensive literature including a database
schema.

Question... I saw that someone was going to implement a opensource
calendar app, another good project would be a open source shopping cart
- would it not??

See oscommerce.com for what they are working on - it is really good.

mike

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 20 October 2005 1:18 p.m.
To: CF-Talk
Subject: RE: Shopping Cart


> From: Don R Seibert [mailto:[EMAIL PROTECTED]
> I am looking for a pretty easy to use shopping cart that I 
> can integrate with a site that is already up and running. I 
> am using ColdFusion MX 6.1 and I can use Access or SQL server. 
> Oh, and it needs to be inexpensive too. Can anyone recommend 
> a starting place or experience with a particular package.

If all you require is the actual cart (container to hold items and
calculate totals, etc) I would roll my own. If you need the whole
shebang (payment processing, etc) check out http://www.cf-ezcart.com/.

Mike






~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221597
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart

2005-10-19 Thread Michael T. Tangorre
> From: Don R Seibert [mailto:[EMAIL PROTECTED] 
> I am looking for a pretty easy to use shopping cart that I 
> can integrate with a site that is already up and running. I 
> am using ColdFusion MX 6.1 and I can use Access or SQL server. 
> Oh, and it needs to be inexpensive too. Can anyone recommend 
> a starting place or experience with a particular package.

If all you require is the actual cart (container to hold items and calculate
totals, etc) I would roll my own. If you need the whole shebang (payment
processing, etc) check out http://www.cf-ezcart.com/.

Mike




~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:221589
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart solution - any others to look at?

2005-10-11 Thread Will Tomlinson
Man, I'd like to giv'em some feedback on CW. I'd tell'em to drop a daisycutter 
on it and start out fresh. 

:)

Will

~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220768
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart solution - any others to look at?

2005-10-11 Thread Paul
> We have also looked at
>oscommerce which is an open source php project.

I implemented an oscommerce store last year and wouldn't recommend the
experience.  It may have just been bad for our specific needs, but it was a
pain. Fwiw.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220701
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart solution - any others to look at?

2005-10-11 Thread Ken Ferguson
IMHO, (who am I kiddin' you all know I'm not humble) X-Cart is 
infinitely better that OSC. It's well-supported, has tons of add-ons... 
For only a couple hundred bucks, it's certainly the better option 
between the two.

--Ferg

Scott Mulholland wrote:

>Thanks Ferg, we'll look into it that option.  We have also looked at
>oscommerce which is an open source php project.
>
>-Original Message-
>From: Ken Ferguson [mailto:[EMAIL PROTECTED] 
>Sent: Tuesday, October 11, 2005 8:47 AM
>To: CF-Talk
>Subject: Re: Shopping Cart solution - any others to look at?
>
>My advice, and this is gonna be wildly unpopular on this list, is to use 
>X-Cart (www.x-cart.com). It's PHP not CF, but it is very good. I've used 
>it in a number of situations and I've never regretted it. I always 
>wished I was better at PHP when using it, as it would have taken me a 
>lot less time to do some of the custom mods I did, but it really is a 
>nice app. Actually, what I really wished is that I had time to dedicate 
>to making a CF store app that matched X-Cart feature for feature -- that 
>would be the perfect scenario. It's cheap too; for a complete Gold 
>license with source and all is only $200 and it will give you, I bet, 
>everything you need.
>
>I agree with the others that building your own cart is the way to go, 
>but if time is an issue you can get x-cart up and running and loaded 
>with products in just a couple of days.
>
>--Ferg
>
>Scott Mulholland wrote:
>
>  
>
>>Our plan is to roll our own out in the future, the creation of it is not a
>>factor for us on this one, the timeframe is so we are looking to go off the
>>shelf this time around.
>>
>>-Original Message-
>>From: Larry Lyons [mailto:[EMAIL PROTECTED] 
>>Sent: Monday, October 10, 2005 10:04 AM
>>To: CF-Talk
>>Subject: Re: Shopping Cart solution - any others to look at?
>>
>> 
>>
>>
>>
>>>I'm currently evaluating some e-commerce solutions for an upcoming 
>>>project.
>>>Past postings have pointed me to look at cartweaver, cfwebstore and
>>>ablecommerce.  I have also looked at a couple of non-cf based 
>>>solutions. 
>>>
>>>Are there any others that I should be looking at or dos anyone have 
>>>any
>>>feedback, good or bad about the ones I named above?
>>>
>>>   
>>>
>>>  
>>>
>>Scott,
>>
>>Web Monkey has a fairly simple shopping cart for CF that's easily
>>modifiable, and free. 
>>http://www.webmonkey.com/webmonkey/99/49/index4a.html?tw=programming
>>
>>You could also roll out your own, they're not very difficult to create.
>>
>>hth,
>>
>>larry
>>
>>--
>>Larry C. Lyons
>>Web Analyst
>>BEI Resources
>>American Type Culture Collection
>>email: llyons(at)atcc(dot)org
>>tel: 703.365.2700.2678
>>--
>>
>>
>>
>>
>>
>>
>
>
>
>

~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220699
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart solution - any others to look at?

2005-10-11 Thread Scott Mulholland
Thanks Ferg, we'll look into it that option.  We have also looked at
oscommerce which is an open source php project.

-Original Message-
From: Ken Ferguson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 11, 2005 8:47 AM
To: CF-Talk
Subject: Re: Shopping Cart solution - any others to look at?

My advice, and this is gonna be wildly unpopular on this list, is to use 
X-Cart (www.x-cart.com). It's PHP not CF, but it is very good. I've used 
it in a number of situations and I've never regretted it. I always 
wished I was better at PHP when using it, as it would have taken me a 
lot less time to do some of the custom mods I did, but it really is a 
nice app. Actually, what I really wished is that I had time to dedicate 
to making a CF store app that matched X-Cart feature for feature -- that 
would be the perfect scenario. It's cheap too; for a complete Gold 
license with source and all is only $200 and it will give you, I bet, 
everything you need.

I agree with the others that building your own cart is the way to go, 
but if time is an issue you can get x-cart up and running and loaded 
with products in just a couple of days.

--Ferg

Scott Mulholland wrote:

>Our plan is to roll our own out in the future, the creation of it is not a
>factor for us on this one, the timeframe is so we are looking to go off the
>shelf this time around.
>
>-Original Message-
>From: Larry Lyons [mailto:[EMAIL PROTECTED] 
>Sent: Monday, October 10, 2005 10:04 AM
>To: CF-Talk
>Subject: Re: Shopping Cart solution - any others to look at?
>
>  
>
>>I'm currently evaluating some e-commerce solutions for an upcoming 
>>project.
>>Past postings have pointed me to look at cartweaver, cfwebstore and
>>ablecommerce.  I have also looked at a couple of non-cf based 
>>solutions. 
>>
>>Are there any others that I should be looking at or dos anyone have 
>>any
>>feedback, good or bad about the ones I named above?
>>
>>
>>
> Scott,
>
>Web Monkey has a fairly simple shopping cart for CF that's easily
>modifiable, and free. 
>http://www.webmonkey.com/webmonkey/99/49/index4a.html?tw=programming
>
>You could also roll out your own, they're not very difficult to create.
>
>hth,
>
>larry
>
>--
>Larry C. Lyons
>Web Analyst
>BEI Resources
>American Type Culture Collection
>email: llyons(at)atcc(dot)org
>tel: 703.365.2700.2678
>--
>
>
>
>



~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220681
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart solution - any others to look at?

2005-10-11 Thread Michael Dinowitz
If you have time and skill, rolling your own is uaually a nice option but one 
that involves a certain amount of research into things like payment gateways, 
etc. I'm looking to use cartweaver for clients of Dinowitz and Associates and 
have been looking over and modifying their code in places where I feel it might 
look cleaner or tighter. I'm passing my suggestions back to them which will 
probably result in some upgrades to their product if they like what I did. 

> I'm currently evaluating some e-commerce solutions for an upcoming 
> project.
> Past postings have pointed me to look at cartweaver, cfwebstore and
> ablecommerce.  I have also looked at a couple of non-cf based 
> solutions. 
> 
 
> 
> 
> Are there any others that I should be looking at or dos anyone have 
> any
> feedback, good or bad about the ones I named above?
> 
 
> 
> 
> Thanks,
> 
> Scott
> 
> 
> ---
> [This E-mail scanned for viruses by Declude Virus.  Service provided 
> by Accurate Imaging, Inc.]

~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220651
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart solution - any others to look at?

2005-10-11 Thread Ken Ferguson
My advice, and this is gonna be wildly unpopular on this list, is to use 
X-Cart (www.x-cart.com). It's PHP not CF, but it is very good. I've used 
it in a number of situations and I've never regretted it. I always 
wished I was better at PHP when using it, as it would have taken me a 
lot less time to do some of the custom mods I did, but it really is a 
nice app. Actually, what I really wished is that I had time to dedicate 
to making a CF store app that matched X-Cart feature for feature -- that 
would be the perfect scenario. It's cheap too; for a complete Gold 
license with source and all is only $200 and it will give you, I bet, 
everything you need.

I agree with the others that building your own cart is the way to go, 
but if time is an issue you can get x-cart up and running and loaded 
with products in just a couple of days.

--Ferg

Scott Mulholland wrote:

>Our plan is to roll our own out in the future, the creation of it is not a
>factor for us on this one, the timeframe is so we are looking to go off the
>shelf this time around.
>
>-Original Message-
>From: Larry Lyons [mailto:[EMAIL PROTECTED] 
>Sent: Monday, October 10, 2005 10:04 AM
>To: CF-Talk
>Subject: Re: Shopping Cart solution - any others to look at?
>
>  
>
>>I'm currently evaluating some e-commerce solutions for an upcoming 
>>project.
>>Past postings have pointed me to look at cartweaver, cfwebstore and
>>ablecommerce.  I have also looked at a couple of non-cf based 
>>solutions. 
>>
>>Are there any others that I should be looking at or dos anyone have 
>>any
>>feedback, good or bad about the ones I named above?
>>
>>
>>
> Scott,
>
>Web Monkey has a fairly simple shopping cart for CF that's easily
>modifiable, and free. 
>http://www.webmonkey.com/webmonkey/99/49/index4a.html?tw=programming
>
>You could also roll out your own, they're not very difficult to create.
>
>hth,
>
>larry
>
>--
>Larry C. Lyons
>Web Analyst
>BEI Resources
>American Type Culture Collection
>email: llyons(at)atcc(dot)org
>tel: 703.365.2700.2678
>--
>
>
>
>

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220644
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart solution - any others to look at?

2005-10-10 Thread Scott Mulholland
We may end up doing that, right now just trying to see what else is out
there that may be affordable and worth using.

-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 10, 2005 5:19 PM
To: CF-Talk
Subject: RE: Shopping Cart solution - any others to look at?

One of the sample apps that came with CF is a shopping cart, why not use
that as a base. 

-Original Message-
From: Scott Mulholland [mailto:[EMAIL PROTECTED] 
Sent: 10 October 2005 22:13
To: CF-Talk
Subject: RE: Shopping Cart solution - any others to look at?

Our plan is to roll our own out in the future, the creation of it is not a
factor for us on this one, the timeframe is so we are looking to go off the
shelf this time around.

-Original Message-
From: Larry Lyons [mailto:[EMAIL PROTECTED]
Sent: Monday, October 10, 2005 10:04 AM
To: CF-Talk
Subject: Re: Shopping Cart solution - any others to look at?

> I'm currently evaluating some e-commerce solutions for an upcoming 
> project.
> Past postings have pointed me to look at cartweaver, cfwebstore and 
> ablecommerce.  I have also looked at a couple of non-cf based 
> solutions.
> 
> Are there any others that I should be looking at or dos anyone have 
> any feedback, good or bad about the ones I named above?
> 
 Scott,

Web Monkey has a fairly simple shopping cart for CF that's easily
modifiable, and free. 
http://www.webmonkey.com/webmonkey/99/49/index4a.html?tw=programming

You could also roll out your own, they're not very difficult to create.

hth,

larry

--
Larry C. Lyons
Web Analyst
BEI Resources
American Type Culture Collection
email: llyons(at)atcc(dot)org
tel: 703.365.2700.2678
--







~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220617
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart solution - any others to look at?

2005-10-10 Thread Snake
One of the sample apps that came with CF is a shopping cart, why not use
that as a base. 

-Original Message-
From: Scott Mulholland [mailto:[EMAIL PROTECTED] 
Sent: 10 October 2005 22:13
To: CF-Talk
Subject: RE: Shopping Cart solution - any others to look at?

Our plan is to roll our own out in the future, the creation of it is not a
factor for us on this one, the timeframe is so we are looking to go off the
shelf this time around.

-Original Message-
From: Larry Lyons [mailto:[EMAIL PROTECTED]
Sent: Monday, October 10, 2005 10:04 AM
To: CF-Talk
Subject: Re: Shopping Cart solution - any others to look at?

> I'm currently evaluating some e-commerce solutions for an upcoming 
> project.
> Past postings have pointed me to look at cartweaver, cfwebstore and 
> ablecommerce.  I have also looked at a couple of non-cf based 
> solutions.
> 
> Are there any others that I should be looking at or dos anyone have 
> any feedback, good or bad about the ones I named above?
> 
 Scott,

Web Monkey has a fairly simple shopping cart for CF that's easily
modifiable, and free. 
http://www.webmonkey.com/webmonkey/99/49/index4a.html?tw=programming

You could also roll out your own, they're not very difficult to create.

hth,

larry

--
Larry C. Lyons
Web Analyst
BEI Resources
American Type Culture Collection
email: llyons(at)atcc(dot)org
tel: 703.365.2700.2678
--





~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220610
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Shopping Cart solution - any others to look at?

2005-10-10 Thread Scott Mulholland
Our plan is to roll our own out in the future, the creation of it is not a
factor for us on this one, the timeframe is so we are looking to go off the
shelf this time around.

-Original Message-
From: Larry Lyons [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 10, 2005 10:04 AM
To: CF-Talk
Subject: Re: Shopping Cart solution - any others to look at?

> I'm currently evaluating some e-commerce solutions for an upcoming 
> project.
> Past postings have pointed me to look at cartweaver, cfwebstore and
> ablecommerce.  I have also looked at a couple of non-cf based 
> solutions. 
> 
> Are there any others that I should be looking at or dos anyone have 
> any
> feedback, good or bad about the ones I named above?
> 
 Scott,

Web Monkey has a fairly simple shopping cart for CF that's easily
modifiable, and free. 
http://www.webmonkey.com/webmonkey/99/49/index4a.html?tw=programming

You could also roll out your own, they're not very difficult to create.

hth,

larry

--
Larry C. Lyons
Web Analyst
BEI Resources
American Type Culture Collection
email: llyons(at)atcc(dot)org
tel: 703.365.2700.2678
--



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220609
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Shopping Cart solution - any others to look at?

2005-10-10 Thread Irvin Gomez
> I'd write my own. The ones you mentioned are all limiting in some way. 
> Plus, customizing them sucks! 
> 
> Write your own shoppingcart.cfc and the sky's the limit!
> 


I agree.

~|
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 today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220608
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   3   >