Monday, 13 August 2018

Magento 2 admin url not working and Frontend is messy

1) In core config table change value for web/seo/use_rewrites to 0 
2) disable versioning form admin:
    System>Advanced>developer: Static Files Settings: No

Query to do this:

INSERT INTO 'core_config_data' ('path', 'value') VALUES
VALUES ('dev/static/sign', 0) ON DUPLICATE KEY UPDATE value
ON DUPLICATE KEY UPDATE value = 0;

3) Run command to clear a configuration cache:
     magento cache:clean config

No comments:

Post a Comment