Page 72 of 73 FirstFirst ... 226270717273 LastLast
Results 711 to 720 of 730
  1. #711
    Join Date
    Feb 2013
    Posts
    6
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Hi just to say my problem is now fixed, after spending hours and hours on this i found a brilliant freelancer who knows what he is doing with zencart and worldpay, he worked on the problem immediately and for a small fee it was not something i could have resolved and for the amount he charged wasn't worth the frustration, if anyone wants his details send me a message as can't recommend him highly enough.

  2. #712
    Join Date
    Sep 2012
    Posts
    23
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Thought I'd just post a quick bit of info for those looking for Worldpay on Zen 1.5.x

    I have just installed the latest module available from the add-ons section and all appears to be working properly. You can pay and get returned to the store after payment for the reference numbers though.

    The worldpay option appears in the modules=>Payment section in admin, but not directly under the list of modules. Other than this it seems fine.

  3. #713

    Default Re: WorldPay Module version 2.0 - Support thread

    Has anyone managed to get this working with eCommerce tracking in Google analytics?

  4. #714
    Join Date
    Jan 2007
    Location
    UK
    Posts
    59
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    There are some changes happening at Worldpay that affect the URL that they use to take payments - now they are no longer part of RBS. This seems to have been in the pipeline for a while, and Worldpay say that as the deadline to change it has passed, the old URL could stop working at any time (when RBS turn it off). The info is referred to on the WP merchant login page.
    The URL in v2.10 is defined in includes/modules/payment/worldpay.php at around line 80
    Code:
    $this->form_action_url = 'https://secure.wp3.rbsworldpay.com/wcc/purchase';
    needs to be changed to
    Code:
    $this->form_action_url = 'https://secure.worldpay.com/wcc/purchase';
    Last edited by dab; 26 Jul 2013 at 12:10 PM.

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

    Default Re: WorldPay Module version 2.0 - Support thread

    Hi All,

    I am upgrade from 1.3.9h to 1.5.1, it not work on admin page.

    Error is show this


    [05-Mar-2014 20:36:23] PHP Fatal error: 1146:Table 'storeup.TABLE_WORLDPAY_PAYMENTS' doesn't exist :: select count(*) as total from `TABLE_WORLDPAY_PAYMENTS` in /home/ati/public_html/store/includes/classes/db/mysql/query_factory.php on line 120
    [05-Mar-2014 20:36:23] PHP Fatal error: Class 'queryFactoryResult' not found in /home/ati/public_html/store/includes/classes/db/mysql/query_factory.php on line 213


    After I had installed the lat9 debug script from
    http://www.zen-cart.com/showthread.p...aller-on-error


    WARNING: An Error occurred, please refresh the page and try again. Fatal error: 1146:Table 'storeup.TABLE_WORLDPAY_PAYMENTS' doesn't exist :: select count(*) as total from `TABLE_WORLDPAY_PAYMENTS` ==> (as called by) /home/ati/public_html/store/admin_01/includes/classes/split_page_results.php on line 39 <== in /home/ati/public_html/store/includes/classes/db/mysql/query_factory.php on line 130



    And I am open back the 1.3.9h's split_page_results.php compare with 1.5.1, haven't see any different on this line.

    Server Environment PHP 5.3.3 with PHP APC, MySQL 5.1.73, Apache 2.2.15

    If same server using 1.3.9h will haven't any error on it.

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

    Default Re: WorldPay Module version 2.0 - Support thread

    Quote Originally Posted by explorer1979 View Post
    Hi All,

    I am upgrade from 1.3.9h to 1.5.1, it not work on admin page.

    Error is show this


    [05-Mar-2014 20:36:23] PHP Fatal error: 1146:Table 'storeup.TABLE_WORLDPAY_PAYMENTS' doesn't exist :: select count(*) as total from `TABLE_WORLDPAY_PAYMENTS` in /home/ati/public_html/store/includes/classes/db/mysql/query_factory.php on line 120
    [05-Mar-2014 20:36:23] PHP Fatal error: Class 'queryFactoryResult' not found in /home/ati/public_html/store/includes/classes/db/mysql/query_factory.php on line 213


    After I had installed the lat9 debug script from
    http://www.zen-cart.com/showthread.p...aller-on-error


    WARNING: An Error occurred, please refresh the page and try again. Fatal error: 1146:Table 'storeup.TABLE_WORLDPAY_PAYMENTS' doesn't exist :: select count(*) as total from `TABLE_WORLDPAY_PAYMENTS` ==> (as called by) /home/ati/public_html/store/admin_01/includes/classes/split_page_results.php on line 39 <== in /home/ati/public_html/store/includes/classes/db/mysql/query_factory.php on line 130



    And I am open back the 1.3.9h's split_page_results.php compare with 1.5.1, haven't see any different on this line.

    Server Environment PHP 5.3.3 with PHP APC, MySQL 5.1.73, Apache 2.2.15

    If same server using 1.3.9h will haven't any error on it.






    Hi All,

    I fix it by manual edit the /admin/worldpay_response.php

    On Line 99
    From
    $wpr_query_raw = "select * from `".TABLE_WORLDPAY_PAYMENTS."` ORDER BY id DESC";
    Change To
    $wpr_query_raw = "select * from `worldpay_payments` ORDER BY id DESC";

    On Line 185
    From
    $ipn = $db->Execute("select * from " . TABLE_WORLDPAY_PAYMENTS . " where id = '" . $wpInfo->id . "'");
    Change To
    $ipn = $db->Execute("select * from " . 'worldpay_payments' . " where id = '" . $wpInfo->id . "'");


    Now on 1.5.1 inside admin page it will show up all the old records again
    But I am real dont know why on 1.3.9h same files not need change anything it can work.
    Who can explain this for a programming newbie like me?

    THX.

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

    Default Re: WorldPay Module version 2.0 - Support thread

    P.S. I am using the 2.12 version.

    Hope above on my work can help for other user who want to install the WorldPay 2.12 on ZC 1.5.1 and give it work.

    And other fix there who want the Menu on Admin Page in ZC 1.5.1

    Go to Back End on “Admin Page Registration”
    Page Key: WorldPay
    Page Name: BOX_CUSTOMERS_WORLDPAY_RESPONSE
    Page Filename: FILENAME_WORLDPAY_RESPONSE
    Page Parameters:
    Menu: Customers
    Display on Menu?: Y
    Sort Order: 8

    Best Regards,
    Jimmy Chan
    My Site
    Last edited by explorer1979; 6 Mar 2014 at 10:08 AM.

  8. #718
    Join Date
    Jul 2013
    Location
    UK
    Posts
    8
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    I have started getting Callback failure errors from Worldpay when a customer tries to place an order: http error 302.
    Everything was working fine until a couple of weeks ago.
    I have checked all settings in Zencart payment module and in Worldpay config.
    Using Zencart 1.5.1 and Wordpay module 2.12.

    Any suggestions on why this should start happening, what to check and how to fix it would be greatly appreciated.

  9. #719
    Join Date
    Aug 2011
    Posts
    121
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    The latest version doens't install the SQL, or display the new ("Customers" > "Worldpay Response") page. Also if accessing the page directly in admin, it produces SQL errors.

    This is on the 1.5+ zen cart version. Finding a work around.

  10. #720
    Join Date
    May 2007
    Posts
    47
    Plugin Contributions
    0

    Default Re: WorldPay Module version 2.0 - Support thread

    Did you manage to sort this?
    We changed to a responsive template and since then the callback response hasn't worked, but I cant see how the template could have anything to do with it.

    Quote Originally Posted by joecooper View Post
    The latest version doens't install the SQL, or display the new ("Customers" > "Worldpay Response") page. Also if accessing the page directly in admin, it produces SQL errors.

    This is on the 1.5+ zen cart version. Finding a work around.

 

 
Page 72 of 73 FirstFirst ... 226270717273 LastLast

Similar Threads

  1. MultiSite Module Support Thread
    By Gerome in forum All Other Contributions/Addons
    Replies: 2220
    Last Post: 13 Mar 2024, 01:24 PM
  2. v154 WorldPay Module version 3.0 - Support thread
    By countrycharm in forum Addon Payment Modules
    Replies: 115
    Last Post: 20 Jul 2021, 04:00 PM
  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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR