All Projects → netgen → ezplatform-sylius

netgen / ezplatform-sylius

Licence: other
eZ Platform and Sylius eCommerce integration

Programming Languages

shell
77523 projects
PHP
23972 projects - #3 most used programming language
VCL
57 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ezplatform-sylius

SyliusWishlistPlugin
This plugin allows you to integrate wishlist features with Sylius platform app.
Stars: ✭ 51 (+64.52%)
Mutual labels:  ecommerce, sylius
PayPalPlugin
Official integration with PayPal Commerce Platform
Stars: ✭ 21 (-32.26%)
Mutual labels:  ecommerce, sylius
Gatsbylius
Fastest PWA eCommerce solution. Joins us as contributor.
Stars: ✭ 67 (+116.13%)
Mutual labels:  ecommerce, sylius
SyliusBannerPlugin
Add Banners to your Sylius projects with this plugin
Stars: ✭ 13 (-58.06%)
Mutual labels:  ecommerce, sylius
sitemap-plugin
Sitemap Plugin for Sylius eCommerce platform
Stars: ✭ 68 (+119.35%)
Mutual labels:  ecommerce, sylius
SyliusReportPlugin
Report Plugin for Sylius. This plugin add a report interface to the Sylius administration. Some reports comes with this bundle but you can create your custom reports.
Stars: ✭ 25 (-19.35%)
Mutual labels:  ecommerce, sylius
SyliusInvoicingPlugin
This plugin enables generating invoices in Sylius platform application.
Stars: ✭ 21 (-32.26%)
Mutual labels:  ecommerce, sylius
Sylius
Open Source eCommerce Platform on Symfony
Stars: ✭ 6,598 (+21183.87%)
Mutual labels:  ecommerce, sylius
django-ecommerce-wagtail
Django E-Commerce Tutorial: Wagtail CMS + Snipcart
Stars: ✭ 48 (+54.84%)
Mutual labels:  ecommerce
awesome-shopify
👩‍🎓👨‍🎓 Must-read articles, videos and books for store owners, app and theme developers.
Stars: ✭ 86 (+177.42%)
Mutual labels:  ecommerce
taxjar-php
Sales Tax API Client for PHP 5.5+
Stars: ✭ 66 (+112.9%)
Mutual labels:  ecommerce
mytek
Django e-commerce web application with advanced features
Stars: ✭ 27 (-12.9%)
Mutual labels:  ecommerce
ecommerce integrations
Ecommerce integrations for ERPNext
Stars: ✭ 54 (+74.19%)
Mutual labels:  ecommerce
WF-website
Website for Western Friend, part of the Religious Society of Friends
Stars: ✭ 34 (+9.68%)
Mutual labels:  ecommerce
kasir
Cashier Management & Inventory Management System
Stars: ✭ 28 (-9.68%)
Mutual labels:  ecommerce
SyliusCmsPagePlugin
A Sylius plugin to manage your CMS pages
Stars: ✭ 26 (-16.13%)
Mutual labels:  sylius
raptor
A lightweight product recommendation system (Item Based Collaborative Filtering) developed in Haskell.
Stars: ✭ 34 (+9.68%)
Mutual labels:  ecommerce
wongames
🎮 Ecommerce de jogos no estilo Steam. Desenvolvido com Next.js, TypeScript, GraphQL, etc.
Stars: ✭ 18 (-41.94%)
Mutual labels:  ecommerce
teini
👶 Teini (tiny, [ˈtīnē]) is an extremely small webshop leveraging awesome and free solutions like Github and Vercel.
Stars: ✭ 148 (+377.42%)
Mutual labels:  ecommerce
inshop-crm-ecommerce
Inshop CRM / ERP ecommerce. It's powerful framework allows to build systems for business with different workflows. It has on board multi language support, clients management, projects & tasks, documents, simple accounting, inventory management, orders & invoice management, possibilities to integrate with third party software, REST API, and many …
Stars: ✭ 48 (+54.84%)
Mutual labels:  ecommerce

eZ Platform & Sylius eCommerce integration

This is a proof of concept integration of eZ Platform & Sylius eCommerce. eZ Platform being a really good CMS, and Sylius being a really good eCommerce solution, both running on Symfony full stack framework, and considering the fact that there is no quality solution that does both CMS and eCommerce right, it is only natural to try and connect the two.

Here both, eZ Platform and Sylius, run on same Symfony full stack instance. A bundle exists to assist the integration, by implementing custom user providers that make it possible to connect the users together.

Sylius users act as primary users, while eZ Platform users are secondary, you can use them (if they're connected to Sylius users) or not, it's up to you. However, you will at least need one Sylius admin user to be connected to one eZ Platform admin user in order to enable seamless login to both admin panels.

Limitations

Due to way Sylius users are implemented, it is currently not possible to be logged in with both Sylius admin and Sylius shop users. Use a second browser or incognito mode to login both ways. Hopefully, this will be solved by the time this integration reaches a stable release.

Installation instructions

Run the following instructions to install the integration. This will first install Sylius, then install eZ Platform, and finally connect the admin users from Sylius and eZ Platform together.

IMPORTANT

Always make sure your default locale is compatible with default locale from your eZ Platform database. app/config/config.yml file sets the default locale to en_GB due to eng-GB (which is converted internally to en_GB) being the default locale in eZ Platform clean data.

Due to how Sylius install process works and the fact that this integration requires additional database tables, you first need to create the database schema and then run Sylius install command. Due to this, when asked by Sylius install command, DO NOT drop and create the database and its schema (meaning, answer the first two questions NO).

$ git clone https://github.com/netgen/ezplatform-sylius.git
$ cd ezplatform-sylius
$ composer install
$ php bin/console --env=prod doctrine:schema:create
$ php bin/console --env=prod sylius:install
$ php bin/console --env=prod ezplatform:install clean
$ php bin/console --env=prod assetic:dump
$ php bin/console --env=prod assets:install --relative --symlink
$ php bin/console --env=prod ezsylius:user:connect

To connect the users, when asked, select the admin Sylius user type, then enter the e-mail address of Sylius admin user (the one you specified while running sylius:install command), then enter the username of eZ Platform admin user (usually admin).

Once all this is done, you will need to generate assets for Sylius frontend and backend interfaces. You need yarn installed for this. Once installed, to generate the assets, run the following from the project root:

$ yarn install
$ yarn build

eZ Publish legacy administration

When installing and activating eZ Publish legacy administration interface, be sure to activate the EzSyliusBundle after EzPublishLegacyBundle.

To activate support for Sylius Product field type in legacy administration interface, activate ezsylius legacy extension in your INI files, regenerate legacy autoloads and clear legacy caches.

Access the eZ Platform admin interface

eZ Platform admin interface is available in standard /admin route. Use the Sylius admin username and password to login.

Access the Sylius shop and Sylius admin interface

If you didn't change any parameters while running composer install, Sylius shop will be available at /shop, while Sylius admin interface will be available at /sylius/admin/. If you don't like these paths, you can change them in app/config/sylius_parameters.yml.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].