This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Task Scheduler

Description

Handle Massive Number of Actions

Do you have specific tasks which need to run at your desired time? Do you use WordPress as a proxy to generate data from external sources? As WordPress has evolved into a phase of application platforms, a more enhanced task management system needed to emerge.

Currently, with WP Cron, if you register a large number of actions, for example, 1000 tasks to run immediately and one of them stalls, it affects all the other actions preventing them from being loaded at the scheduled time. Also, the scheduled tasks won’t be triggered if there is no visitor on the site. The goal of this plugin is to resolve such issues and become the perfect solution for WordPress powered back-end application servers to provide full-brown API functionalities.

What it does

  • (optional) creates periodic background access to the site.
  • triggers tasks registered by the site owner at desired time or interval.

Built-in Actions

  • Delete Posts – performs bulk deletion of posts based on the post type, post statuses, taxonomy, and taxonomy terms.
  • Send Email – sends email to specified email addresses.
  • Clean Transients – deletes expired transients (caches).
  • Check Web Sites – accesses specified web pages and checks certain keywords.
  • Run PHP Scripts – runs PHP scripts of your choosing.

Custom Action Modules

Extensible

This is designed to be fully extensible and developers can add custom modules including actions and occurrence types.

Create a Custom Action

You can run your custom action with Task Scheduler and run it at scheduled times, once a day, with a fixed interval, or whatever you set with the plugin.

Place the code that includes the module in your plugin or functions.php of the activated theme.

1. Decide your action slug which also serves as a WordPress filter hook.

Say, you pick my_custom_action as an action name.

2. Use the add_filter() WordPress core function to hook into the action.

/**
 * Called when the Task Scheduler plugin gets loaded.
 */
function doMyCustomAction( $isExitCode, $oRoutine ) {

    /**
     * Do you stuff here.
     */
    TaskScheduler_Debug::log( $oRoutine->getMeta() );
    return 1;

}
/**
 * Set the 'my_custom_action' custom action slug in the Select Action screen
 * via Dashboard -> Task Scheduler -> Add New Task.
 */
add_filter( 'my_custom_action', 'doMyCustomAction', 10, 2 );

Please note that we use add_filter() not add_action() in order to return an exit code.

Return 1 if the task completes and 0 when there is a problem. You can pass any value except null.

3. Go to Dashboard -> Task Scheduler -> Add New Task. Proceed with the wizard and when you get the Select Action screen after setting up the occurrence, type my_custom_action, the one you defined in the above step.

The action slug set in the field will be triggered at the scheduled time.

It will be easier for you to modify an existent code. You can download the zip file and install it on your site.

Create a Custom Action Module

If you want your action to be listed in the Select Action screen, you need to create an action module.

To create an action module, you need to define a class by extending a base class that Task Scheduler prepares for you.

1. Define your custom action module class by extending the TaskScheduler_Action_Base class.

class TaskScheduler_SampleActionModule extends TaskScheduler_Action_Base {

    /**
     * The user constructor.
     * 
     * This method is automatically called at the end of the class constructor.
     */
    public function construct() {}

    /**
     * Returns the readable label of this action.
     * 
     * This will be called when displaying the action in an pull-down select option, task listing table, or notification email message.
     */
    public function getLabel( $sLabel ) {         
        return __( 'Sample Action Module', 'task-scheduler-sample-action-module' );
    }

    /**
     * Returns the description of the module.
     */
    public function getDescription( $sDescription ) {
        return __( 'This is a sample action module.', 'task-scheduler-sample-action-module' );
    }    

    /**
     * Defines the behaviour of the task action.
     *  
     */
    public function doAction( $isExitCode, $oRoutine ) {

        /**
         * Write your own code here! Delete the below log method. 
         * 
         * Good luck!
         */
        TaskScheduler_Debug::log( $oRoutine->getMeta() );

        // Exit code.
        return 1;

    }

}

In the doAction() method of the above class, define the behaviour of your action what it does. The second parameter receives a routine object. The object has a public method named getMeta() which returns the associated arguments.

