Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Symfony vs other frameworks for an eCommerce site

Currently, I am looking to switch from a home grown eCommerce website to a custom site using a framework. I need something that can upscale (handle hundreds to thousands of transactions), is easily maintained, and simple to customize.

I was recommended the symfony framework by an outside source, but I have not previously heard of it. My understanding is that using something like symfony would still require integrating magento (or its ilk) for commerce on the back end.

Is there a better solution? Is there another platform that would fulfill all of my needs?

like image 408
Brent Avatar asked Mar 23 '11 22:03

Brent


People also ask

Which backend is best for eCommerce website?

Some popular backend frameworks are express. js, Django, Ruby on Rails, etc. And all of these backend frameworks need an environment conducive to work.

Should I use Symfony or Laravel?

Laravel is known for its simple and fast coding approach and works great for building effective web apps in PHP. Symfony is a web app PHP framework that has a large community and a wide number of open-source projects. It also relies on MVC pattern and just like Laravel can be used on various computing platforms.

Is Symfony good framework?

This framework makes it extremely simple when it comes to authorization – you only need to configure a database and models during migration. Symfony is an excellent choice for long-term, complex projects. It will cost you more money, but it will repay you when you want to personalize your app.


1 Answers

It's hard to say what platforms would suit your needs without knowing what they are :) Do you have specific requirements that are unusual in the ecommerce world? Having said that, a decent ecommerce framework will allow you to adapt the core functionality to suit your needs in a robust manner.

As @usoban suggests, Magento doesn't require Symfony, but it is built using the Zend Framework. So if you're familiar with the Zend patterns, then you will adapt to Magento much quicker.

Magento has a broad range of features "out of the box" and is certainly capable of scaling to large volumes of transactions and visitors.

It does require serious hardware and resource optimization in that high-end configuration, but there is a body of knowledge on how to achieve that both on the Magento site and elsewhere on the web. The Enterprise Edition is also designed for performance (includes Full Page Caching) along with features/functionality that are important for administration of serious ecommerce (content merging and staging, granular permissions, etc).

You will hear a lot of complaints about Magento's learning curve, and they are mostly justified, particularly if you are coming from a traditional PHP coder background. However, if you take the time to work through the tutorials, and recognize that the complexity is due to the power and flexibility of the system, you are likely to find it worthwhile. Also, us StackOverflow peeps reckon that you'll get much better support here than on the Magento forums :) There tends to be some questionable advice there, at least here you can see what the peers think of the answers :)

Hope all this helps!
JD

like image 90
Jonathan Day Avatar answered Oct 04 '22 01:10

Jonathan Day