Magento Currency Symbol 404's when i go to admin - magento

Any ideas what would cause:
admin->system->manage currency->symbols
to 404 when i go to it in the admin?
admin->system->manage currency->rates (works fine).
This is on my mamp local.
i guess i'm asking is there a 'troubleshooting' way to find out why it's 404'ing for any module in the admin?

I had the same problem - though I do not know whether it is caused by any extensions. Somehow not many people seem to have encountered this problem yet.
Change line 68 in app\code\core\Mage\CurrencySymbol\etc\config.xml: and
change From
<currencysymbol>Mage_CurrencySymbol_Adminhtml</currencysymbol>
to
<currencysymbol before="Mage_Adminhtml">Mage_CurrencySymbol_Adminhtml</currencysymbol>

Go to line 68 in app/code/core/Mage/CurrencySymbol/etc/config.xml
<currencysymbol>Mage_CurrencySymbol_Adminhtml</currencysymbol>
Replace to
<currencysymbol before="Mage_Adminhtml">Mage_CurrencySymbol_Adminhtml</currencysymbol>
Go to line 34 in app/etc/modules/Mage_CurrencySymbol.xml add the Mage_Adminhtml tag
<depends>
<Mage_Adminhtml />
<Mage_Widget/>
</depends>

The error occurs with the definition of the admin router. It appears not only to be a windows error as I am also getting this on a linux machine. Currently it looks as follows:
<admin>
<routers>
<adminhtml>
<args>
<modules>
<currencysymbol>Mage_CurrencySymbol_Adminhtml</currencysymbol>
</modules>
</args>
</adminhtml>
</routers>
</admin>
But if you use the "before" tag and specify "Mage_Adminhtml" then it will work.
<admin>
<routers>
<adminhtml>
<args>
<modules>
<currencysymbol before="Mage_Adminhtml">Mage_CurrencySymbol_Adminhtml</currencysymbol>
</modules>
</args>
</adminhtml>
</routers>
</admin>
You should also add the dependency to the /app/etc/modules/Mage_CurrencySymbol.xml
<config>
<modules>
<Mage_CurrencySymbol>
<active>true</active>
<codePool>core</codePool>
<depends>
<Mage_Adminhtml />
<Mage_Widget/>
</depends>
</Mage_CurrencySymbol>
</modules>
</config>
There appears to have been a bug/fix raised on github

Go to app/code/core/Mage/CurrencySymbol/etc/config.xml
<args>
<modules>
<currencysymbol>Mage_CurrencySymbol_Adminhtml</currencysymbol>
<currencysymbol after="Mage_Adminhtml">Mage_CurrencySymbol_Adminhtml</currencysymbol> // Add this new line
</modules>
</args>
Now go to app/etc/modules/Mage_CurrencySymbol.xml
true
core
<depends>
<Mage_Adminhtml /> // Add this new line
<Mage_Widget/>
</depends>

Related

Fatal error: Class 'Magentothem_Sale_Helper_Data' not found in /home/project/public_html/app/Mage.php on line 547

I am struggling with one issue like - Fatal error: Class
Magentothem_Sale_Helper_Data' not found in
/home/project/public_html/app/Mage.php on line 547
Here is the config.xml
<config>
<modules>
<Magentothem_Sale>
<version>0.1.0</version>
</Magentothem_Sale>
</modules>
<frontend>
<routers>
<sale>
<use>standard</use>
<args>
<module>Magentothem_Sale</module>
<frontName>sale</frontName>
</args>
</sale>
</routers>
<layout>
<updates>
<sale>
<file>sale.xml</file>
</sale>
</updates>
</layout>
</frontend>
<global>
<helpers>
<sale>
<class>Magentothem_Sale_Helper</class>
</sale>
</helpers>
</global>
</config>
Here is the Helper/Data.php :-
class Magentothem_Sale_Helper_Data extends Mage_Core_Helper_Abstract
{
}
Getting error - Fatal error: Class 'Magentothem_Sale_Helper_Data' not found. Not able to understand where i am doing wrong.
Please help.
First you need check compiler is enable or not.
If yes then you need to Disable and again enable the compiler for put the Data.php at compiler location.
Also you need to check file permissions.