2. Use the task_scheduler_action_after_loading_plugin action hook to register your action module.

To register your action module, just instantiate the class you defined.

function loadTaskSchedulerSampleActionModule() {

    // Register a custom action module.
    include( dirname( __FILE__ ) . '/module/TaskScheduler_SampleActionModule.php' );
    new TaskScheduler_SampleActionModule;

}
add_action( 'task_scheduler_action_after_loading_plugin', 'loadTaskSchedulerSampleActionModule' );

3. Go to Dashboard -> Task Scheduler -> Add New Task. Proceed the wizard and when you get the Select Action screen, choose your action.

You can set your custom arguments in the Argument (optional) field if necessary.

The set values will be stored in the argument element of the array returned by the getMeta() public method of the routine object.

It will be easier for you to modify an existent module. Get an example action module which comes as a plugin from this page. Download and activate it on your test site. Then modify the code, especially the doAction() method which defines the behavior of the action.

Create Threads

When your routine is too heavy and gets hung often, you can create threads that performs sub-routines of the main routine.

1. Define your thread class the TaskScheduler_Action_Base class.

class TaskScheduler_SampleActionModule_Thread extends TaskScheduler_Action_Base {

    /**
     * Returns the readable label of this action.
     *
     * This will be called when displaying the action in an pull-down select option, task listing table, or notification email message.
     */
    public function getLabel( $sLabel ) {
        return __( 'Run a PHP Script', 'task-scheduler' );
    }

    /**
     * Defines the behavior of the task action.
     */
    public function doAction( $isExitCode, $oThread ) {

        // Do your stuff
        $_aThreadArguments = $oThread->getMeta();
        TaskScheduler_Debug::log( $_aThreadArguments );
        return 1;

    }
}

2. Instantiate the thread class.

In the construct() method of your action module class introduced above that calls threads, instantiate the thread class by passing a custom action name. Here we pass task_scheduler_my_thread as an example.

class TaskScheduler_SampleActionModule extends TaskScheduler_Action_Base {

    public function construct() {
        new TaskScheduler_SampleActionModule_Thread( 'task_scheduler_my_thread' );
    }

    ...

}

3. Create a thread.

In the doAction() method of your action module class, create a thread with the createThread() method. The parameters are:

createThread( $sThreadActionHookName, $oRoutine, array $aThreadOptions, array $aSystemTaxonomyTerms=array(), $bAllowDuplicate )

1. `$sThreadActionHookName` - (string, required) the slug that serves as an action hook name
2. `$oRoutine` - (object, required) the routine object that is passed to the second parameter of `doAction()`` method.
3. `$aThreadOptions` - (array, required) an associative array holding arguments to pass to the thread.
4. `$aSystemTaxonomyTerms` - (array, optional) an array holding taxonomy terms for the system the plugin provides. Default: `array()``.
5. `$bAllowDuplicate` - (boolean, optional) whether to allow threads to be created with same arguments. Default: `false`.

Make sure the return value is null so that the routine will not close. Here we assume the $_aData variable holds lots of items so it must be processed separately by threads.

class TaskScheduler_SampleActionModule extends TaskScheduler_Action_Base {
    ...
    public function doAction( $isExitCode, $oRoutine ) {

        // Assuming this is big.
        $_aData = array(
            array(  'a', 'b', 'c' ),
            array(  'd', 'e', 'f', 'g' ),
            array(  'h', 'i' ),
        );

        foreach( $_aData as $_aDatum ) {
            $_aArguments = array(
                'datum' => $_aDatum,
                'foo'   => 'bar',
            );
            $this->createThread( 'task_scheduler_my_thread', $oRoutine, $_aArguments );
        }

        // Do not close this routine by returning 'null'. When all the threads are done, this routine will be automatically closed.
        return null;

    }
    ...
}

4. Process Passed Data from a Routine to a Thread.
In the thread class, retrieve the passed data.

class TaskScheduler_SampleActionModule_Thread extends TaskScheduler_Action_Base {

