Skip to content
View sudhanshu-bajaj's full-sized avatar
Block or Report

Block or report sudhanshu-bajaj

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. lsretailomni/lsmag-two lsretailomni/lsmag-two Public

    LS Ecommerce - Magento, an ecommerce interface for integrating Magento with LS Central.

    PHP 10 15

  2. ProductPreview ProductPreview Public

    Magento 2 Admin Product Preview module

    PHP

  3. StorePickup StorePickup Public

    Magento 2 Store Pickup Shipping Method module

    PHP 4 2

  4. Magento 2: How to delete all custome... Magento 2: How to delete all customers data?
    1
    SET FOREIGN_KEY_CHECKS = 0;
    2
    TRUNCATE TABLE `amazon_customer`;
    3
    TRUNCATE TABLE `customer_address_entity`;
    4
    TRUNCATE TABLE `customer_address_entity_datetime`;
    5
    TRUNCATE TABLE `customer_address_entity_decimal`;
  5. Magento 2 : How to Backup Db, Media,... Magento 2 : How to Backup Db, Media, Code command line
    1
    #If the Magento backup functionality does not start or displays the following message, you need to enable the feature prior to backing up.
    2
    # - Backup functionality is disabled.
    3
    # - Backup functionality is currently disabled. Please use other means for backups.
    4
    $ php bin/magento config:set system/backup/functionality_enabled 1
    5
    $ php bin/magento setup:backup --code
  6. Magento 2 : Truncate Products & Cate... Magento 2 : Truncate Products & Categories MySql
    1
    SET FOREIGN_KEY_CHECKS = 0;
    2
    TRUNCATE TABLE `catalog_product_bundle_option`;
    3
    TRUNCATE TABLE `catalog_product_bundle_option_value`;
    4
    TRUNCATE TABLE `catalog_product_bundle_selection`;
    5
    TRUNCATE TABLE `catalog_product_entity_datetime`;