Magento: what does option "before" do in config.xml file?

I added admin controller.
This code works correct:
<admin>
<routers>
<adminhtml>
<args>
<modules>
<mycompany_mymodule>Mycompany_Mymodule_Adminhtml</mycompany_mymodule >
</modules>
</args>
</adminhtml>
</routers>
</admin>
If I add before="Mage_Adminhtml" to mycompany_mymodule:
<mycompany_mymodule before="Mage_Adminhtml">Mycompany_Mymodule_Adminhtml</mycompany_mymodule >
then it doesn't work - got 404 error.
1. What does this option do?
Also I looked throught Alans' Storm article: http://alanstorm.com/magento_admin_controllers
There are example:
<config>
<!-- ... -->
<admin>
<routers>
<the_name_of_this_element_is_not_important_it_should_be_unique>
<use>admin</use>
<args>
<module>Alanstormdotcom_Adminhelloworld</module>
<frontName>adminhelloworld</frontName>
</args>
</the_name_of_this_element_is_not_important_it_should_be_unique>
</routers>
</admin>
<!-- ... -->
</config>
2. What is the difference between these definitions?
It solved:
I found Mage_Core_Controller_Varien_Router_Standard class where collectRoutes() method is defined. It parses "after" and "before" parameters to order the modules.
This method is calling from Mage_Core_Controller_Varien_Router_Admin (started from init method in Mage_Core_Controller_Varien_Front).
So after I looked through match process in Mage_Core_Controller_Varien_Router_Standard.
After Mage_Core_Controller_Varien_Router_Standard debuging I understood my fault.
I used Index controller instead of MyModuleContoller.
Alan Storm defined controller which is not under the admin module (i.e. adminhtml). When I use first config - it works perfect because I defined new modules under the section adminhtml. In Alan's config I cannot add my module to adminhtml. I could override it but it is not correct because other modules under the adminhtml will be removed then.
This is correct code for menu under the adminhtml:
<admin>
<routers>
<adminhtml>
<args>
<modules>
<mycompany_mymodule after="Mage_Adminhtml">Mycompany_Mymodule_Adminhtml</mycompany_mymodule >
</modules>
</args>
</adminhtml>
</routers>
</admin>
Inchoo also described this config here.

Magento controller override

