MyBB Community Forums

Full Version: [F] task system problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If the is an error in a task, the task will be locked. But if the problem isn't fixed, the system doesn't continue with the next task, so the task system is locked and no task is run until you notice it und fix the bug in the task.
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.
Can you post a fix?
Replace your inc/functions_task.php with this one
Quick question. Was there an error report generated in the task log?

I assume this isn't a bug with one of MyBB's tasks because you didn't report that either?
I think it was an error in a custom task, but there wasn't an entry in the log-file.
btw: I had a custom task which stopped always the system without an error message. (It worked via the button in ACP.) I replaced $mybb->cache->... with $cache->... and it worked. What's the difference?
lol other then $mybb->cache-> doesn't exist? Where did you ever get that?
$mybb->cache-> works (except the task).
inc/init.php:
$mybb->settings = &$settings;
$mybb->parse_cookies();
$mybb->cache = &$cache;
'doh I wonder how I missed that o.o and I wonder why it doesn't work :\
Did you fix it?