项目作者: bagisto

项目描述 :
Bagisto Bulk Upload
高级语言: PHP
项目地址: git://github.com/bagisto/bagisto-bulk-upload.git
创建时间: 2020-05-19T07:22:06Z
项目社区:https://github.com/bagisto/bagisto-bulk-upload

开源协议:MIT License

下载


⚠️ Disclaimer

This repository is no longer maintained as the bulk upload feature is already available in the core.

For the latest updates and features, please refer to the main core repository.

Bagisto Bulk Upload

Latest Stable Version Total Downloads License

By using this add-on, the admin can mass/bulk upload products of all types: simple, configurable, virtual, grouped, bundle, downloadable, booking.

It packs in lots of demanding features that allows your business to scale in no time:

  • Product can be upload by CSV / XLS files.
  • Data profile creation feature for admin.
  • Each attribute has a different column.
  • Image attachment with the product within CSV/XLS.
  • If there is any error in the CSV / XLS file, then products will not be uploaded and hence customer/admin will come to know about the error.

Requirements:

  • Bagisto: v1.3.3

Installation with composer:

  • Run the following command

    1. composer require bagisto/bagisto-bulk-upload
  • Goto vendor/bagisto/bagisto-bulkupload and copy the storage folder and merge it into the root of your project.

  • Goto config/concord.php file and add following line under ‘modules’

    1. \Webkul\Bulkupload\Providers\ModuleServiceProvider::class
  • Run these commands below to complete the setup

    1. composer dump-autoload
  1. php artisan migrate
  2. php artisan storage:link
  3. php artisan route:cache
  4. php artisan config:cache
  5. php artisan vendor:publish

-> Press 0 and then press enter to publish all assets and configurations.

Installation without composer:

  • Unzip the respective extension zip and then merge “packages” and “storage” folders into project root directory.
  • Goto config/app.php file and add following line under ‘providers’
  1. Webkul\Bulkupload\Providers\BulkUploadServiceProvider::class
  • Goto composer.json file and add following line under ‘psr-4’
  1. "Webkul\\Bulkupload\\": "packages/Webkul/Bulkupload/src"
  • Goto config/concord.php file and add following line under ‘modules’
  1. \Webkul\Bulkupload\Providers\ModuleServiceProvider::class
  • Run these commands below to complete the setup
  1. composer dump-autoload
  1. php artisan migrate
  1. php artisan storage:link
  1. php artisan route:cache
  1. php artisan vendor:publish
  2. -> Press 0 and then press enter to publish all assets and configurations.

That’s it, now just execute the project on your specified domain.