I migrated for the magento 1.9.2.2 and several modules stopped working within the admin, showing 404 error. I realized that the URL is not showing the path of the admin.
In place of (www.site.com/index.php/shop/module). Is showing this (www.site.com/index.php/module.)
The setup like this:
app/code/co ... config.xml
<admin>
<routers>
<Src_Core>
<use>admin</use>
<args>
<module>Src_Core</module>
<frontName>srccore</frontName>
</args>
</Src_Core>
</routers>
</admin>
app/code/local/... config.xml
<admin>
<routers>
<Query_Src>
<use>admin</use>
<args>
<module>Query_Src</module>
<frontName>querysrcadmin</frontName>
</args>
</Query_Src>
</routers>
</admin>