Blog: Extra-ordinary

Established bloggers who implement strong…

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 Hello World Module Development

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?

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

Magento 2 after install showing blank page

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

How to get all cli command in Magento 2

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

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