Jump to content

is DailyCronJob still working???


Recommended Posts

I created a hook, and it apperas that DailyCronJob is not being called at all.  I created a simple testing hook file:

function whmcstricks_cancel_invoices($vars) {
    logactivity('Hook cancel invoice run, check if something was cancelled');
}

function whmcstricks_cancel_invoices_bis($vars) {
    logactivity('Hook cancel invoice_bis run, check if something was cancelled');
}

function whmcstricks_cancel_invoices_tris($vars) {
    logactivity('Hook cancel invoice_tris run, check if something was cancelled');
}

add_hook('AfterCronJob', 1000, 'whmcstricks_cancel_invoices');
add_hook('DailyCronJobPreEmail', 1000, 'whmcstricks_cancel_invoices_bis');
add_hook('DailyCronJob', 1000, 'whmcstricks_cancel_invoices_tris');

And only the whmcstricks_cancel_invoices function is being called. is it possible that these hooks are not working anymore? is this hook file logging correctly for the 4 functions for you?

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated