Delivery methods do not work in magento 1.7

I have activated flat delivery in the delivery options, and whenever you place an order, he says "Sorry, no quotes are available for this order at this time."Anyone, please help me since I am new to magento.

EDIT

I tried other delivery methods, also showing the same. we updated Magento ver. 1.4.1.1 to magento 1.7. Any help would be greatly appreciated.

EDIT 2 Folder structure in version 1.4

After updating the community folder, only the folder Phoenix. After that, I added the folder Biebersdorf, seeing an error on the verification page. I do not assign folders AWand RocketWeb. Since I am not familiar with magento. If the image is not visible, I added the image to this URL

http://i47.tinypic.com/14smix1.jpg

+5
source share
2

- Checkout, ? , , . , , , .

, : Magento - "collectRates" "".

, , Onepage.php(//​​ ​​//Checkout///Onepage.php): 330, 341, 556, 616;

{address}->setCollectShippingRates(true)

{address} - .

"collectRates", Onepage Checkout "collectRates" , "collect_shipping_rates" "false". , "collectRates" .

, , , Mage_Checkout_Block_Onepage_Shipping_Method_Available:: getShippingRates. $this- > getAddress() → getGroupedAllShippingRates(), .phtml locan ( .phtml - //// ///OnePage/SHIPPING_METHOD/available.phtml).

$this->getAddress()->getGroupedAllShippingRates() (Mage_Checkout_Block_Onepage_Shipping_Method_Available::getShippingRates):

$groups = $this->getAddress()->getGroupedAllShippingRates();
$printGroupes = array();
    foreach ($groups as $code => $groupItems) {
        foreach ($groupItems as $item) {
            $printGroupes[$code][] = $item->getData();
        }
    }
Mage::log($printGroupes, null,'special.log');

, "special.log" var/logs.

, , , , , .

!

+5

​​ " ", "".

, , .

, .

+1

All Articles