Changeset 3460310
- Timestamp:
- 02/12/2026 07:58:29 PM (6 weeks ago)
- Location:
- visiblefirst
- Files:
-
- 4 edited
- 3 copied
-
tags/3.2.50 (copied) (copied from visiblefirst/trunk)
-
tags/3.2.50/includes/class-visibl-core.php (modified) (2 diffs)
-
tags/3.2.50/readme.txt (copied) (copied from visiblefirst/trunk/readme.txt) (2 diffs)
-
tags/3.2.50/visiblefirst.php (copied) (copied from visiblefirst/trunk/visiblefirst.php) (2 diffs)
-
trunk/includes/class-visibl-core.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/visiblefirst.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
visiblefirst/tags/3.2.50/includes/class-visibl-core.php
r3459466 r3460310 50 50 } 51 51 52 // Ping on first load if never pinged (immediate registration) 53 if (!get_option('visibl_last_ping')) { 54 add_action('admin_init', [__CLASS__, 'ping_server']); 55 } 52 // Ping on every admin load (cooldown handled in ping_server) 53 add_action('admin_init', [__CLASS__, 'ping_server']); 56 54 57 55 // Handle activation ping flag (set during plugin activation) … … 77 75 */ 78 76 public static function ping_server() { 79 // Don't ping if already pinged in the last 12hours77 // Don't ping if already pinged in the last 6 hours 80 78 $last_ping = get_option('visibl_last_ping', 0); 81 if ($last_ping > time() - 43200) {79 if ($last_ping > time() - 21600) { 82 80 return; 83 81 } -
visiblefirst/tags/3.2.50/readme.txt
r3460265 r3460310 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.2. 497 Stable tag: 3.2.50 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 196 196 197 197 == Changelog == 198 199 = 3.2.50 = 200 * FIX: Daily ping now fires on every admin visit (with 6-hour cooldown) 201 * Improves reliability of site check-ins when WP-Cron is unreliable 198 202 199 203 = 3.2.49 = -
visiblefirst/tags/3.2.50/visiblefirst.php
r3460265 r3460310 3 3 * Plugin Name: VisibleFirst 4 4 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress. 5 * Version: 3.2. 495 * Version: 3.2.50 6 6 * Author: VisibleFirst 7 7 * Author URI: https://visiblefirst.com … … 16 16 17 17 // Plugin constants 18 define('VISIBL_VERSION', '3.2. 49');18 define('VISIBL_VERSION', '3.2.50'); 19 19 define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__)); -
visiblefirst/trunk/includes/class-visibl-core.php
r3459466 r3460310 50 50 } 51 51 52 // Ping on first load if never pinged (immediate registration) 53 if (!get_option('visibl_last_ping')) { 54 add_action('admin_init', [__CLASS__, 'ping_server']); 55 } 52 // Ping on every admin load (cooldown handled in ping_server) 53 add_action('admin_init', [__CLASS__, 'ping_server']); 56 54 57 55 // Handle activation ping flag (set during plugin activation) … … 77 75 */ 78 76 public static function ping_server() { 79 // Don't ping if already pinged in the last 12hours77 // Don't ping if already pinged in the last 6 hours 80 78 $last_ping = get_option('visibl_last_ping', 0); 81 if ($last_ping > time() - 43200) {79 if ($last_ping > time() - 21600) { 82 80 return; 83 81 } -
visiblefirst/trunk/readme.txt
r3460265 r3460310 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.2. 497 Stable tag: 3.2.50 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 196 196 197 197 == Changelog == 198 199 = 3.2.50 = 200 * FIX: Daily ping now fires on every admin visit (with 6-hour cooldown) 201 * Improves reliability of site check-ins when WP-Cron is unreliable 198 202 199 203 = 3.2.49 = -
visiblefirst/trunk/visiblefirst.php
r3460265 r3460310 3 3 * Plugin Name: VisibleFirst 4 4 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress. 5 * Version: 3.2. 495 * Version: 3.2.50 6 6 * Author: VisibleFirst 7 7 * Author URI: https://visiblefirst.com … … 16 16 17 17 // Plugin constants 18 define('VISIBL_VERSION', '3.2. 49');18 define('VISIBL_VERSION', '3.2.50'); 19 19 define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.