Plugin Directory

Changeset 3460265


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

Release 3.2.49 - Fix auto-update cron scheduling

Location:
visiblefirst
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • visiblefirst/tags/3.2.49/readme.txt

    r3460152 r3460265  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.2.48
     7Stable tag: 3.2.49
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    196196
    197197== Changelog ==
     198
     199= 3.2.49 =
     200* FIX: Ensure WordPress auto-update cron is scheduled (fixes auto-updates on some hosts)
    198201
    199202= 3.2.48 =
  • visiblefirst/tags/3.2.49/visiblefirst.php

    r3460152 r3460265  
    33 * Plugin Name: VisibleFirst
    44 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress.
    5  * Version: 3.2.48
     5 * Version: 3.2.49
    66 * Author: VisibleFirst
    77 * Author URI: https://visiblefirst.com
     
    1616
    1717// Plugin constants
    18 define('VISIBL_VERSION', '3.2.48');
     18define('VISIBL_VERSION', '3.2.49');
    1919define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    119119            return $update;
    120120        }, 10, 2);
     121
     122        // Ensure WordPress auto-update cron is scheduled (some hosts disable it)
     123        if (!wp_next_scheduled('wp_maybe_auto_update')) {
     124            wp_schedule_event(time(), 'twicedaily', 'wp_maybe_auto_update');
     125        }
    121126    }
    122127
  • visiblefirst/trunk/readme.txt

    r3460152 r3460265  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 3.2.48
     7Stable tag: 3.2.49
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    196196
    197197== Changelog ==
     198
     199= 3.2.49 =
     200* FIX: Ensure WordPress auto-update cron is scheduled (fixes auto-updates on some hosts)
    198201
    199202= 3.2.48 =
  • visiblefirst/trunk/visiblefirst.php

    r3460152 r3460265  
    33 * Plugin Name: VisibleFirst
    44 * Description: AI + SEO + Social visibility in one plugin. Complete visibility optimization for WordPress.
    5  * Version: 3.2.48
     5 * Version: 3.2.49
    66 * Author: VisibleFirst
    77 * Author URI: https://visiblefirst.com
     
    1616
    1717// Plugin constants
    18 define('VISIBL_VERSION', '3.2.48');
     18define('VISIBL_VERSION', '3.2.49');
    1919define('VISIBL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2020define('VISIBL_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    119119            return $update;
    120120        }, 10, 2);
     121
     122        // Ensure WordPress auto-update cron is scheduled (some hosts disable it)
     123        if (!wp_next_scheduled('wp_maybe_auto_update')) {
     124            wp_schedule_event(time(), 'twicedaily', 'wp_maybe_auto_update');
     125        }
    121126    }
    122127
Note: See TracChangeset for help on using the changeset viewer.