zoukankan      html  css  js  c++  java
  • zen cart Fast and Easy Checkout( v 182 ) 最后一步不会跳转

    最后一步一直显示:Your order is being processed, please wait...  就卡在这里了,不会跳转

    解决的办法是:

    --------------------------------------------------------------------

    Rxalex, I found this on Numinix forum - page 7:


    "4. Add the following line to tpl_main_page.php:
    - Find: Code:
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>

    - Replace With: Code:
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?><?php if(FEC_ONE_PAGE == 'true' && $_GET['main_page'] == 'fec_confirmation') echo ' onLoad="document.fec_confirmation.submit();"';?>> "

    I did it and it helped a little. Now customer is forwarded to a blank page. I didn't have time to read all posts but I will do it this weekend and I will try to figure out what is wrong. If you have any idea, could you share it, please? 
    here's the link to that forum if you do not know it: http://www.numinix.com/forum/viewtopic.php?f=6&t=4

    ----------------------

    原文地址:http://www.zen-cart.com/showthread.php?76557-Fast-and-Easy-Checkout/page96

    *************************************************************

    修改:2012 06 04

    前面的那个方法能解决不跳转的问题,但是今天发现发送的邮件是错误的,客户接受到的邮件里面没有内容,而且上面的那一步耗费时间很长。

    检查代码发现:   $order->send_order_email($insert_id, 2);   这一步耗费时间太长(在 checkout_process.php 中)。

    问题出在:Zen cart 后台邮件配置没有设置正确

    在本地做的时候填的是测试的 QQ 邮箱账号,上传之后没有更改。将邮件配置设置好之后所有问题解决。。。

    - -!

    后台 Configuration 》 电子邮件 》QQ改为空间相应地址

     

  • 相关阅读:
    协程
    多进程
    多线程
    模块进阶
    内建函数
    内建属性
    属性property
    私有化
    深拷贝、浅拷贝
    ==、is
  • 原文地址:https://www.cnblogs.com/xiangniu/p/2528540.html
Copyright © 2011-2022 走看看