I am developing an eCommerce site and we already have a site which displays the list of products/stock available for purchase. If the user adds the products to his cart he will be redirected to my site. In my site I have to handling the following workflow:

  1. Shopping Cart
  2. Shippment Details
  3. Payment
  4. Order Processing.

I tried to use open source ecommerce packages like OpenCart, Magento, osCommerce, etc. But all of them have the product/catalog included in them. I don't want the product or catalog page. I only want the shipping cart page.

So I either I have to develop an ecommerce solution from scratch or tailor one of the open source ecommerce.

Would starting from scratch be better or tailoring a existing platform?

I plan to develop an open source cart using PHP (I am planning to use CodeIgniter).

link|improve this question
1  
Why was this down-voted? – Mike Purcell Nov 10 '11 at 17:37
feedback

1 Answer

This seems pretty complex.

Personally I would do it from scratch. This seems to be too much involved for a ecommerce facility to handle unless you are comfortable editing their own PHP files.

If you do choose to use a program like magento you could disable the shopping cart, so when the user goes to pay they will be redirected to your website.

To gather all of the customer information you will have to link your database to the magento database to gather the cart & stock information. Your website will need to find out which shopping basket to use (example basket_id 0001, basket_id 0002) as you will have many baskets on your magento database.

Once the order is complete you will have to write another script from your website to change the product stock.

I hope this makes sense to you, but I would try find a system that does this.

link|improve this answer
Thank you very much, Mean while I found interesting Shopping Cart(GoCart) based on CodeIgniter. I tried to customize it. Its easy to remove the Catalog/Products page. It almost suits my requirement. So any one who wants to use a ecommmerce package without Catalog/products can have a look into GoCart[link](gocartdv.com). – Dinesh P.R. Nov 11 '11 at 4:02
Glad you found something:) – Peter Stuart Nov 11 '11 at 13:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.