Changeset 2559424
- Timestamp:
- 07/06/2021 03:22:54 PM (4 years ago)
- 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 23 23 it 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. 24 24 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. 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. 26 26 27 27 The plugin checks for availability of the E-Transactions platform, through a call to our servers. … … 51 51 = My orders are not validated, even though the payment went through ? = 52 52 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. 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. 55 55 56 56 = Something is not working for me, how can i get help ? = … … 68 68 69 69 == Changelog == 70 = 0.9.9.9.3 = 71 Force 3DSv2 for all cards 72 70 73 = 0.9.9.9.2 = 71 74 Add 3DSv2 support … … 121 124 122 125 = 0.9.6.7 = 123 Changed: 124 only rely on the $_SERVER data to check for the IP address: 126 Changed: 127 only rely on the $_SERVER data to check for the IP address: 125 128 this solves the non reception of the IPN (error 500) 126 129 127 130 = 0.9.6.6 = 128 Second release: 129 Fixed: 131 Second release: 132 Fixed: 130 133 -Missing table now created ok. 131 -"Syntax error: Unexpected token < " message when checking out, 134 -"Syntax error: Unexpected token < " message when checking out, 132 135 -Use of deprecated functions to get pages url: now we use endpoints. 133 136 -
e-transactions-wc/trunk/class/wc-etransactions-abstract-gateway.php
r2557088 r2559424 803 803 protected function getCurrentConfigMode() 804 804 { 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 805 813 // Use current defined mode into the URL (only if request is from admin) 806 814 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 10 10 private $_values; 11 11 private $_defaults = array( 12 'icon' => ' logo.png',12 'icon' => 'cbvisamcecb.png', 13 13 'amount' => '', 14 14 'debug' => 'no', -
e-transactions-wc/trunk/class/wc-etransactions-standard-gateway.php
r2557088 r2559424 135 135 $rowsCapture[] = $this->_showDetailRow(__('Call:', WC_ETRANSACTIONS_PLUGIN), $capturePaymentData['NUMAPPEL']); 136 136 $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'])); 138 138 echo '<p>'.implode('<br/>', $rowsCapture).'</p>'; 139 139 } -
e-transactions-wc/trunk/readme.txt
r2558792 r2559424 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.7.2 7 Stable tag: 0.9.9.9.37 Stable tag: 1.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 69 69 == Changelog == 70 = 1.0 =70 = 1.0.1 = 71 71 -Up2pay branding & Adding many features to the plugin: 72 72 -iFrame integration … … 78 78 without changing the actual working mode for the website. 79 79 80 == Changelog ==81 80 = 0.9.9.9.3 = 82 81 Force 3DSv2 for all cards -
e-transactions-wc/trunk/wc-etransactions.php
r2557088 r2559424 3 3 * Plugin Name: E-Transactions 4 4 * Description: E-Transactions gateway payment plugins for WooCommerce 5 * Version: 1.0 5 * Version: 1.0.1 6 6 * Author: E-Transactions 7 7 * Author URI: http://www.e-transactions.fr … … 41 41 } 42 42 defined('WC_ETRANSACTIONS_PLUGIN') or define('WC_ETRANSACTIONS_PLUGIN', 'wc-etransactions'); 43 defined('WC_ETRANSACTIONS_VERSION') or define('WC_ETRANSACTIONS_VERSION', '1.0 ');43 defined('WC_ETRANSACTIONS_VERSION') or define('WC_ETRANSACTIONS_VERSION', '1.0.1'); 44 44 defined('WC_ETRANSACTIONS_KEY_PATH') or define('WC_ETRANSACTIONS_KEY_PATH', ABSPATH . '/kek.php'); 45 45 defined('WC_ETRANSACTIONS_PLUGIN_URL') or define('WC_ETRANSACTIONS_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.