Results 1 to 10 of 117

Hybrid View

  1. #1
    Join Date
    Jan 2007
    Posts
    375
    Plugin Contributions
    3

    Idea or Suggestion Re: WorldPay Module version 3.0 - Support thread

    Hi all,

    I final find the problems source!!!!!

    It is from Products Tables (Maybe)

    I using a new install with themes and WorldPay 3.0, but export the bad DB tables one by one, then using those tables as unit by group, for example, customers, shipping etc restore one by one (Or groups, since ZC have relationship with multi tables) ...

    OK, then after I am restore

    - Test Products -
    products
    products_attributes
    products_attributes_download
    products_description
    products_discount_quantity
    products_notifications
    products_options
    products_options_types
    products_options_values
    products_options_values_to_products_options
    products_to_categories
    product_music_extra
    product_types
    product_types_to_category
    product_type_layout

    featured

    specials

    those of above tables ...
    The stop redirect problems come again, so I know the problems from there.

    OK, then I go to back end Disable them all Categories, then try just enable one or two Main Categories, IT CAN WORK!!!!

    Then I enable more Categories, then try again, this time STOP WORK!!!!!

    Then I review the Categories, inside it have many sub-categories, and .... totals Products (Many with Link) over 7000 ....

    So .... I thinking this maybe why WorldPay Log have
    wp_callback: failed CAUSED BY The maximum limit of 131072 bytes has been exceeded.


    But .... if same DB with other themes on ZC 1.5.1, it can work .....
    Or ZC back end have value control Categories send data max size??

    So, ZC 1.5.4 changed many??? Or any idea are welcome ....

    Thank you.
    Last edited by explorer1979; 13 Jan 2016 at 04:56 AM.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: WorldPay Module version 3.0 - Support thread

    Quote Originally Posted by explorer1979 View Post
    So, ZC 1.5.4 changed many???
    No, not likely.

    Quote Originally Posted by explorer1979 View Post
    The maximum limit of 131072 bytes has been exceeded.
    That sort of message is *usually* a PHP max memory_limit problem. Change your PHP configuration in php.ini and set memory_limit to 128M
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Jan 2007
    Posts
    375
    Plugin Contributions
    3

    Default Re: WorldPay Module version 3.0 - Support thread

    Dr. Byte,

    Thx for your kindly reply, but my server PHP.ini is using 512MB already before this problems coming ...
    PHP File Uploads: On Max Size: 2048M POST Max Size: 2040M
    PHP Version: 5.4.35 (Zend: 2.4.0) PHP Memory Limit: 512M
    HTTP Server: Apache/2.4.10 (Unix) OpenSSL/1.0.1e-fips mod_bwlimited/1.4 mod_fcgid/2.3.9
    PHP Safe Mode: Off

    This server it is on USA Godaddy VPS Hosting
    This VPS Server is 4G RAM, cPanel


    It real make me trouble many time and I am used few month to try fix it. (Include hired at least 3 person to fix, no one find the problems where come from).

    Until now I restore the mysql tables one by one then test on a new install ZC 1.5.4, and now lock down on all products tables and categories .. so I know it is the problems from there.

    Or how about we hired and payment you for help if you can? (PM me if you can, other detail can talk by SkyPe)

    And I have a new post here
    https://www.zen-cart.com/showthread....ldPay-Callback

    Maybe you can help to teach me how to rewrite ....


    Thank you
    Last edited by explorer1979; 14 Jan 2016 at 10:41 AM.

  4. #4
    Join Date
    Jun 2007
    Location
    Cymru
    Posts
    124
    Plugin Contributions
    0

    Default Re: WorldPay Module version 3.0 - Support thread

    Hi. I'm trying to integrate Worldpay with two Zen Cart based websites. I already have two Worldpay Ecommerce accounts ready, but after installing this module, and trying my best to integrate my Zen Cart stores with Worldpay, I've come to the conclusion that I will not be able to do this without help. Can anyone suggest companies that provide this service for a fee? Feel free to DM me.

  5. #5
    Join Date
    Jun 2007
    Location
    Cymru
    Posts
    124
    Plugin Contributions
    0

    Default Re: WorldPay Module version 3.0 - Support thread

    Hi, has anyone got a link to a working version of this mod on their site so that we can see exactly how it works from a custtomer perspective?

    Many Thanks.

  6. #6
    Join Date
    Mar 2010
    Location
    Nottingham UK
    Posts
    87
    Plugin Contributions
    1

    Default Re: WorldPay Module version 3.0 - Support thread

    Quote Originally Posted by bonheddwr View Post
    Hi. I'm trying to integrate Worldpay with two Zen Cart based websites. I already have two Worldpay Ecommerce accounts ready, but after installing this module, and trying my best to integrate my Zen Cart stores with Worldpay, I've come to the conclusion that I will not be able to do this without help. Can anyone suggest companies that provide this service for a fee? Feel free to DM me.
    Hi Bonheddwr,

    What kind of issues are you experiencing when installing the module? I can confirm I have it working in v1.5.5a of zen cart.

  7. #7
    Join Date
    Mar 2010
    Location
    Nottingham UK
    Posts
    87
    Plugin Contributions
    1

    Default Re: WorldPay Module version 3.0 - Support thread

    Hi all,

    Just as an update to get shipping tax to work with this module in v1.5.5a, you'll need to make an amendment similar to the one DrByte mentions in the following post (https://www.zen-cart.com/showthread....61#post1312461), in the includes/modules/wp_checkout_process.php file:


    Lines 24-41:

    Code:
    // load selected payment module
    require(DIR_WS_CLASSES . 'payment.php');
    // $payment_modules = new payment($_SESSION['payment']);
    $payment_modules = new payment('worldpay');
    // load the selected shipping module
    require(DIR_WS_CLASSES . 'shipping.php');
    $shipping_modules = new shipping($_SESSION['shipping']);
    
    require(DIR_WS_CLASSES . 'order.php');
    $order = new order;
    
    // prevent 0-entry orders from being generated/spoofed
    if (sizeof($order->products) < 1) {
      zen_redirect(zen_href_link(FILENAME_SHOPPING_CART));
    }
    
    require(DIR_WS_CLASSES . 'order_total.php');
    $order_total_modules = new order_total;
    Change to:

    Code:
    // load selected payment module
    require(DIR_WS_CLASSES . 'payment.php');
    // $payment_modules = new payment($_SESSION['payment']);
    $payment_modules = new payment('worldpay');
    
    require(DIR_WS_CLASSES . 'order.php');
    $order = new order;
    
    // load the selected shipping module
    require(DIR_WS_CLASSES . 'shipping.php');
    $shipping_modules = new shipping($_SESSION['shipping']);
    
    // prevent 0-entry orders from being generated/spoofed
    if (sizeof($order->products) < 1) {
      zen_redirect(zen_href_link(FILENAME_SHOPPING_CART));
    }
    
    require(DIR_WS_CLASSES . 'order_total.php');
    $order_total_modules = new order_total;
    I hope this helps.

  8. #8
    Join Date
    Mar 2006
    Location
    Wolverhampton, UK
    Posts
    31
    Plugin Contributions
    0

    Default Re: WorldPay Module version 3.0 - Support thread

    Is anyone else suffering with the callback timeout issue still? I'm trying to get this to work on a site and have failed miserably!! Each time I try a transaction the callback fails returning the following in the response data report:

    Location: http://domain/store/index.php?main_page=time_out

    I've tried this on the main site using ZC 1.5.1a, a clean installation with classic template 1.5.1a and a clean installation with classic template 1.5.5a all with fresh download of the Worldpay 3.0 module.

    This has also been tested with ZC 1.5.5a with PHP 5.3.28, 5.4.45 and 5.5.38

    And module reports - Diagnostic: Recreate Session Check Verified: Session's can be recreated by worldpay in this shop.

    Thanks
    Mat
    Last edited by fozzyo; 16 Aug 2016 at 02:34 PM.

 

 

Similar Threads

  1. MultiSite Module Support Thread
    By Gerome in forum All Other Contributions/Addons
    Replies: 2246
    Last Post: 29 Dec 2025, 10:13 AM
  2. WorldPay Module version 2.0 - Support thread
    By philip_clarke in forum Addon Payment Modules
    Replies: 729
    Last Post: 4 Nov 2017, 08:23 AM
  3. v151 Codetrio Sphinx Search Version 1.0 Support Thread
    By imranulh in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 16 Jul 2014, 01:24 AM
  4. Simple SEO URL (OLD version) [support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 5053
    Last Post: 30 Jun 2014, 02:42 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg