Plugin Directory

Changeset 2559424


Ignore:
Timestamp:
07/06/2021 03:22:54 PM (4 years ago)
Author:
paybox
Message:

pushing version 1.0.1: fixing settings issue when updating module

Location:
e-transactions-wc
Files:
62 added
6 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • e-transactions-wc/tags/1.0/readme.txt

    r2557102 r2559424  
    2323it adds payment information to the orders details and changes the status of orders (upon reception of an IPN, see below.) and adds payment means on the checkout page.
    2424
    25 This plugin takes information from the order and creates a form containing the details of the payment to be made, including parameters configured in the admin panel of the module that identify the mechant. 
     25This plugin takes information from the order and creates a form containing the details of the payment to be made, including parameters configured in the admin panel of the module that identify the mechant.
    2626
    2727The plugin checks for availability of the E-Transactions platform, through a call to our servers.
     
    5151= My orders are not validated, even though the payment went through ? =
    5252
    53 The oder paid with E-Transactions is only validated upon rectpion of a positive Instant Payment Notification (IPN) this IPN is authenticated with the filter on the IP address, if the IP is somewhow changed, the plugin will give a 500 HTTP error. 
    54 Avoid Maintenance mode, or allow E-Transactions IP to go through (194.2.122.158,195.25.7.166,195.101.99.76). If the WordPress Installation is in maintenance mode, the E-Transactions server will not be able to contact it. 
     53The oder paid with E-Transactions is only validated upon rectpion of a positive Instant Payment Notification (IPN) this IPN is authenticated with the filter on the IP address, if the IP is somewhow changed, the plugin will give a 500 HTTP error.
     54Avoid Maintenance mode, or allow E-Transactions IP to go through (194.2.122.158,195.25.7.166,195.101.99.76). If the WordPress Installation is in maintenance mode, the E-Transactions server will not be able to contact it.
    5555
    5656= Something is not working for me, how can i get help ? =
     
    6868
    6969== Changelog ==
     70= 0.9.9.9.3 =
     71Force 3DSv2 for all cards
     72
    7073= 0.9.9.9.2 =
    7174Add 3DSv2 support
     
    121124
    122125= 0.9.6.7 =
    123 Changed: 
    124 only rely on the $_SERVER data to check for the IP address: 
     126Changed:
     127only rely on the $_SERVER data to check for the IP address:
    125128this solves the non reception of the IPN  (error 500)
    126129
    127130= 0.9.6.6 =
    128 Second release: 
    129 Fixed: 
     131Second release:
     132Fixed:
    130133-Missing table now created ok.
    131 -"Syntax error: Unexpected token < " message when checking out, 
     134-"Syntax error: Unexpected token < " message when checking out,
    132135-Use of deprecated functions to get pages url: now we use endpoints.
    133136
  • e-transactions-wc/trunk/class/wc-etransactions-abstract-gateway.php

    r2557088 r2559424  
    803803    protected function getCurrentConfigMode()
    804804    {
     805        // Check previous configuration mode before computing the option key (upgrade case)
     806        $settings = get_option($this->plugin_id . $this->id . '_settings');
     807        if (get_option($this->plugin_id . $this->id . '_env') === false && !empty($settings['environment'])) {
     808            update_option($this->plugin_id . $this->id . '_env', $settings['environment']);
     809            unset($settings['environment']);
     810            update_option($this->plugin_id . $this->id . '_settings', $settings);
     811        }
     812
    805813        // Use current defined mode into the URL (only if request is from admin)
    806814        if (is_admin() && !empty($_GET['config_mode']) && in_array($_GET['config_mode'], array('test', 'production'))) {
  • e-transactions-wc/trunk/class/wc-etransactions-config.php

    r2557088 r2559424  
    1010    private $_values;
    1111    private $_defaults = array(
    12         'icon' => 'logo.png',
     12        'icon' => 'cbvisamcecb.png',
    1313        'amount' => '',
    1414        'debug' => 'no',
  • e-transactions-wc/trunk/class/wc-etransactions-standard-gateway.php

    r2557088 r2559424  
    135135            $rowsCapture[] = $this->_showDetailRow(__('Call:', WC_ETRANSACTIONS_PLUGIN), $capturePaymentData['NUMAPPEL']);
    136136            $rowsCapture[] = $this->_showDetailRow(__('Authorization:', WC_ETRANSACTIONS_PLUGIN), $capturePaymentData['AUTORISATION']);
    137             $rowsCapture[] = $this->_showDetailRow(__('Processing date:', WC_ETRANSACTIONS_PLUGIN), date(get_option('date_format') . ' - ' . get_option('time_format'), $capturePaymentData['CAPTURE_DATE_ADD']));
     137            $rowsCapture[] = $this->_showDetailRow(__('Processing date:', WC_ETRANSACTIONS_PLUGIN), wp_date(get_option('date_format') . ' - ' . get_option('time_format'), $capturePaymentData['CAPTURE_DATE_ADD']));
    138138            echo '<p>'.implode('<br/>', $rowsCapture).'</p>';
    139139        }
  • e-transactions-wc/trunk/readme.txt

    r2558792 r2559424  
    55Requires at least: 3.0.1
    66Tested up to: 5.7.2
    7 Stable tag: 0.9.9.9.3
     7Stable tag: 1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868
    6969== Changelog ==
    70 = 1.0 =
     70= 1.0.1 =
    7171-Up2pay branding & Adding many features to the plugin:
    7272-iFrame integration
     
    7878without changing the actual working mode for the website.
    7979
    80 == Changelog ==
    8180= 0.9.9.9.3 =
    8281Force 3DSv2 for all cards
  • e-transactions-wc/trunk/wc-etransactions.php

    r2557088 r2559424  
    33 * Plugin Name: E-Transactions
    44 * Description: E-Transactions gateway payment plugins for WooCommerce
    5  * Version: 1.0
     5 * Version: 1.0.1
    66 * Author: E-Transactions
    77 * Author URI: http://www.e-transactions.fr
     
    4141}
    4242defined('WC_ETRANSACTIONS_PLUGIN') or define('WC_ETRANSACTIONS_PLUGIN', 'wc-etransactions');
    43 defined('WC_ETRANSACTIONS_VERSION') or define('WC_ETRANSACTIONS_VERSION', '1.0');
     43defined('WC_ETRANSACTIONS_VERSION') or define('WC_ETRANSACTIONS_VERSION', '1.0.1');
    4444defined('WC_ETRANSACTIONS_KEY_PATH') or define('WC_ETRANSACTIONS_KEY_PATH', ABSPATH . '/kek.php');
    4545defined('WC_ETRANSACTIONS_PLUGIN_URL') or define('WC_ETRANSACTIONS_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.