Hi i am getting this error from last 24hrs. i tried all the possible sol in google but nothing is working for me. is there any magento expert who can fix this issue
i am getting the below error
Front controller reached 100 router match iterations
Trace: #0 /var/www/html/app/code/core/Mage/Core/Controller/Varien/Front.php(179): Mage::throwException('Front controlle...') #1 /var/www/html/app/code/core/Mage/Core/Model/App.php(365): Mage_Core_Controller_Varien_Front->dispatch() #2 /var/www/html/app/Mage.php(684): Mage_Core_Model_App->run(Array) #3 /var/www/html/index.php(83): Mage::run('', 'store') #4 {main}
i tried the code mentioned in the below link
http://www.devproblems.com/fixing-front-controller-reached-100-router-match-iterations/
This is a very common error in Magento. I will help you to explain its causes, how to debug and how to solve it as well. Please check for more details here:
[Solved] Front controller reached 100 router match iterations error in Magento
Today i faced the same error when i was creating custom module and solve it by following tutorial
Front controller reached 100 router match iterations
The mistake was i was putting moduleName instead of frontName.
$request->setModuleName('HelloWorld');
After correction
$request->setModuleName('helloworld'); //my frontName
You can try with these solutions:
app/code/core/Mage/Cms/controllers/and set CHMOD 770 for file:
IndexController.php
/app/code/core/Mage/Core/Model/Config.php
Other solutons for your problem here: https://ohiwill.com/magento-front-controller-reached-100-router-match-iterations/
If you're still having this issue. Try clearing your var/session/ folder.