Page 17 of 61 FirstFirst ... 7151617181927 ... LastLast
Results 161 to 170 of 601
  1. #161
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    On activating the Stripe account (code to phone), one is presented with a thank you page, saying the account is now live, and a list of things to double check.
    1. Use your live key (for API calls)
    2. Use your live publishable key with Stripe.js
    3. Enable HTTPS on your site
    4. Add a Specified Commercial Transactions Act page

    This last one was a new one of me. Here the details:
    Japanese law requires that all businesses accepting payments online provide specific information about their business by linking to a Specified Commercial Transactions Act page (特定商取引法に基づく表記) on their site.
    Stripe kindly provides information on how to comply, here the links for English and Japanese:
    * English: https://support.stripe.com/questions...ansactions-act
    * Japanese: https://support.stripe.com/questions...ansactions-act

    I could not actually find such pages on several shop sites I look at regularly. Wonder if anyone here knows more details about this. I'm not sure if I need to make a distinct an obvious page link (as suggested by Stripe), such as for Privacy Policy, Terms and Conditions, and so forth, or whether the necessary information can be included as part of an existing page.

    This seems to be specific to Japan; however, if there are similar regulations in some other countries, would be nice to hear any input.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  2. #162
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    OK, I have decided to put some time into attempting to debug the Stripe module. So first, attempt to correct the issue with stripe_object:
    > desc stripe_data;
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_object | varchar(64) | NO | | NULL | |
    After running
    ALTER TABLE stripe_data
    CHANGE stripe_object stripe_object varchar(64) NULL DEFAULT '';
    the definition changes to
    > desc stripe_data;
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_object | varchar(64) | YES | | | |
    Unfortunately, when I try a Stripe checkout, after entering the sandbox data I get at
    https://***/shop/index.php?main_page=checkout_process
    the following display (no other output)
    WARNING: An Error occurred, please refresh the page and try again.
    and on refreshing the page, the warning
    Must provide source or customer.
    displays under "Step 3 of 3 - Order Confirmation".

    The debug log now shows a different error though, which is a welcome change:
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: customer
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: disputed
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: fee
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: invoice
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_city
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_country
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line1
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line1_check
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line2
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_zip
    [31-Jul-2019 00:13:32 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_zip_check
    [31-Jul-2019 00:13:32 Asia/Tokyo] Request URI: /shop/index.php?main_page=checkout_process, IP address: 192.168.0.3
    #1 trigger_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:171]
    #2 queryFactory->show_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:143]
    #3 queryFactory->set_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:270]
    #4 queryFactory->Execute() called at [/***/shop/includes/functions/functions_general.php:952]
    #5 zen_db_perform() called at [/***/shop/includes/modules/payment/stripepay.php:495]
    #6 stripepay->after_process() called at [/***/shop/includes/classes/payment.php:254]
    #7 payment->after_process() called at [/***/shop/includes/modules/pages/checkout_process/header_php.php:17]
    #8 require(/***/shop/includes/modules/pages/checkout_process/header_php.php) called at [/***/shop/index.php:36]
    --> PHP Fatal error: 1406ata too long for column 'stripe_charge_id' at row 1 :: INSERT INTO stripe_data (orders_id, stripe_charge_id, customers_id, stripe_amount, stripe_amount_refunded, stripe_currency, stripe_customer, stripe_description, stripe_disputed, stripe_fee, stripe_invoice, stripe_paid, stripe_address_city, stripe_address_country, stripe_address_line1, stripe_address_line1_check, stripe_address_line2, stripe_address_zip, stripe_address_zip_check, stripe_country, stripe_fingerprint, stripe_cvc_check, stripe_name, stripe_last4, stripe_exp_month, stripe_exp_year, stripe_type) VALUES ('36', 'ch_1F1x15IvuX80g3UFlLCPZ6ka', '2', '58290', '0', 'JPY', '', 'user AT gmail.com', '', '', '', '1', '', '', '', '', '', '', '', 'US', 'lHfW1lpMAnH1N1Ea', 'pass', 'USER NAME', '4242', '1', '2023', 'Visa') ==> (as called by) /***/shop/includes/functions/functions_general.php on line 952 <== in /***/shop/includes/classes/db/mysql/query_factory.php on line 171.
    I have replaced the actual email address and user name with "user AT gmail.com" and "USER NAME" in the error log contents.
    The field stripe_charge_id is being set to ch_1F1x15IvuX80g3UFlLCPZ6ka, but in the stripe_data table is defined as varchar(25)
    > desc stripe_data;
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_charge_id | varchar(25) | NO | | NULL | |
    Clearly, the value to be set is 27 chars long. Now I guess I need to check docs to see what the max value should be.
    As a test, if I altered the field to be 27 varchars,
    ALTER TABLE stripe_data CHANGE stripe_charge_id stripe_charge_id varchar(27) NOT NULL;
    so that definition becomes:
    > desc stripe_data;
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_charge_id | varchar(27) | NO | | NULL | |
    and tried checkout again.

    An error still occurs, and debug log shows yet a different error. So some progress here.

    As it is late, I will defer this, but it looks like the fee value is not being given correctly for the module's liking.
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: customer
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: disputed
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: fee
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: invoice
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_city
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_country
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line1
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line1_check
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line2
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_zip
    [31-Jul-2019 00:30:23 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_zip_check
    [31-Jul-2019 00:30:23 Asia/Tokyo] Request URI: /shop/index.php?main_page=checkout_process, IP address: 192.168.0.3
    #1 trigger_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:171]
    #2 queryFactory->show_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:143]
    #3 queryFactory->set_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:270]
    #4 queryFactory->Execute() called at [/***/shop/includes/functions/functions_general.php:952]
    #5 zen_db_perform() called at [/***/shop/includes/modules/payment/stripepay.php:495]
    #6 stripepay->after_process() called at [/***/shop/includes/classes/payment.php:254]
    #7 payment->after_process() called at [/***/shop/includes/modules/pages/checkout_process/header_php.php:17]
    #8 require(/***/shop/includes/modules/pages/checkout_process/header_php.php) called at [/***/shop/index.php:36]
    --> PHP Fatal error: 1366:Incorrect integer value: '' for column `zencartshop`.`stripe_data`.`stripe_fee` at row 1 :: INSERT INTO stripe_data (orders_id, stripe_charge_id, customers_id, stripe_amount, stripe_amount_refunded, stripe_currency, stripe_customer, stripe_description, stripe_disputed, stripe_fee, stripe_invoice, stripe_paid, stripe_address_city, stripe_address_country, stripe_address_line1, stripe_address_line1_check, stripe_address_line2, stripe_address_zip, stripe_address_zip_check, stripe_country, stripe_fingerprint, stripe_cvc_check, stripe_name, stripe_last4, stripe_exp_month, stripe_exp_year, stripe_type) VALUES ('37', 'ch_1F1xHOIvuX80g3UF1seaLy6J', '2', '58290', '0', 'JPY', '', 'user AT gmail.com', '', '', '', '1', '', '', '', '', '', '', '', 'US', 'lHfW1lpMAnH1N1Ea', 'pass', 'USER NAME', '4242', '1', '2020', 'Visa') ==> (as called by) /***/shop/includes/functions/functions_general.php on line 952 <== in /***/shop/includes/classes/db/mysql/query_factory.php on line 171.
    In sandbox no fee is taken, so the fact that the fee is not there is not a big surprise, but should it be an integer 0, or should the code accept an empty string?

    I think that in the above, all these errors are generated by the Zen Cart module itself, not an error being reported by Stripe.

    To be continued the following day.
    Last edited by gernot; 30 Jul 2019 at 04:41 PM.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  3. #163
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    One separate issue: stripe_country seems to be set to US. I expected it to be Japan, but I guess this value is coming from Stripe and is related to the sandbox credit card information being used. In includes/modules/payment/stripepay.php we have:
    'stripe_country' => zen_db_prepare_input($charge->source->country),
    I hope I am right in assuming this means the value I see is coming from Stripe's sandbox client.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  4. #164
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    For reference, stripe_fee is defined as non-null:
    > desc stripe_data;
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_fee | int(11) | NO | | NULL | |
    So that means, in strict mode, and empty string will not be accepted.
    Tomorrow I will test to see if I alter the fee to accept null, whether it then passes the previous data successfully.
    However, I'd like to understand if that change is the correct way to handle such an issue.
    It seems there are a few fields in the stripe_data table that would at first glance require non null, but are defined as accepting null entries.
    So confused.

    Reference:
    > desc stripe_data;
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_id | int(11) | NO | PRI | NULL | auto_increment |
    | orders_id | int(11) | NO | | NULL | |
    | customers_id | int(11) | NO | | NULL | |
    | stripe_charge_id | varchar(27) | NO | | NULL | | <- changed by me from original in module
    | stripe_amount | int(25) | NO | | NULL | |
    | stripe_amount_refunded | int(25) | YES | | NULL | |
    | stripe_currency | varchar(6) | NO | | NULL | |
    | stripe_customer | varchar(64) | YES | | NULL | |
    | stripe_description | varchar(255) | YES | | NULL | |
    | stripe_disputed | varchar(64) | NO | | NULL | |
    | stripe_fee | int(11) | NO | | NULL | |
    | stripe_invoice | varchar(64) | YES | | NULL | |
    | stripe_object | varchar(64) | YES | | | | <- changed by me from original in module
    | stripe_paid | int(11) | NO | | NULL | |
    | stripe_address_city | varchar(255) | NO | | NULL | |
    | stripe_address_country | varchar(255) | NO | | NULL | |
    | stripe_address_line1 | varchar(255) | NO | | NULL | |
    | stripe_address_line1_check | varchar(64) | YES | | NULL | |
    | stripe_address_line2 | varchar(255) | YES | | NULL | |
    | stripe_address_zip | varchar(255) | YES | | NULL | |
    | stripe_address_zip_check | varchar(64) | YES | | NULL | |
    | stripe_country | varchar(64) | NO | | NULL | |
    | stripe_fingerprint | varchar(64) | NO | | NULL | |
    | stripe_cvc_check | varchar(64) | YES | | NULL | |
    | stripe_name | varchar(64) | NO | | NULL | |
    | stripe_last4 | int(4) | NO | | NULL | |
    | stripe_exp_month | int(2) | NO | | NULL | |
    | stripe_exp_year | int(4) | NO | | NULL | |
    | stripe_type | varchar(64) | NO | | NULL | |
    +----------------------------+--------------+------+-----+---------+----------------+
    29 rows in set (0.001 sec)
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  5. #165
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    Continuation...
    I changed the stripe_fee field in the stripe_data table to accept NULL, as follows:
    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_fee | int(11) | NO | | NULL | |

    ALTER TABLE stripe_data CHANGE stripe_fee stripe_fee int(11) NULL default NULL;

    +----------------------------+--------------+------+-----+---------+----------------+
    | Field | Type | Null | Key | Default | Extra |
    +----------------------------+--------------+------+-----+---------+----------------+
    | stripe_fee | int(11) | YES | | NULL | |
    However, I still get the same error when processing a sandbox payment. So an empty string value is apparently simply not acceptable. Stumped for now, will try to initialize the stripe_fee to 0 and see what happens.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  6. #166
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    After a bit of Googling, it seems my plan to allow NULL is mistaken. Since the default setting in MySQL/MariaDB is strict mode, empty values will not be permitted in integer fields, and to enter NULL would require a specific statement.
    So it looks like I will need to cast empty string to integer 0 in PHP.

    My conclusion is the between 2012, when the module was written (and obviously has worked well) many changes in MySQL have taken place, the most critical one being the application of strict mode, and also some changes in Stripe's API and fields.

    I'll post again when I have figured out how to cast empty string to integer.

    I note that I have no idea at this stage whether Stripe returns non-integer (fractional) values for some fields that are currently declared as integers. We shall see...
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  7. #167
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    I hacked the stripe_fee field as follows in stripepay.php:
    PHP Code:
    function after_process()
        {
            global 
    $charge$insert_id,  $db;
            
    //let's update the stripe_id table
            // let's see if we can change $charge->fee
            
    if (empty($charge->fee)) {
                
    $charge->fee 0;
            }
    /../ 
    That did manage to avoid the previous error, and instead, we get the next one.
    Here the debug log:
    #1 trigger_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:171]
    #2 queryFactory->show_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:143]
    #3 queryFactory->set_error() called at [/***/shop/includes/classes/db/mysql/query_factory.php:270]
    #4 queryFactory->Execute() called at [/***/shop/includes/modules/payment/stripepay.php:509]
    #5 stripepay->after_process() called at [/***/shop/includes/classes/payment.php:254]
    #6 payment->after_process() called at [/***/shop/includes/modules/pages/checkout_process/header_php.php:17]
    #7 require(/***/shop/includes/modules/pages/checkout_process/header_php.php) called at [/***/shop/index.php:36]
    --> PHP Fatal error: 1406:Data too long for column 'cc_expires' at row 1 :: update orders set
    cc_type = '',
    cc_owner='USER NAME',
    cc_expires='1/2020',
    cc_number='XXXX-XXXX-XXXX-4242'
    where
    orders_id = '39' ==> (as called by) /***/shop/includes/modules/payment/stripepay.php on line 509 <== in /***/shop/includes/classes/db/mysql/query_factory.php on line 171.
    I changed the actual user name to "USER NAME" above.
    So it looks like it is going to be a long slog here, solving the definition of many fields used in the module.

    cc_expires is a field in the table orders, and is defined as varchar(4), which clearly is incompatible with this module's attempt to set it to a format of "[M]M/YYYY".

    Surely there is no way this module can work with Zen Cart if that is really the case? Maybe cc_expires used to be defined like this in older versions os Zen Cart?
    I guess the way forward for now is to redefine, in the module, how cc_expires is created, to make it into the format ""MMYY", presumably. Mmm, substring from the year, and padding for the month as needed. Darn, lots of examples in the other payment modules, will have to hash up something there, no more time tonight though.

    I can see a new working version at the end of this road, but I really wonder what other users have done to keep the module working on their newer Zen Cart systems.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  8. #168
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    Well, that was not that hard. Changed the code for cc_expires from
    PHP Code:
    cc_expires='" . zen_db_prepare_input($charge->source->exp_month) . "/" . zen_db_prepare_input($charge->source->exp_year) . "'
    to
    PHP Code:
    cc_expires='" . zen_db_prepare_input(str_pad($charge->source->exp_month,2,'0',STR_PAD_LEFT)) .                                  zen_db_prepare_input(substr($charge->source->exp_year,-2)) . "'
    and the order passed!!! Success, albeit with no doubt horrible code.

    There are still warnings in the log:
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: customer
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: disputed
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: invoice
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_city
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_country
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line1
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line1_check
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_line2
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_zip
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: address_zip_check
    [01-Aug-2019 00:42:46 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: type
    Probably since stripe_object is no longer used and the code needs to be cleaned up for that.

    I do note though that address verification is an option (AVS check), and I have turned it off. Not sure if that is related. I will do another transaction with AVS check turned on and compare.

    Note I also have turned off the option to create a Stripe customer object.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  9. #169
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    So when AVS check is turned on, the I only end up with the following warnings in the debug log:
    [01-Aug-2019 00:48:54 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: customer
    [01-Aug-2019 00:48:54 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: disputed
    [01-Aug-2019 00:48:54 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Charge instance: invoice
    [01-Aug-2019 00:48:54 Asia/Tokyo] Stripe Notice: Undefined property of Stripe_Object instance: type
    So the remaining properties (all address_*) seem to have been used for AVS.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

  10. #170
    Join Date
    Feb 2017
    Location
    Tokyo, Japan
    Posts
    311
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    Enabling the option for creating a Stripe customer object did not change the remaining debug log output.
    So I have no idea at the moment how these debug lines are related to the Stripe module options, and how to get rid of them.
    Zen Cart 1.5.6c modified for Japanese language support. Upgraded incrementally from initial 1.5.5d. Currently planning direct upgrade to 2.1.0

 

 
Page 17 of 61 FirstFirst ... 7151617181927 ... LastLast

Similar Threads

  1. pay2check.com payment module?
    By sunrise99 in forum Addon Payment Modules
    Replies: 0
    Last Post: 1 Nov 2011, 03:55 AM
  2. klikandpay.com payment module
    By rulest in forum Addon Payment Modules
    Replies: 0
    Last Post: 24 Sep 2010, 06:06 PM
  3. AlertPay Payment Module Integration Help Please!
    By etorf9751 in forum Addon Payment Modules
    Replies: 8
    Last Post: 16 Aug 2010, 05:06 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