    ...

    /**
     * Defines the behavior of the task action.
     */
    public function doAction( $isExitCode, $oThread ) {

        // Do your stuff
        $_aArguments = $oThread->getMeta();
        $_sFoo       = $_aArguments[ 'foo' ];  // is 'bar'
        $_aDatum     =  $_aArguments[ 'datum' ]; // is either array(  'a', 'b', 'c' ), array(  'd', 'e', 'f', 'g' ), or array(  'h', 'i' )

        TaskScheduler_Debug::log( $_aArguments );
        return 1;

    }

}

The entire code will look like this.

Action Module Class:

class TaskScheduler_SampleActionModule extends TaskScheduler_Action_Base {

    /**
     * The user constructor.
     *
     * This method is automatically called at the end of the class constructor.
     */
    public function construct() {
        new TaskScheduler_SampleActionModule_Thread( 'task_scheduler_my_thread' );
    }


    /**
     * Returns the readable label of this action.
     *
     * This will be called when displaying the action in an pull-down select option, task listing table, or notification email message.
     */
    public function getLabel( $sLabel ) {
        return __( 'Sample Action Module', 'task-scheduler-sample-action-module' );
    }

    /**
     * Returns the description of the module.
     */
    public function getDescription( $sDescription ) {
        return __( 'This is a sample action module.', 'task-scheduler-sample-action-module' );
    }

    public function doAction( $isExitCode, $oRoutine ) {

        // Assuming this is big.
        $_aData = array(
            array(  'a', 'b', 'c' ),
            array(  'd', 'e', 'f', 'g' ),
            array(  'h', 'i' ),
        );

        foreach( $_aData as $_aDatum ) {
            $_aArguments = array(
                'datum' => $_aDatum,
                'foo'   => 'bar',
            );
            $this->createThread( 'task_scheduler_my_thread', $oRoutine, $_aArguments );
        }

        // Do not close this routine by returning 'null'. When all the threads are done, this routine will be automatically closed.
        return null;

    }

}

Thread Class:

class TaskScheduler_SampleActionModule_Thread extends TaskScheduler_Action_Base {

    /**
     * Returns the readable label of this action.
     *
     * This will be called when displaying the action in an pull-down select option, task listing table, or notification email message.
     */
    public function getLabel( $sLabel ) {
        return __( 'Run a PHP Script', 'task-scheduler' );
    }

    /**
     * Defines the behavior of the task action.
     */
    public function doAction( $isExitCode, $oThread ) {

        // Do your stuff
        $_aArguments = $oThread->getMeta();
        $_sFoo       = $_aArguments[ 'foo' ];  // is 'bar'
        $_aDatum     =  $_aArguments[ 'datum' ]; // is either array(  'a', 'b', 'c' ), array(  'd', 'e', 'f', 'g' ), or array(  'h', 'i' )

        TaskScheduler_Debug::log( $_aArguments );
        return 1;

    }

}

Don’t forget to instantiate the action module class.

new TaskScheduler_SampleActionModule;

Terminologies

  • Task – a rule which defines what kind of action routine to be performed at a specified time.
  • Routine – a main action routine created by a task. Depending on the action, it creates an action thread to divide its routine.
  • Thread – a divided action sub-sequential routine created by a routine. For example, The email action creates threads and sends emails per thread instead of sending them all in one routine to avoid exceeding the PHP’s maximum execution time.

Screenshots

  • Task Listing Table
  • Wizard
  • Settings

Installation

Install

  1. Upload task-scheduler.php and other files compressed in the zip folder to the /wp-content/plugins/ directory.,
  2. Activate the plugin through the Plugins menu in WordPress.

How to Use

  1. Define a Task via Dashboard -> Task Scheduler -> Add New Task
  2. In the task listing table, toggle on and off.

FAQ

Who needs this?

This is mostly for site admins who need total control over the server behavior. If you use WordPress just to publish articles, you won’t need this.

Is it possible to trigger actions while disabling the server heartbeat?

