shopping-cart

Form With Quantity doesn't seem to submit

Hey guys, I've been trying to understand the documentation and find an example, but I'm at a loss. This is just a submit form within the cart for updating the quantity. However, the updated quantity is not getting saved to the database -- it always makes the quantity 0. Please help. Form <% for line_item in @cart.line_items %> <% ...

Can classic asp and ASP.NET MVC run side-by-side on the same site?

Just a quick question. I suppose I could just try it but I like StackOverflow because of the quick responses and the comments from people more experienced than I am. Can classic asp and ASP.NET MVC run side-by-side on the same site? For example; the site might run a CMS written in ASP.NET MVC but need to seamlessly integrate with a cart...

Programmatically add Bundle Products in Magento, using the SKU / ID of Simple Items

I have some simple catalog products in Magento, so I have their SKUs & IDs. Now I want to create a Bundled product using the array elements "bundle_options" & "bundle_selections" of the Bundle Items, which are used by the Magento Admin coding in its Observer Class. Also in the Observer class, there are method calls of two functions "...

Suggestions for a "shopping cart" application with a twist?

My company wants users to be able to gather different documents from our website (for instance, manuals, installation instructions, etc) and put them all in one place (kind of like a shopping cart) to then print out all at once when their visit is over. Are there any applications that I can leverage to do this? We want something that's f...

How to set Sku Type & Price Type of Bundle Product programmatically in Magento?

I have added a Bundled Product in Magento programmatically, using all the options / properties of the Simple Product & the use of the 3 methods specifically for Bundle Options:- setBundleOptionsData() setBundleSelectionsData() setCanSaveBundleSelections() The result is that the newly added Bundle Product shows just fine in the Admin ...

magento calls home?

If you have a look at their website it shows statical data $25 Billion in transactions 60,000+ merchants 2,000+ extensions 2+ Million downloads EDIT: just wanted to know where does magento get its data from!? ...

PHP OOP Cart Class display

Hi, I made an PHP OOP Cart Class like this print_r($_SESSION["cart"]); the result is: Array ( [1] => 1 [3] => 2 ) How can I print this session, like a "real" cart? example: echo "Your basket: "; echo "ItemID: ".$cartid." Itemnumber:".$cartnumber; The adding to basket part: if (isset($_POST['submit'])) { $cart= new Cart(...

Good/Simple shopping cart example using asp.net mvc and jquery

Is there a Good/Simple shopping cart example using asp.net mvc and jquery? Any suggestion... ...

Anybody ever used PayPal Website Payments Standard with SESSION variables?

Note: Our site is built in PHP and uses MySQL databases. I already manage another site with shopping cart in its entirety using Authorize.net so please dont respond with suggestions to use another provider. A new product/service we are releasing is classified as "High Risk" to the merchant providers and they want to charge us out the a**...

Best practices to develop a Shopping cart from scratch

Hello, I'm looking to develop a good shopping cart to my new store site. I have few ideas in my mind to start developing it... It will be a stateful session bean (ejb3). Object Oriented {ShoppingCart, ShoppingCartItem,ShoppingCartEvent, OrderHandler, etc.} What I'm looking with this question, is to get, about your experience, is th...

sending data to payment gateway and back - possible problems

I'm going to use one of the payment gateways and so users from my site will be redirected to gateway hosted page to provide all the CC details. Gateway will return results to the page which I specify (lets call it paymentProcessed.php). But now my worry is that: someone might fake it. What I mean is that someone might be redirected to ...

Shopping Cart Module

So i am going to take my first hack at implementing a shopping cart module into an existing site. My hosting co. comes with 3 options that use the Fantistico auto installer: OSCommerce, CubeCart, and Zen Cart. Is there a better solution out of those three? I also need to obtain a merchants account right? ...

Which software to choose to power a very simple shopping-cart where I am going to sell software?

Hi, I want to power a very simple shopping-cart where I will be selling software. I've checked a bunch of them already and still can't find what I need. Most of shopping-carts don't have "virtual product" functionality. Among those that have this feature are PrestaShop and Magento. Presta doesn't have this feature implemented very wel...

what are the must have functionalities for a web shop (shopping cart)

what are the must have functionalities for an e-commerce web shop? e.g. unlimited categories and sub categories multiple categories per product multiple product images product consumer ratings and comments payment gateway integration delivery service integration Best Sellers Newest Products List discount facilities promotional facilit...

Recurring Profile and Bundled Item

I have a subscription service that people pay monthly for, so I’ve setup a “Virtual Product” with a Recurring Profile. At the same time, I want to have it so they can add different one time products. To accomplish this I’ve tried creating a “Bundled Product” with all the different one time products and adding the “Virtual Product” to tha...

Submitting merchant defined shipping options using Google Checkout direct submission

Is it possible to set the shipping options in Google Checkout without using the server-server submission option? I'm trying to keep this checkout process as simple as possible (mostly because I do not fully understand the server-server API section), and therefore I'm using the direct submission option in Google Checkout (details here. ...

ASP shopping cart

Hello based on the example at http://www.15seconds.com/issue/010411.htm i will like to create an ASP shop but i would like to rewrite the connection to db as i don't have a dedicated server . Instead of Sub SubGetDSNCreateConn strBasketDSN = Application("strBaskDSN") set BaskConn = server.CreateObject ("ADODB.Connection") BaskConn.Conn...

PayPal IPN returning a shopping cart or order ID for post-processing

I have successfully posted my custom shopping cart to PayPal -- it processes the order just beautifully, and when the payment is received, it posts data back to the URL I specified in the config. The code is based on the library found here: http://www.phpfour.com/blog/2009/02/php-payment-gateway-library-for-paypal-authorizenet-and-2chec...

Purchase physical product from iPhone app without Apple in app purchase

Can an iPhone app allow a user to purchase a physical product (say a pen or a mouse) from inside an app, without using Apple in app purchase? Is it allowed by Apple? If yes, do you know any API that supports this? Thanks AJ ...

Persisting a shopping cart in Ruby on Rails

Currently developing a shopping cart, the options for persisting the cart, as i see them are: Store the entire cart object in a sessions table. Store the entire cart object in a cookie session. Have a cart table, and store the cart id in a cookie session. Have i missed any? which is the best to roll with please? Thanks ...