Magento在使用paypal支付专业版的信用卡时不会重定向,但快递选项重定向很好



我没有设置这个,我们没有真正的测试区域,不幸的是,该网站是实时的,我们正在尝试修复开发人员未完成/未测试的问题。我们使用的是Magento版本:1.8.0.0。我打开和关闭了许多不同的设置,但没有得到任何好的结果。奇怪的是,我遵循了一个教程来检查设置,一切都匹配,快递部分工作正常,信用卡部分没有重定向,它只是坐在那里什么都不做=失败。你能就问题提出建议吗?或者如果我需要联系PayPal,如果问题在他们这边,我能向他们建议什么。我并不完全熟悉设置Magento支付网关。

谢谢你能给我们的任何帮助,

Tracy

不是Magento用户,也不是dev(免责声明)。

重定向到哪里?您的"成功/失败"页面或Paypal(如Express Checkout)?

信用卡(支付类型)不会/不应该重定向到贝宝,你本质上是在发送你在网络应用程序上收集的卡数据,并将其发送给贝宝进行处理(尝试授权和/或获取资金),然后等待对该请求的响应。用户不会离开您的网站。

你有Paypal Manager账户吗。。如果IINM,如果你有一个"专业"账户,可以在你的网站上收集信用卡数据,你应该(尽管这是贝宝用户可以更好地回答的问题)?检查您的系统是否真的在向Paypal(网关)发送请求会很有帮助。或者可能是Magento的错误日志?

Hth。。。

我遇到了完全相同的问题,发现问题出现在iPhone模板中checkout.xml的布局中。

我将以下部分(没有**标记)添加到app/design/frontend/default/iphone/layout/checkout.xml

<checkout_onepage_review translate="label">
    <label>One Page Checkout Overview</label>
    <!-- Mage_Checkout -->
    <remove name="right"/>
    <remove name="left"/>
    <block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
        <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
        <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
        <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
        <block type="checkout/cart_totals" name="checkout.onepage.review.info.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
        <block type="core/text_list" name="checkout.onepage.review.info.items.before" as="items_before" translate="label">
            <label>Items Before</label>
        </block>
        **<block type="core/text_list" name="checkout.onepage.review.info.items.after" as="items_after" translate="label">
            <label>Items After</label>
        </block>**
        <block type="checkout/agreements" name="checkout.onepage.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
        <block type="core/template" name="checkout.onepage.review.button" as="button" template="checkout/onepage/review/button.phtml"/>
    </block>
</checkout_onepage_review>

希望能帮助其他

干杯Twan

最新更新