Add code

Saturday 26 March 2022

Magento : 404 error is showing admin page

Hello, Sometimes we may get the error on admin page once done with the Magento installation.


In that scenario, we have to do the following:

SET FOREIGN_KEY_CHECKS=0;

UPDATE `core_store` SET store_id = 0 WHERE code='admin';

UPDATE `core_store_group` SET group_id = 0 WHERE name='Default';

UPDATE `core_website` SET website_id = 0 WHERE code='admin';

UPDATE `customer_group` SET customer_group_id = 0 WHERE customer_group_code='NOT LOGGED IN';

SET FOREIGN_KEY_CHECKS=1;

Sunday 20 March 2022

What is the recent version of Magento as on February 2021 ?

 Magento is an E commerce plat form we all know this. This Magento is releasing in a different version by having a small and major changes as per the forums.

Here, we found the full and the final version of this Magento is 2.4.2, 2.4.1-p1 and Magento 2.3.6-p1 are the versions available to the people on February 9th, 2021

Magento : 404 error is showing admin page

Hello, Sometimes we may get the error on admin page once done with the Magento installation. In that scenario, we have to do the following: ...