• A valid XenForo Licence validation token will be required to complete signup and purchasing.
    This may retrieve this from the XenForo Customer Area.
  • All XenForo 2.3+ add-ons require at least php 8.0, recommend php 8.2+
    All XenForo 2.2+ add-ons require at least php 7.2, recommend php 8.x
    All XenForo 2.0-2.1 add-ons require at least php 5.6, recommend php 7.x.
    The Standard Library add-on is also required.
    Older php versions are not supported, and add-ons will either refuse to install or fail to function.
  • Automatic discounts are applied for orders above $100 USD (10%) or for early renewals (5%)

Persistent Alerts 2.3.0

Change log

  • Improve performance of "Persistent Alert - Only alert on no unread alerts" option by recording post's thread_id into the alerts table
    • Report Comment's parent container is also recorded, but requires Report Improvements v2.10.0+ to use it
    • The query for migrating the data can be quite slow for large query alert volumes! To manually run;
      SQL:
      alter table xf_user_alert add column `sv_container_id` int(10) unsigned DEFAULT NULL;
      
      UPDATE xf_user_alert AS alert
      JOIN xf_post AS post ON (alert.content_type = 'post' AND alert.content_id = post.post_id)
      SET alert.sv_container_id = post.thread_id
      WHERE alert.sv_container_id IS NULL AND `action` in ('insert', 'op_insert')
Back
Top