vote up 1 vote down star

I want to find an ecommerce solution for my little shop. My friend tells me that Prestashop is very easy to use and develop modules for, but some say Magento is better. Can anybody tell me which is better for developing modules and why? Thank you.

flag

0% accept rate
I've tried both, and I find Magento more polished, albeit more complicated as well. Depending on what you need to get done, it might be overkill. If it is just a small project, you may want to stick with Prestashop. – Jon Sep 1 at 18:25
In my experience, Magento is an awful mess of nested dirs and files, however, after a steep learning curve, it would probably offer more functionality. I have never used Prestashop. Magento does allow you to create your own modules though, with any elements you desire. Check out the first answer [here][1]. [1]: stackoverflow.com/questions/766974/… – Nona Urbiz Sep 1 at 18:26

6 Answers

vote up 0 vote down

I am not a programmer, so I am confined to noob-like needs. At first I tried Magento, and found it to be difficult. It also "crashed" (not sure what word to use) a couple times, the last time beyond something I could figure out. I began to wonder if the entire thing was created just to get me to get in so deep that I'd need pro support to fix it when in a pinch.

So as I searched the internet looking for a decent alternative, I stumbled upon PrestaShop. I gave it a shot, since my Magento site was still RIP. Found it to be much easier to use, and I had a shop up and running (STILL up and running) in a day.

So I'm not sure what it all means, but hands down I liked PrestaShop better. I did like the options to create multiple shopping experiences within Magento, but I figure I can just use multiple PrestaShop installs to accomplish the same thing. Either way I'd have to customize 'em, anyway.

So that's my two cents, for what it's worth. Hope it helps someone.

link|flag
vote up 0 vote down

Magento is more polished, but also a beast to modify, in my experience. After using Magento for a few shops, we switched to Prestashop and are much happier. It took a bit more customization up front (French-based development left some quirks in the address forms, for example), but it is much, much simpler to wrap your brain around and to develop custom modules.

link|flag
vote up 2 vote down

There seems to be growing anger with magento as the community is slowly and painfully discovering that varien, the company behind it isn't so much interested in championing a reliable open source product, than to create a community that would require extensive commercial support.

In the 2 days that I've been researching magento, the amount of negative feedbacks that I've heard and the code quality is more than enough to steer me away. After having a look through the source, I believe the intended basic architectural principles were decent, but the execution is wrong. Many PHP programmers see OOP and call it good software. I'm reasonably well versed with the Zend Framework and am generally reluctant to refer to any code as bloat, but in this case I have few other choice of word. Magento seems to uses some Zend libraries, but the relationship doesn't warrant good quality code. Don't take my word for it, here's some evidence. I decided to follow a request to see what happens during a call to one of the action controllers, so I tried to trace calls made within the Mage_Adminhtml_Customer_GroupController::indexAction method, starting with a call to $this->loadLayout(). Pretty self explanatory right, we're loading a layout. Lets see where it takes us. The following illustrates a single thread in that one call, where each line represents a call to a new method from the preceding method:

    Mage_Adminhtml_Customer_GroupController::indexAction
        Mage_Adminhtml_Controller_Action::loadLayout
            Mage_Core_Controller_Varien_Action::loadLayout
                Mage_Core_Controller_Varien_Action::addActionLayoutHandles
                    Mage_Core_Controller_Varien_Action::getLayout
                        Mage::getSingleton                               
                            Mage::getModel
                                Mage::getConfig
                                    Mage::registry

I repeat, we're following a single thread from within one call to $this->loadLayout(). In real time each call to a method would likely initiate multiple threads as they fork and each action would likely have multiple method calls. Is anyone still surprised as to why magento would be so slow? Just because it's OOP, doesn't mean this is good code. This is over-engineering.

In addition to Prestashop, I've found 2 other interesting solutions:

  • Agent-Ohm : a fork of magento, lead by no other than the author of what is considered to be the only worthwhile, albeit unofficial, guide to magento. I suppose that if Magento is slow, buggy, hardly upgradeable, hardly supported, with poor documentation and this guy forks it, optimizes it, fixes bugs and provides documentation, there would be very little reasons not to at least try his solution. Additionally, the design tenets pretty much summarized my feeling.
  • Oxid: Another solution said to be simpler than magento. I don't know if this is necessary better, I haven't tried it yet, nor looked under the hood, but it certainly seems more promising.
link|flag
vote up 1 vote down

I haven't used Prestashop but I have recently deployed a Magento store. As others have said, I wouldn't suggest it for small, simple stores. Also, if you are on an economy server, you're likely to have sluggish page loads.

The good news is that (after a steep learning curve), it's incredibly flexible and powerful. I personally think the templating system is great.

link|flag
vote up 0 vote down

I tried both, first I use magento, which is powerful but also very require a good php setting for the server. prestashop is more easy to use, if you are small store you may choose prestashop.

link|flag
vote up 0 vote down

If it is for a 'little' shop don't bother using magento.

link|flag

Your Answer

Get an OpenID
or

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