HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wordpress/wp-content/plugins/trinity-audio/inc/post-hashes-cron.php
<?php
  add_filter('cron_schedules', function($schedules) {
    $schedules['two_minutes'] = array(
      'interval' => 120,
      'display'  => esc_html__('Every 2 Minutes'),);
    return $schedules;
  });

  add_action('bl_cron_hook', 'trinity_phbu_continue');

  if (!wp_next_scheduled('bl_cron_hook')) {
    wp_schedule_event(time(), 'two_minutes', 'bl_cron_hook');
  }

  // add action hook here, so it triggers when another plugin executes wp_insert_post (especially using wp-cron)
  add_action('wp_insert_post', 'trinity_ph_update_save_post_callback', 2147483647, 3);