English 中文(简体)
Cakephp Shopping Cart [closed]
原标题:

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 6 years ago.

I was wondering which php based carts will be the easiest to integrate with cakephp.

I ve heard about bakesale but I have no info on it whether is up to par with magento, cubecart or other carts out there. It s been a while since they have updated info on bakesale (August 2008). So if anyone has any info how reliable and secure bakesale is or is it better to use other php carts any info wil be appreciated.

最佳回答

That depends on how tightly you want the cart integrated with the rest of your Cakephp app.

I have tried Bakesale for online store, and I ended up dumping it for ZenCart after too many complaints from the client. I tried bakesale because it seemed simple, but it was too simple. It is does not have all of the features of a Magento or ZenCart. Some parts of it are unfinished or just plain broken.

Bakesale is a nice Cakephp app but really misses the mark as an ecommerce solution.

The development on both bakesale and phpshop seem pretty dead. I would suggest building your cake app separate and then setting up something like store.mydomain.com using magento. There are still ways of getting them to talk to one another.

问题回答

Recent, I ve released a shopping cart plugin for CakePHP called Kaching found at http://code.google.com/p/kaching-php/. It s a middle ground between Magento and Bakesale. I found Magento tried to make every store fit into the same mold and Bakesale lacked features.

With Kaching you create the store s look and feel by interacting with Kaching s controllers. There is no need to build a store administration because one is provided.

I heard phpshop was being re-written as a Cake app - not sure how far along they are... or why they aren t writing it as a plugin!

Given that Magento is written in Zend, which like CakePHP is MVC framework, you might be better off writing the site in Zend. I ve coded in both frameworks and they have a lot in common due to the MVC nature, though CakePHP certainly has more automagic functionality.

Cart plugin for CakePHP 2.0. Still in development but already useable, it follows coding standards and has unit tests. https://github.com/burzum/cart





相关问题
PHP Framework: Ebay Like Site

I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, ...

specifying date format when using $form->inputs() in CakePHP

I am wondering if there is a way to specify the date format in the forms created using CakePHP s $form->inputs(); Please note that this is not the individual $form->input() but instead $form->inputs() ...

Using DISTINCT in a CakePHP find function

I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list. Choose the filter ...

Assistance with CakePHP model relationships

How would I represent the following in a CakePHP model? Product ======= product_id .... Cart ==== cart_id .... Carts_Products ============== cart_id product_id quantity

Prevent controller from trying to autoload model

I am a beginning Cake user and trying to do some work on an already existing application. Running into a problem when I create a new controller. I have created StoreController and when I try to call ...

热门标签