Plugin Directory

Changeset 3460310


Ignore:
Timestamp:
02/12/2026 07:58:29 PM (6 weeks ago)
Author:
visiblefirst
Message:

Release 3.2.50 - Fix daily ping to fire on every admin visit

Location:
visiblefirst
Files:
4 edited
3 copied

Legend:

Unmodified
Added
Removed
  • visiblefirst/tags/3.2.50/includes/class-visibl-core.php

    r3459466 r3460310  
    5050        }
    5151
    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']);
    5654
    5755        // Handle activation ping flag (set during plugin activation)
     
    7775     */
    7876    public static function ping_server() {
    79         // Don't ping if already pinged in the last 12 hours
     77        // Don't ping if already pinged in the last 6 hours
    8078        $last_ping = get_option('visibl_last_ping', 0);
    81         if ($last_ping > time() - 43200) {
     79        if ($last_ping > time() - 21600) {
    8280            return;
    8381        }
  • visiblefirst/tags/3.2.50/readme.txt

    r3460265 r3460310  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.2.49
     7Stable tag: 3.2.50
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    196196
    197197== 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
    198202
    199203= 3.2.49 =
  • visiblefirst/tags/3.2.50/visiblefirst.php

    r3460265 r3460310  
    33 * Plugin Name: VisibleFirst
    44 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress.
    5  * Version: 3.2.49
     5 * Version: 3.2.50
    66 * Author: VisibleFirst
    77 * Author URI: https://visiblefirst.com
     
    1616
    1717// Plugin constants
    18 define('VISIBL_VERSION', '3.2.49');
     18define('VISIBL_VERSION', '3.2.50');
    1919define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
  • visiblefirst/trunk/includes/class-visibl-core.php

    r3459466 r3460310  
    5050        }
    5151
    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']);
    5654
    5755        // Handle activation ping flag (set during plugin activation)
     
    7775     */
    7876    public static function ping_server() {
    79         // Don't ping if already pinged in the last 12 hours
     77        // Don't ping if already pinged in the last 6 hours
    8078        $last_ping = get_option('visibl_last_ping', 0);
    81         if ($last_ping > time() - 43200) {
     79        if ($last_ping > time() - 21600) {
    8280            return;
    8381        }
  • visiblefirst/trunk/readme.txt

    r3460265 r3460310  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.2.49
     7Stable tag: 3.2.50
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    196196
    197197== 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
    198202
    199203= 3.2.49 =
  • visiblefirst/trunk/visiblefirst.php

    r3460265 r3460310  
    33 * Plugin Name: VisibleFirst
    44 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress.
    5  * Version: 3.2.49
     5 * Version: 3.2.50
    66 * Author: VisibleFirst
    77 * Author URI: https://visiblefirst.com
     
    1616
    1717// Plugin constants
    18 define('VISIBL_VERSION', '3.2.49');
     18define('VISIBL_VERSION', '3.2.50');
    1919define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.