Changeset 2545106
- Timestamp:
- 06/09/2021 02:07:09 PM (5 years ago)
- Location:
- wecantrack
- Files:
-
- 25 added
- 4 edited
-
tags/1.2.9 (added)
-
tags/1.2.9/README.md (added)
-
tags/1.2.9/WecantrackAdmin.php (added)
-
tags/1.2.9/WecantrackApp.php (added)
-
tags/1.2.9/WecantrackAppRedirectPage.php (added)
-
tags/1.2.9/WecantrackHelper.php (added)
-
tags/1.2.9/css (added)
-
tags/1.2.9/css/admin.css (added)
-
tags/1.2.9/images (added)
-
tags/1.2.9/images/favicon.png (added)
-
tags/1.2.9/images/favicon2.png (added)
-
tags/1.2.9/images/wct-logo-normal.svg (added)
-
tags/1.2.9/index.php (added)
-
tags/1.2.9/js (added)
-
tags/1.2.9/js/.gitignore (added)
-
tags/1.2.9/js/admin.js (added)
-
tags/1.2.9/js/redirect_page.js (added)
-
tags/1.2.9/license.txt (added)
-
tags/1.2.9/locale (added)
-
tags/1.2.9/readme.txt (added)
-
tags/1.2.9/views (added)
-
tags/1.2.9/views/redirect_page.php (added)
-
tags/1.2.9/views/settings.php (added)
-
tags/1.2.9/wecantrack.php (added)
-
tags/1.2.9/wecantrack.pot (added)
-
trunk/WecantrackApp.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wecantrack.php (modified) (2 diffs)
-
trunk/wecantrack.pot (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wecantrack/trunk/WecantrackApp.php
r2468989 r2545106 224 224 // checked if URL schema is OK 225 225 // todo notify this error so that the user knows that there's an invalid URL on this page 226 error_log('W CT Plugin: wecantrack plugin parsed a likelyfaulty URL: '.$original_url);226 error_log('WeCanTrack Plugin tried to parse a faulty URL: '.$original_url); 227 227 return false; 228 228 } … … 307 307 308 308 } catch (Exception $e) { 309 error_log('WCT Plugin: Clickout API: '.$e->getMessage()); 309 if (empty($post_data)) { 310 $post_data = []; 311 } 312 313 if (empty($response)) { 314 $response = null; 315 } 316 317 $error_msg = [ 318 'e_msg' => $e->getMessage(), 319 'post_data' => $post_data, 320 'response' => $response 321 ]; 322 323 error_log('WeCanTrack Plugin Clickout API exception: '.json_encode($error_msg)); 310 324 } 311 325 … … 389 403 390 404 } catch (Exception $e) { 391 error_log('WCT Plugin: wecantrack_update_data_fetch() error: ' . $e->getMessage()); 405 $error_msg = [ 406 'e_msg' => $e->getMessage() 407 ]; 408 error_log('WeCanTrack Plugin wecantrack_update_data_fetch() exception: ' . json_encode($error_msg)); 392 409 update_option('wecantrack_domain_patterns', NULL);// maybe something went wrong with unserialize(), so clear it 393 410 return false; -
wecantrack/trunk/readme.txt
r2471612 r2545106 5 5 Tested up to: 5.6 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.2. 87 Stable tag: 1.2.9 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 60 60 61 61 == Changelog == 62 63 = 1.2.9 - 21st June 2021 = 64 * Update JS snippet when Plugin Updates. No need to click on Save on plugin update anymore. 62 65 63 66 = 1.2.8 - 9th February 2021 = -
wecantrack/trunk/wecantrack.php
r2471612 r2545106 7 7 Plugin URI: https://wecantrack.com/wordpress 8 8 Description: Integrate all you affiliate sales in Google Analytics, Google Ads, Facebook, Data Studio and more! 9 Version: 1.2. 89 Version: 1.2.9 10 10 Author: wecantrack.com 11 11 Author URI: https://wecantrack.com … … 17 17 if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } 18 18 19 define('WECANTRACK_VERSION', '1.2. 8');19 define('WECANTRACK_VERSION', '1.2.9'); 20 20 define('WECANTRACK_PLUGIN_NAME', 'wecantrack'); 21 21 define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME); -
wecantrack/trunk/wecantrack.pot
r2468989 r2545106 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WeCanTrack 1.2. 7\n"5 "Project-Id-Version: WeCanTrack 1.2.9\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2021-0 2-04T16:07:06+00:00\n"12 "POT-Creation-Date: 2021-06-09T13:56:46+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.4.0\n" … … 126 126 msgstr "" 127 127 128 #: WecantrackAdmin.php:1 71128 #: WecantrackAdmin.php:184 129 129 msgid "Something went wrong with the request" 130 130 msgstr "" 131 131 132 #: WecantrackAdmin.php:1 72132 #: WecantrackAdmin.php:185 133 133 msgid "Added at least 1 active network account" 134 134 msgstr "" 135 135 136 #: WecantrackAdmin.php:1 73136 #: WecantrackAdmin.php:186 137 137 msgid "You have not added at least 1 active network account. To add a network, click here." 138 138 msgstr "" 139 139 140 #: WecantrackAdmin.php:1 76140 #: WecantrackAdmin.php:189 141 141 msgid "verified" 142 142 msgstr "" 143 143 144 #: WecantrackAdmin.php:1 77144 #: WecantrackAdmin.php:190 145 145 msgid "Invalid API Key" 146 146 msgstr "" 147 147 148 #: WecantrackAdmin.php:1 78148 #: WecantrackAdmin.php:191 149 149 msgid "Invalid Request" 150 150 msgstr "" 151 151 152 #: WecantrackAdmin.php:1 79152 #: WecantrackAdmin.php:192 153 153 msgid "Valid API Key" 154 154 msgstr "" 155 155 156 #: WecantrackAdmin.php:1 80156 #: WecantrackAdmin.php:193 157 157 msgid "Your changes have been saved" 158 158 msgstr "" 159 159 160 #: WecantrackAdmin.php:1 81160 #: WecantrackAdmin.php:194 161 161 msgid "Something went wrong." 162 162 msgstr ""
Note: See TracChangeset
for help on using the changeset viewer.