Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First let me say that I have disabled and cleared the cache and logged out and back in again. However, I am still getting this error.

Second, let me explain what I am trying to do. BTW, this is my first extension build :) I am simply trying to build an extension that if it is enabled it will override the original cart/shipping.phtml file with my own template file..

I am able to see my extension in the left sidebar under the admin configurations. However, when I click on my extension to pull up the general tab which will allow you to disable or enable it I get the dreaded 404 page not found. Can you please have a look at my code and let me know what I am doing wrong? Thanks to all who help!

Here are all of my files :)

etc/config.xml

<?xml version="1.0"?>
<config>    
<modules>
<Beckin_DropDownShipping><version>1.0.0</version></Beckin_DropDownShipping>
    </modules>

<global>
            <blocks>
                 <dropdownshipping>
                      <class>Beckin_DropDownShipping_Block</class>
                 </dropdownshipping>
            </blocks>

    <helpers>
         <dropdownshipping>
          <class>Beckin_DropDownShipping_Helper</class>
         </dropdownshipping>
    </helpers>      
</global>

<default>
<dropdownshipping>
  <settings>
    <enable>1</enable>
  </settings>
</dropdownshipping>
</default>

 <frontend>
    <layout>
        <updates>
            <beckin>
                <file><!-- beckin_dropdownshipping.xml --></file>
            </beckin>
        </updates>
    </layout>
    <routers>
        <dropdownshipping>
            <use>standard</use>
            <args>
                <module>Beckin_DropDownShipping</module>
                <frontName>dropdownshipping</frontName>
            </args>
        </dropdownshipping>
    </routers>  
 </frontend>


 <adminhtml>
    <acl>
        <resources>
            <admin>
                <children>
                    <system>
                        <children>
                            <config>
                                <children>
                                    <dropdownshipping>
                                        <title>Beckin Drop Down Shipping Extension</title>
                                    </dropdownshipping>
                                </children>
                            </config>
                        </children>
                    </system>
                </children>
            </admin>
        </resources>
    </acl>
</adminhtml>

</config>

etc/system.xml

<?xml version="1.0"?>
<config>
<tabs>
    <beckin translate="label">
        <label>Beckin Extensions</label>
        <sort_order>100</sort_order>
    </beckin>
</tabs>

<sections>  
            <dropdownshipping translate="label">
        <label>Drop Down Shipping</label>
        <tab>beckin</tab>
        <frontend_type>text</frontend_type>
        <sort_order>1000</sort_order>
        <show_in_default>1</show_in_default>
        <show_in_website>1</show_in_website>
        <show_in_store>1</show_in_store>


            <groups>            

                <settings translate="label">
                <label>Settings</label>
                <frontend_type>text</frontend_type>
                <sort_order>1</sort_order>
                <show_in_default>1</show_in_default>
                <show_in_website>1</show_in_website>
                <show_in_store>1</show_in_store>

                    <fields>
                        <enable translate="label">
                        <label>Enable</label>
                        <comment>
                        <![CDATA[Enable or Disable this extension.]]>
                        </comment>
                        <frontend_type>select</frontend_type>
                        <source_model>adminhtml/system_config_source_yesno</source_model>
                        <sort_order>1</sort_order>
                        <show_in_default>1</show_in_default>
                        <show_in_website>1</show_in_website>
                        <show_in_store>1</show_in_store>                    
                        </enable>           
                    </fields>

                </settings>
            </groups>
        </dropdownshipping>
</sections>     
</config>

Helper/Data.php

<?php
class Beckin_DropDownShipping_Helper_Data extends Mage_Core_Helper_Abstract
{   

}

Block/Cart/Shipping.php

<?php

class Beckin_DropDownShipping_Block_Cart_Shipping extends Mage_Checkout_Block_Cart_Shipping
{
protected function _beforeToHtml()
   {
    if(Mage::getStoreConfig('dropdownshipping/settings/enable'))

    $this->setTemplate('beckin/dropdownshipping/drop_down_shipping.phtml');

    return $this;
    }

}
share|improve this question

1 Answer

up vote 2 down vote accepted

In your config file, acl section: Change

<dropdownshipping_options>
    <title>Beckin Drop Down Shipping Extension</title>
</dropdownshipping_options>

to

<dropdownshipping>
    <title>Beckin Drop Down Shipping Extension</title>
</dropdownshipping>
share|improve this answer
You are the freakin man! I have stared at this all day and missed that somehow. I guess it helps to have a fresh pair of eyes. Thank you so much!!!!!!!!!!!!!! – tech0925 Dec 16 '12 at 6:44
Always welcome :) – Yaroslav Rogoza Dec 16 '12 at 6:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.