Manifest Desires

Manifest Desires

The Billionaire Brain Wave

The Billionaire Brain Wave

The Divine Praye

The Divine Prayer

The Genius Wave

The Genius Wave

Wealth DNA Code

Wealth DNA Code

Change magento 2 admin password command line

Reset Magento 2 admin password via command line Run the below command: bin/magento admin:user:create –admin-user=”admin” –admin-password=”testpsw” –admin-email=”xxx@gmail.com” –admin-firstname=”yourname” –admin-lastname=”lastname” Reset Magento 2 admin password via Email Change Magento 2 admin password using the system admin. Go to “Admin Panel” Click “Forgot Password” Enter the Email address and click the “Retrieve password” button. Easily set new […]

Read More

What are the differences between EAV and Flat model?

What are the differences between EAV and Flat model? EAV is an entity attribute value database model, where data is fully in normalized form. Each column data value is stored in their respective data type table. For example product save in deferrent tables. product ID is stored in catalog_product_entity_int table, product name in catalog_product_entity_varchar, product […]

Read More

Your session has expired” On Clicking Add To Cart In Magento 2.3 Localhost

Use 127.0.0.1 instead of localhost UPDATE core_config_data SET value = ‘http://127.0.0.1/demo/’ WHERE core_config_data.path = ‘web/unsecure/base_url’; UPDATE core_config_data SET value = ‘http://127.0.0.1/demo/’ WHERE core_config_data.path = ‘web/secure/base_url’; Your session has expired” On Clicking Add To Cart In Magento 2.3 Localhost Run the command: php bin/magento cache:flush

Read More