I am trying to overwrite a controller of an extension....that is overwriting the cart controller.
The extension currently overwriting the cart controller is:
Innoexts/Warehouse/controllers/Checkout/CartController.php
The config entry in the Innoexts module doing this is:
<frontend>
<routers>
<checkout>
<args>
<modules>
<Innoexts_Warehouse before="Mage_Checkout">Innoexts_Warehouse_Checkout</Innoexts_Warehouse>
</modules>
</args>
</checkout>
</routers>
...blah...blah...
</frontend>
The top of the innoext cartcontroller file is:
require_once 'Mage/Checkout/controllers/CartController.php';
class Innoexts_Warehouse_Checkout_CartController extends Mage_Checkout_CartController {
I want to overwrite it with this controller:
Myco/Warehousemod/controllers/Checkout/CartController.php
The top of the controller file is:
require_once 'Innoexts/Warehouse/controllers/Checkout/CartController.php';
class Myco_Warehousemod_Checkout_CartController extends Innoexts_Warehouse_Checkout_CartController {
The config entry ive created is:
<global>
...blah...blah...
<rewrite>
<myco_warehousemod_checkout_cart>
<from><![CDATA[#^/checkout/cart/#]]></from>
<to>/warehousemod/checkout_cart/</to>
</myco_warehousemod_checkout_cart>
</rewrite>
</global>
<frontend>
<routers>
<checkout>
<args>
<modules>
<Myco_Warehousemod before="Innoexts_Warehouse_Checkout">Myco_Warehousemod_Checkout</Myco_Warehousemod>
</modules>
</args>
</checkout>
</routers>
...blah...blah...
</frontend>
I am getting a 404 not found error for the checkout/cart URL now....Can anyone see where im going wrong? Online resources are very different...and confusing!! The issue may be with me trying to overwrite an overwriting controller...??
thanks in advance...
Need to remove the first rewrite:
<rewrite>
<myco_warehousemod_checkout_cart>
<from><![CDATA[#^/checkout/cart/#]]></from>
<to>/warehousemod/checkout_cart/</to>
</myco_warehousemod_checkout_cart>
</rewrite>
I think certain people should stop writing tutorials....cluttering up the web with their half-assed SEO efforts....
This part was used in the old versions of Magento (i think before 1.4), but if you want to extend a controller that has a rewrite like this in the config file, you have to do the same in your config.
<rewrite>
<myco_warehousemod_checkout_cart>
<from><![CDATA[#^/checkout/cart/#]]></from>
<to>/warehousemod/checkout_cart/</to>
</myco_warehousemod_checkout_cart>
</rewrite>
The new versions use only the part with before so you should have something like this:
<routers>
<checkout>
<args>
<modules>
<Myco_Warehousemod before="Innoexts_Warehouse">Myco_Warehousemod_Checkout</Myco_Warehousemod><!-- just the name of the module Innoexts_Warehouse the overridden folder will be taken from the part after the name of your module so Magento will look in app/local/Myco/Warehousemod/controllers/Checkout/* and load all the controllers from there -->
</modules>
</args>
</checkout>
</routers>
Just an additional notes for those who wants to know about confliction between extensions and possible solutions(just like above case), refer to the following links:
http://www.webshopapps.com/blog/2010/11/resolving-magento-extension-conflicts/
http://sweettoothrewards.com/wiki/index.php/Resolving_extension_conflicts
http://magebase.com/magento-tutorials/magento-extension-clashes-winners-and-loosers/
http://www.magestore.com/blog/2011/12/21/magento-methods-to-resolve-the-module-conflicts-in-magento/
This is a little notification on the include path of the controller.
This include path can cause errors if the Magento Compiler mode is turned on.
require_once 'Mage/Checkout/controllers/CartController.php';
Instead of that it is good to use
require_once Mage::getModuleDir('controllers', 'Mage_Checkout').DS.'CartController.php';
It will be safer.

Why is Magento ignoring my frontName?

I'm following the tutorial on:
http://www.magentocommerce.com/knowledge-base/entry/magento-for-dev-part-3-magento-controller-dispatch
I'm creating a module called Rss in package MyPackage, my config looks as so:
<config>
<modules>
<MyPackage_Rss>
<version>0.1.0</version>
</MyPackage_Rss>
</modules>
<frontend>
<routers>
<rss>
<use>standard</use>
<args>
<module>MyPackage_Rss</module>
<frontName>rss</frontName>
</args>
</rss>
</routers>
</frontend>
</config>
In the Admin area, under Configuration I see that the module is Enabled.
I have the IndexController.php setup in:
~/local/MyPackage/Rss/controllers/IndexController.php
However, when I go to my site:
http://mysite/rss
I get a 404.
Any thoughts?
Using latest Magento Enterprise
Thanks in advance
There is already a Mage_Rss module that uses the "rss" front name for itself. Try using a different front name.

Magento: How to override admin controller outside of adminhtml?

Simply put, I want to override ProcessController which is in the Mage/Index/controllers/Admninhtml/ProcessController.php.
I know how to override the front-end controller, but this gives me a headache for hours now. I can't put it to work. Here's my config file
<?xml version="1.0"?>
<config>
<global>
<models>
<twobuy_index>
<class>Twobuy_Index_Model</class>
</twobuy_index>
</models>
</global>
<admin>
<routers>
<index>
<args>
<modules>
<Twobuy before="Mage_Index">Twobuy_Index</Twobuy>
</modules>
</args>
</index>
</routers>
</admin>
</config>
And the controller declaration
include_once('Mage/Index/controllers/Adminhtml/ProcessController.php');
class Twobuy_Index_Adminhtml_ProcessController extends Mage_Index_Adminhtml_ProcessController
{
I tried overriding reindexAction, but my method never gets called.
Replace <index> with <adminhtml> in your config file. It might just be a copy-paste error but your <Twobuy> tag is incorrectly ended with </Ucon>.
<Twobuy before="Mage_Index">Twobuy_Index</Ucon>
Looks like an error in your XML
<twobuy_index before="Mage_Index">Twobuy_Index</twobuy_index>

Resources