cart

ASP.NET small online store, shopping cart

Currently I have a site that is using Google Checkout's mini cart system and I like it a lot, however, I'm wondering if there is a more professional way of doing it, while still keeping it simple. I've looked into an authorize.net account, but I need to find a way to handle the mini shopping cart before heading off to process the order....

Ecommerce::Shopping cart::Where should i store shopping cart data in session or in database

Where should I store shopping cart data in session or in database? (I think in amazon.com shopping cart after user logout and after month login again his orders that he choose in shopping cart saved) Thanks, Yosef ...

Building a simple cart using object orientated PHP

I've built basic shopping carts with PHP before but in an attempt to get my feet wet with OOP, I'd like to try using that method. I come from a design background but do understand some basics of OOP but would like to see a tutorial or something simple I could base this on. The site is small and the cart functionality required is very s...

Multiple items in a PHP shopping cart

I'm in the progress of making a shopping cart in PHP. To check if a user has selected multiple products, I put everything in an array ($contents). When I output it, I get something like "14,14,14,11,10". I'd like to have something like "3 x 14, 1 x 11, 1 x 10". What is the easiest way to do that? I really have no clue how to do it. This...

Blank Pages with Zen Cart v1.3.8 and PHP 5.3

I am trying to run a live Zen Cart store (version 1.3.8) on a my local machine which is PHP 5.3. I am aware of the incompatibilities between both versions and have dealt with it by applying the patch found here: http://www.zen-cart.com/forum/showthread.php?t=140960 I am able to login the admin side no problem, but when i navigate to the...

Magento: add product twice to cart, with different attributes!

Hello all, I have been working with this for a whole day but i cannot find any solution: I have a product (lenses), which has identical attributes, but user can choose one attribute set for one eye and another attribute set for another. On the frontend I got it ok, see it here. So the user can select attributes for left or right eye, ...

how can i pass zen cart auth to an admin page?

I am adding some pages to zen cart admin and I need to update order records from an external process. when i call the page externally it returns a redirect to the login page. how can i pass the auth data to the page so that it doesn't redirect? ex: www.domain.com/admin/do_update.php?admin_name=auser&admin_pass=apass my preference is t...

Store shopping Cart cookie in user profile to persist

Hi, I m working with a complexe nested cart items and i need to store my session cookies in the user profile to persist. I use one custom profile extender to store cookies but i don´t found the solution to make it persistent. I have tried using custom types serialized binaries with no sucess. Thanks for your help. source base from:lin...

Order notification - GPRS/SMS etc

Hi, I am trying to make a site for a pizza shop.I am using Zen Cart. I wanted to know, what are my options in terms of notifying the shop in real time when there is a new order. I find an email notification inappropiate for a pizza shop. I am thinking of some sort of device (printer). I know a little about an GPRS/SMS printer. Can s...

Personalized or Custom Input Fields for Products with Shopping Cart

Hey Everyone, I have a question revolving around the idea of customized or personalized products. I have been researching the heck out of the existing cart solutions, both open source and paid looking for a solution. I'm not a developer myself, but I do have some technical knowledge and developers on staff. Here's my question. I hav...

Need help in identifying a shopping cart software.

Hello, I am building a website I would like to use the same shopping cart that this company uses. I have been told that they use a "popular" software and that they must pay a license for its use. Could you look at the feel of it and tell me which one they are using? The website is https://www.gtldna.com/cgi-bin/cart/cp-app.cgi?rrc=N&...

CubeCart 4 - "In Stock Now" category

Hey Guys, How can I create a category that shows JUST the items that are in stock now? http://www.lovejungle.com/store Surely it shouldn't be too hard if you can - "Enable out of stock purchases" set to no. h ttp://forums.cubecart.com/index.php?showt...nstock+category ...

php shopping cart api

hi there friends, i was wondering if there is an API for a shopping cart (PHP). I have looked at solutions like opencart etc, but i have my own design and i just need some kind of API which i can use and add the shopping functionality directly into my website. I was thinking like ExternalCart->createNewProduct(...); or ExternalCart->s...

CodeIgniter Cart ID + Options

I have a situation: I have products that are in a CodeIgniter Cart custom store. Each product has an ID associated with it, but also has options for it (sizes). These sizes all have different prices. (We're talking about photos being sold at different print sizes). Because CI Cart updates, adds and deletes based on the product ID inser...

Django/Satchmo - Clearing the Shopping Cart after Successful PayPal payment

After a successful Paypal payment, I receive the IPN and the payment creates a new order. However, the shopping cart does not clear. Rather than wait for the IPN I would like to alter the payment.view.checkout.success code to clear the cart after a successful payment. The code to empty the cart is: for cart in Cart.objects.filter(...

PHP: Removing items from a session

I'm having trouble removing items in a session array in a shopping cart project. The following code should take the selected item and remove it from the session. However the end result is just the same session as before with nothing removed. I've seen similar problems by googling, but haven't found a working solution yet. Here is the str...

codeigniter: ion auth with shopping cart

Hi all, I am integrating ion auth with the codeigniter cart, both are working independently however if I have items in my cart then I login, I lose the cart items. Guess this is session related, I have scanned the login scripts and doesnt seem to be ended the session and starting a new one, so I am a bit lost. Fairly new to codeignite...

magento add to cart problem

Hello in my magento project add to cart problem in FF,safari,chorm. add to cart is working in IE but not in another bowser. Plz guide me right way. ...

Magento Cart: Check for items empties cart

I am new to Magento, but I thought I had a grasp on it until today. Here is my problem. I am writing a new Observer to add a coupon to the cart on page load. The coupon code is passed in the URL and I desire the code to be passable through ANY working URL. For example: http://magento/?coupon=MYCOUPON I am catching on the event "contro...

coding first php cart - advice needed

I'm a php noob attempting my first shopping cart. I intend to use paypal checkout when the cart is ready. I'm having fun playing with this but need assistance. Here is what I got so far: futurekode.com/uikits/store.php I'm using form post to send the quantities to the cart.php page. My question is how do I populate the table on the ca...