Log in

View Full Version : Scheduled Tasks - Logging


Mko
04-15-2012, 01:10 PM
I've created my own Scheduled Task coded in MySQLi. Although, I'm stumped as to how to make this Scheduled Task Log its actions.

Core Code:
<?php
error_reporting(E_ALL & ~E_NOTICE & ~8192);
$link = mysqli_init();
mysqli_real_connect($link, 'localhost', 'root', '', 'vbulletin');

$time = time();
// select all banned users who are due to have their ban lifted
$bannedusers = mysqli_query($link, "SELECT * FROM table WHERE time <> 0 AND time < " .$time. "") or print(mysqli_error($link));

$logging = mysqli_fetch_array($bannedusers);

// do we have some results?
if (mysqli_num_rows($bannedusers))
{
// delete ban records
mysqli_query($link, "UPDATE table SET time = 0 WHERE timetime <> 0 AND time < " .$time. "") or print(mysqli_error($link));

// log the cron action
log_cron_action(implode(', ', $logging['id']), $nextitem, 1);
}

mysqli_free_result($bannedusers);
?>
However, when I execute this Task, I get this error message:
Warning: implode() [function.implode]: Invalid arguments passed in [path]/includes/cron/mycode.php on line 19

Can anyone help me so I can properly Log these actions?

Thanks,
Mark

kh99
04-15-2012, 03:18 PM
The second implode() parameter needs to be an array. If you want to log the entire $logging array, probably you just want to pass it $logging (without the [$id]).

Mko
04-15-2012, 03:39 PM
The second implode() parameter needs to be an array. If you want to log the entire $logging array, probably you just want to pass it $logging (without the [$id]).
Without the ['id'] leads to the whole row being logged. Is there any way to just make it log the ID?

kh99
04-15-2012, 05:12 PM
I think you can either provide a string to log, like

log_cron_action("Id is " . $logging['id'], $nextitem);


or else you can use a phrase (which has to be named task_varname_log, where varname is the actual varname of your task), and you can pass either one parameter to the phrase, or an array of parameters. So you could call it like this:

log_cron_action('', $logging['id'], $nextitem);


and then make a phrase something like "Id is {1}".

(FYI I got this by looking at the code, but I haven't actually tried it).

Mko
04-15-2012, 05:32 PM
Works, thanks for your help!