Yes. In that case, you need to set up your own Cron job that accesses the site with the task_scheduler_checking_actions query string in the request url.

e.g.
/usr/local/bin/curl –silent https://your-site/?task_scheduler_checking_actions=1

/usr/local/bin/wget https://your-site/?task_scheduler_checking_actions=1

Is it possible to send an email when a particular task completes?

Yes. Create a task with the Exit Code occurrence type and the Send Email action. The Exit Code occurrence type lets you choose which task and what exit code should trigger an email to be sent.

Is it possible to execute a PHP script?

The PHP Script action module lets you run PHP scripts located on your server. One thing to keep in mind is that the plugin just includes the PHP file using include() so it does not technically execute a PHP script.

How can I know what exit code is returned from an action?

The most built-in actions return 1 when they succeed and 0 on failure. You can check what exit code will be returned by enabling the log.

To enable the log, go to Dashboard -> Task Scheduler -> Manage Tasks and click on the Edit link of the task. Set a number in the Max Count of Log Entries option. 50 would be sufficient to check exit codes.

After the task runs, click on the View link of the task listing table of the task. The log page will open and it should tell what exit code the action returns.

How can I create a module?

See the Other Notes section. It requires a basic PHP coding skill and understanding of object oriented programming.

There are mainly two types of modules you can make, action and occurrence. Most of the time, you will want action modules.

Comprehensive instructions for creating modules are still in preparation. If you are interested, open the include/class/module/action folder and you’ll see some built-in action modules. If you open some of the files, you’ll notice that each of them are very short. What it does is basically extend a base module class like TaskScheduler_Action_Base and insert code in the methods predefined by the base class.

If you are comfortable reading PHP code, it should not be hard to figure out. Give it a try. If you get a question, don’t hesitate to post a question about it.

Found a bug. Where can I report?

Please use the GitHub repository of this plugin.

How do I list my module?

If you create a module plugin that can be shared by others, submit it to www.remarpro.com.

Reviews

July 6, 2021
I want to send emails to all the subscribers, but this option is not available right now. I would have to enter email address one by one each line to use this functionality.
September 1, 2020
Great plugin for long-running background asynchronous processing. And appreciate the great support and quick response to issues.
April 19, 2018
Just what I was looking for and it works great!
October 9, 2016
Task Scheduler is a wonderful plugin! I used the Task Scheduler sample code to write my own plugin to generate automatic registration reports for Event Espresso. When I ran into trouble miunosoft (Task Scheduler author) responded with help right away. Task Scheduler will help you with all your wordpress automation needs.
September 3, 2016
Easy and reliable plugin for task scheduling. Use it with the addon “Auto Post” (another plugin) for auto posting articles.
Read all 7 reviews

Contributors & Developers

“Task Scheduler” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Task Scheduler” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.6.3 – 2022/02/26

  • Fixed an issue that awaiting routines remained when a task is disabled.
  • Fixed incorrect call counts for routines.
  • Fixed the PHP error, “Uncaught TypeError: round(): Argument #1 ($num) must be of type int|float” with PHP 8.
  • Fixed an issue that future time was displayed for the Last Run time in UI.
  • Changed the log file name created by the Debug action module.

1.6.2 – 2022/02/10

  • Fixed non-sanitized input and request values.

1.6.1 – 2022/02/10

  • Fixed a bug that unnecessary routines were spawned per task.
  • Fixed a bug that Run Count was not updated when a routine had a thread.
  • Fixed non-sanitized HTTP request values.
  • Refined some input fields due to a dependency replacement.

1.6.0 – 2021/07/07

  • Added the User Roles option for the Email action

1.5.4 – 2021/02/24

  • Fixed a bug that the server heartbeat did not function, started since v1.5.0.

1.5.3 – 2020/09/26

  • Fixed a bug that caused a PHP error saying “Fatal error: Uncaught TypeError: Argument 1 passed” during creating and editing a task.

