Conversions stuck on pending

invalidentry9065857

New Member
YetiShare User
Apr 5, 2016
13
0
0
Most of my conversions go through without a htich. I'm just using the plugin to grab screens (not convet videos) but I've had a few videos get stuck on Processing for hours when it takes not more than 30-45 seconds to grab a screen for most videos.

Is there a way to 'clear' it out automatically? I went through the convert.php script and thought I switched it out to 120 seconds, but that doesn't seem to be working.

I'm not to familiar with coding and manually resetting them is a disadvantage (because they don't go through no matter how much I reset)
 

sukhman21

Member
YetiShare User
YetiShare Supporter
Jan 26, 2015
508
3
18
in your convert.php file on line# 271
change
Code:
$stmt = $db->query("UPDATE plugin_mediaconverter_queue SET status='failed', date_finished=NOW() WHERE status='processing' AND date_started < NOW() - INTERVAL 1 DAY");
to
Code:
$stmt = $db->query("UPDATE plugin_mediaconverter_queue SET status='failed', date_finished=NOW() WHERE status='processing' AND date_started < NOW() - INTERVAL 1 HOUR");
or you can change it to 10 minute or 30 minute depending on how much time you want to give it.