shopping-cart

How to integrate cardinalcommerce authentication processing in a flash and Asp.net project?

Our Asp.net//Flash team doing a shopping cart project. We are integrating First Data Alternative payment gateway. Shopping cart items are selected through flash and our asp.net team taking the data from flash and integrating the first data alternative payment. We have already integrated first data payment gateway. Now we want to integra...

How can i verify mastercard and visa card in my shopping cart project?

My team working in a shopping cart project We have integrated First data payment Gateway Now we want to verify the master card and visa I need to authenticate the master card SecureCode based on the link given below http://www.mastercard.com/us/personal/en/cardholderservices/securecode/how_it_works.html Please provide any api or necessa...

Modify php shopping cart to support multiple drop down menus

I have a shopping cart script that I am trying to modify to support multiple product selection. As it is now, the customer can select a product from a single drop down menu. Now, I would like to add multiple dropdown menus (all populated with the same options). Here is the php that outputs the dropdown menu: if($eshopoptions['options_...

Is it possible to make a shopping cart persistent in Ubercart

I would like users to be able to have persistent shopping carts. In other words, unless they check out the shopping cart explicitly the shopping cart with the same items should be available the next time they visit the site. Obviously this would be through the use of a cookie... Is this possible in Drupal? ...

Functionality Workthrough of "price.phtml" template of catalog products in Magento

Can anybody please describe the total walkthrough of the catalog product's price.phtml template file? I have been trying to understand its full functionality, in how it implements its price logic, for the special price, wee price, regular price, and all of those; but have reached nowhere till now. Any help is greatly appreciated. After...

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...

Ecommerce database design looking for good book

Hi I looking for good book about E-commerce database design. Thanks ...

Get the current array key in a multi dimensional array

Hi *, I have a session array *$_SESSION['cart']* with some items in it. The structure ist like this (via *print_r*): Array ( [2-1] => Array ( [color] => 7 [articlenumber] => WRG70 10 [quantity] => 1 [price] => 17.50 ) [3-8] => Array ( [color] => 2 [articlenumb...

How can we get First flash file data in asp.net (C#) after two or three form submission?

Our team working on flash/Asp.net shopping cart projects In our projects we need to get previous flash file data. After two or three form submission the first page flash file data are missing. How can we maintain the state of flash file data? If any idea please help our team to do the task ...

Cakephp, an elegant solution to quantities?

Hi, I have a shopping cart system in Cakephp, this table has all your usual maguffins: user_ids, product_ids, option_lists ect. It also has quantity. I currently have some awful nested loops to check if the record is the same as any in there, if so add one to the quantity. If not add a new cart item. This loop has to check associated ...

How to fix First Data payment gateway issues "unable to load certificate" ?

Our asp.net team working on Shopping cart projects We have integrated First Data payment gateway for payment process We have included Visa/master card verification using Alternative First Data payment gateway After visa/master card verification we got cavv(secure code), xid, eci values. After getting cavv, xid and eci values we have app...

Open source Java ecommerce software

Are there some recommendable open source ecommerce solutions written in Java? Something like OsCommerce or Magento? I've found a similar question ...

Clean Up Controller, Update Item Quantity within Cart

Hi guys I was wondering if anyone could help me out, I need to clean up this controller as the resulting code to simply update an items quantity if it already exists seems way too complex. class LineItemsController < ApplicationController def create @product = Product.find(params[:product_id]) if LineItem.exists?(:cart_id => ...

Basic Steps for creating a Shoping Cart Website

Hi, I want to create a shoping cart web site using .Net and C#. I am intermediate for C# and SQL Server. Have no idea as of on how to start with a Shoping cart website ,my sincere grattitude towards any usefull link or suggestions and help . Thanks, Subhen ...

Really basic Django E-commerce? Where do I start

I'm trying to set up a really basic e-commerce site with Django, and am trying to figure out the best place to start. I am relatively comfortable with the framework itself, but have never done any sort of e-commerce development in any language, so I want to learn about some best practices so I don't make any huge or obvious mistakes. I'...

Difference between two commands of fetching Shopping Cart Items in Magento

In Magento, if you need to get / fetch the Shopping Cart's Item details, you can do it in any of the two possible ways, which will provide you with all the shopped Items in an array:- $cartItems1 = $cart->getQuote()->getAllItems(); $cartItems2 = $cart->getItems()->getData(); But before using any one of the above two methods, you need...

Shopping cart in php and how to integrat PayPal in it?

Hello Friends! I want to develop a shopping cart in php. I also want to integreate online payment facility using paypal. Which allows payment thrugh credit card and decbit card. So Please tell me how to integreate paypal in my own shopping cart to achive secure transaction? Thank You! ...

adding items to shopping cart before login

i have a user system i wrote addin a session("userid") to identify a logged in user. but i want to allow adding stuf to the shopping cart. so upon press of "add to cart" a new order is started in my database. but how can i tie the current unlogged user to that order number? i was thinking of logging some session("unknownuserid") and bi...

Suggest product catalog script/framework in PHP which doesn't displays product price

Hey all, I am new to web development and have this project in hand where in I have to build a product catalogue. I don't want any cart functionality or other such features, I just want to display the products,their specifications and images etc. on the website and give my client an admin panel to manage products. Now I looked into variou...

Disable Link while animated Basket

Hi, I'm using this script for my online shopping basket: http://www.webresourcesdepot.com/fly-to-basket-effect-with-jquery/. Like people suggest in the comments it's easy buggy when you click multiple times on the same image. How can I disable the img link when it's clicked once and re-enable it when the product is added to the basket?...