1.5.2 – 2020/09/22

  • Added a test component which is visible when the site debug mode is turned on.
  • Fixed a bug that the redirected URLs of action links had an extra port indication on some servers.
  • Fixed a bug of a PHP syntax error.

1.5.1 – 2020/09/20

  • Changed the behavior of truncating task log items not to create internal routines and threads.
  • Fixed an incompatibility issue with PHP 7.4 regarding usage of curly braces on array elements.
  • Fixed a bug that orphaned threads were not deleted properly.
  • Fixed a bug that a routine lock transient was not properly retrieved.

1.5.0 – 2020/09/11

  • Added the ability to accept multiple exit codes for the Exit Code occurrence type.
  • Added the Negate option for the Exit Code occurrence type allows the user choose whether the action gets triggered when the routine returns none of the set exit codes.
  • Added the behavior to clean up threads when their owner routine is deleted.
  • Added the behavior to clean up routines when their owner task is deleted.
  • Added the options for the Email action to set the name and address of the from field.
  • Tweaked the setting UI regarding redundant visible fields.
  • Removed unnecessary action links in the task listing table.
  • Changed the behaviour of the Run action link from normally triggering an action from forcing it.
  • Changed the form session length to be longer.
  • Fixed a bug that Hung Routine Handler and Log Deletion threads were often duplicated.
  • Fixed a bug with the Email action that sending Emails failed due to the invalid email address set for the from field.
  • Fixed an incompatibility issue with WordPress 5.5 which includes jQuery 1.12.4 that causes the auto-complete field to not storing proper values.
  • Fixed an incompatibility issue with form button icons in WordPress 5.3 or above.

1.4.9 – 2020/08/19

  • Fixed an incompatibility issue with WordPress 5.5 regarding radio input buttons.

1.4.8 – 2020/03/08

  • Added an admin notice to appear when the site timezone is not set.
  • Fixed a bug with the Specific Time occurrence type that the d/m/Y date format caused time miscalculations.

1.4.7- 2018/10/17

  • Fixed a bug that caused a PHP warning of strict standards.

1.4.6 – 2018/08/01

  • Added default and Japanese language files.
  • Fixed a bug with the Daily occurrence type that spawned routines multiple times on some servers.

1.4.5 – 2017/06/11

  • Fixed a bug with the Daily occurrence type that did not set the correct time for cases of 7 days ahead.

1.4.4 – 2017/03/11

  • Fixed a bug in the Delete Posts action module that some posts without taxonomy items could not be deleted.

1.4.3 – 2016/12/27

  • Optimized the performance of server-heartbeat.

1.4.2 – 2016/10/03

  • Added the Elapsed Time option for the Delete Posts action module.
  • Fixed PHP warnings of Notice: Undefined property: stdClass::$delete_posts class-wp-posts-list-table.php on line 403 in the Log page.
  • Tweaked the settings UI.

1.4.1 – 2016/09/30

  • Added a filter for post query arguments of the Delete Posts action module.
  • Fixed PHP warnings of Declaration of TaskScheduler_Utility::uniteArrays() should be compatible with....

1.4.0 – 2016/09/21

  • Added the Run PHP Script action module.
  • Tweaked the settings UI.

1.3.4 – 2016/09/08

  • Fixed a bug which caused a fatal error Cannot redeclare class TaskScheduler_Routine_Base in WordPress 4.6.1.

1.3.3 – 2016/09/01

  • Fixed a bug that the ability to add Log items manually for multi-sites were not disabled in v1.3.2.

1.3.2 – 2016/08/23

  • Fixed a compatibility issue with WordPress 4.6 that prevented routines from being processed.
  • Deprecated the ability for the Log functionality to create an item manually.

1.3.1 – 2016/07/06

  • Added an option to delete options upon plugin uninstall.
  • Deprecated the option to delete options upon plugin deactivation.

1.3.0 – 2016/05/30

  • Added a built-in action module which checks specified web pages.

1.2.0 – 2016/03/19

  • Added the ability to set multiple email addresses per input field of the Send Email action module.
  • Added the ability to clone tasks via an action link in the task listing table.

