Established bloggers who implement strong…
-
admin
-
November 5, 2022
-
UI & UX, Website
-
0 Comments
To mark the first UK show of artist Herni Brande, developers ThemesCamp and German studio schultzschultz have created the Ledge Wooden at Berlin city. Today most people get on average 4 to 6 hours of exercise every day, and make sure that everything they put in their mouths is not filled with sugars or preservatives, but they pay no attention …
Continue Reading
Magento 2 Custom Shipping Method based on Weight & Size
-
admin
-
September 8, 2021
-
Magento 2
-
0 Comments
# Magento 2 Custom Shipping Method based on weight & size This module provide a custom shipping method on the site. ## Condition Shipping charge will be calculated according to product size and weight. a. If weight is more than 10 KG and size is less than 100 CM, Shipping Charge will be 100 TK b. If weight is less …
Continue Reading
Magento 2 Hello World Module Development
-
admin
-
September 7, 2021
-
Magento 2
-
0 Comments
Magento 2-Hello World Module Learn how to create a hello world module in Magento 2 After create the module if you run the command as: php bin/magento module:status To enable a module in Magento 2 php bin/magento module:enable Zendanwar_Magetigers Please upgrade your database: Run bin/magento setup:upgrade from the Magento root directory. Let run the following command: php bin/magento setup:upgrade Please …
Continue Reading
What is Zookeeper?
-
admin
-
August 17, 2020
-
DevOps
-
0 Comments
ZooKeeper provides multiple feature for distributed applications. It can manage large set of hosts & complicated process. Distributed configurations managements. Self election/ Consensus building. Coordination and locks. Key value store. Zookeeper used in many distributed systems like Hadoop, Kafka.
Continue Reading
How to check Django installed version?
-
admin
-
December 20, 2019
-
Python
-
0 Comments
Type the following command in Python shell >>> import django >>> django.get_version()
Continue Reading
How can I get python help from cli
-
admin
-
March 10, 2019
-
Python
-
0 Comments
Just run bellow command in your terminal > python manage.py help
Continue Reading
Magento 2 after install showing blank page
-
admin
-
February 26, 2019
-
Magento 2
-
0 Comments
Very simple. Please go to below file location C:\xampp\htdocs\magento23\vendor\magento\framework\View\Element\Template\File\Validator.php Replace below code : protected function isPathInDirectories($path, $directories) { if (!is_array($directories)) { $directories = (array)$directories; } $realPath = $this->fileDriver->getRealPath($path); foreach ($directories as $directory) { if (0 === strpos($realPath, $directory)) { return true; } } return false; } With: protected function isPathInDirectories($path, $directories) { if (!is_array($directories)) { $directories = (array)$directories; } $realPath …
Continue Reading
Database user does not have enough privileges. Please make sure SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, View, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, S HOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER privileges
-
admin
-
February 25, 2019
-
Magento 2
-
0 Comments
Very simple Check into my.ini file in MySql config section and check whether skip-grant-tables is there below #skip-grant-tables
Continue Reading
How to get all cli command in Magento 2
-
admin
-
February 11, 2019
-
Magento 2
-
0 Comments
It’s very simple. Just go to your root directory. And run following command C:\xampp\htdocs\magento2> php bin/magento Output : Magento CLI 2.3.0 Usage: command options arguments Options: -h, –help Display this help message -q, –quiet Do not output any message -V, –version Display this application version –ansi Force ANSI output –no-ansi Disable ANSI output -n, –no-interaction Do not ask …
Continue Reading
Magento 2 delete all sample product data from database
-
admin
-
February 3, 2019
-
Magento 2
-
0 Comments
SET FOREIGN_KEY_CHECKS = 0; TRUNCATE TABLE `catalog_category_product`; TRUNCATE TABLE `catalog_category_product_index`; TRUNCATE TABLE `catalog_category_product_index_tmp`; TRUNCATE TABLE `catalog_compare_item`; TRUNCATE TABLE `catalog_product_bundle_option`; TRUNCATE TABLE `catalog_product_bundle_option_value`; TRUNCATE TABLE `catalog_product_bundle_price_index`; TRUNCATE TABLE `catalog_product_bundle_selection`; TRUNCATE TABLE `catalog_product_bundle_selection_price`; TRUNCATE TABLE `catalog_product_bundle_stock_index`; TRUNCATE TABLE `catalog_product_entity`; TRUNCATE TABLE `catalog_product_entity_datetime`; TRUNCATE TABLE `catalog_product_entity_decimal`; TRUNCATE TABLE `catalog_product_entity_gallery`; TRUNCATE TABLE `catalog_product_entity_int`; TRUNCATE TABLE `catalog_product_entity_media_gallery`; TRUNCATE TABLE `catalog_product_entity_media_gallery_value`; TRUNCATE TABLE `catalog_product_entity_media_gallery_value_to_entity`; TRUNCATE TABLE …
Continue Reading