Magento发货信息,继续按钮不工作


magento shipping information, the continue button not working

我需要你的帮助!

在我的magento安装后,我试图购买产品(本地),但在结帐步骤,在我填写运输信息并点击"继续"后,什么都没有发生。我试着访问了几乎所有关于这个问题的在线资源,并按照他们的建议去做,但仍然无法通过这一步。有什么建议吗?这是我的账单。html文件的按钮容器内容:

<div class="buttons-set" id="billing-buttons-container">
        <p class="required"><?php echo $this->__('* Required Fields') ?></p>
        <button type="button" title="<?php echo $this->__('Continue') ?>" class="button" onclick="billing.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
        <span class="please-wait" id="billing-please-wait" style="display:none;">
            <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
        </span>
    </div>

试试这个。转到/app/design/frontend/base/default/template/checkout/onepage/file payment. php打开它,找到第36行

<fieldset>
 <?php echo $this->getChildHtml('methods') ?>
</fieldset>

add id to fieldset

<fieldset id="checkout-payment-method-load">
 <?php echo $this->getChildHtml('methods') ?>
</fieldset>

我也有同样的问题,一般的答案对我没有帮助。

在商店做一些调试,我注意到这个错误:

致命错误:调用未定义函数mcrypt_module_open()

所以,mcrypt模块没有安装在我的VPS服务器上,你需要安装该模块,以便获得一些Magento功能的工作

该模块的安装流程如下:

apt-get install php -mcrypt

重启apache,你就完成了!

有时你的发行版可能会要求你执行apt-get update.