1.1.1 – 2016/02/03

  • Fixed a bug that multiple routine instances get created with the Daily occurrence type.

1.1.0 – 2015/08/02

  • Added a built-in action module that cleans expired transients.
  • Added an option that enables the ability to remove hung routines.

1.0.2 – 2015/07/03

  • Fixed auto-complete fields that did not work in WordPress 4.0 or above.
  • Changed the timing of loading plugin components to support themes to add modules.

1.0.1 – 2015/05/12

  • Fixed a bug in the Delete Posts action module that the taxonomy and post status options did not take effect.
  • Fixed an incompatibility issue with WordPress 4.2 or above that in the listing table view, the view links lost the count indications.
  • Fixed an incompatibility issue with WordPress 4.2 or above that taxonomy terms could not be listed.
  • Changed it to accept an empty slug to create a custom module.
  • Changed it to accept no wizard class to create a custom module.

1.0.0 – 2015/03/26

  • Added the daily occurrence type.
  • Updated Admin Page Framework.

1.0.0b13 – 2014/09/01

  • Fixed an issue with sites enabling object caching.
  • Fixed a bug of paged navigation links in the task listing table.

1.0.0b12 – 2014/08/27

  • Fixed a bug that v1.0.0b11 had some missing files due to the incorrect character cases.

1.0.0b11 – 2014/08/22

  • Added the ability for the autocomplete admin page framework custom field to search users that can be used by modules.

1.0.0b10 – 2014/08/18

  • Deprecated the Hung Routine Handler action module.
  • Refined the entire routine system to create each routine instance when a task starts.
  • Changed the default routine status of tasks to be Ready from Inactive.
  • Fixed a bug that the wizard form field of the Exit Code occurrence type did not function as of the previous version.
  • Fixed a bug that when updating module options, the last run time meta value got lost.

1.0.0b09 – 2014/08/13

  • Changed the method of including PHP files to keep maintainability.
  • Tweaked the performance of the plugin admin pages.
  • Fixed a bug that a test page created for debugging was remaining.
  • Fixed a bug that module options were not displayed in the task editing page.

1.0.0b08 – 2014/08/09

  • Added the Check Action Now button in the task listing table page.
  • Added the Number of Posts to Process per Routine option to the Delete Posts action module.
  • Tweaked the method of including PHP files to improve performance.
  • Tweaked the plugin admin pages to define forms within the own page loads.
  • Tweaked the Delete Posts action module to load threads smoothly for sites disabling the server heartbeat.
  • Changed the meta box output of modules to display stored module option values from all wizard screens if the module uses multiple wizard screens.

1.0.0b07 – 2014/08/06

  • Added a new meta box in task edition page that includes the Update submit button, some time indications, and the switch option of Enabled or Disabled.
  • Tweaked the mechanism of checking routines.
  • Tweaked the Delete Posts action module not to insert a taxonomy query argument when the taxonomy slug is not selected.
  • Fixed a bug that repeatable fields could not be properly updated in wizards.
  • Fixed a bug that editing a disable task made the task not accessible from the task listing table.
  • Fixed a bug that the same task could be triggered when simultaneous page loads that checks the scheduled actions are made at the exact the same time.
  • Fixed a bug that the same task could be wedged in the queue of spawning tasks while another page load is spawning tasks.

1.0.0b06 – 2014/08/05

  • Fixed a bug that the server heartbeat got resumed upon plugin activation even when it is disabled.
  • Added a description in the setting page that appears when the server heartbeat is disabled.

1.0.0b05 – 2014/08/03

  • Made it possible to trigger actions without the server heartbeat.

1.0.0b04 – 2014/08/02

  • Fixed an issue that multiple server heartbeat instances could run.

1.0.0b03 – 2014/08/01

  • Changed it to display module description in the form field.
  • Fixed an issue that the Change button did not appear when the Debug action is selected.
  • Optimized the server heartbeat.

1.0.0b02 – 2014/07/31

  • Initial release.
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17