Magento Admin error 404

3

I changed my store in magento to another domain, I changed the urls in the database, and I cleaned the cache, the home accesses normal, but the admin is giving error 404 , how should I proceed?

Magento Store

    
asked by anonymous 19.12.2014 / 14:22

1 answer

2

Your problem is index.php

link

Configure your htaccess correctly or enable url retrieve in your php.ini

Other things that can be

It can be build enabled, if it is disabled or recompile, if admin is locked all pages in 404 use:

php -f shell/compiler.php -- state
php -f shell/compiler.php -- disable
php -f shell/compiler.php -- enable
php -f shell/compiler.php -- clear

It can be cache, cookies, checks the local.xml file where it contains bank and password if admin access has not changed.

This is accessing normal link You may have enabled browsing admin with https, then when you enter http from 404.

You may have missed '/' at the end of some url

    
19.12.2014 / 15:28