Hi Lynne,
Version 4.2.5 Beta 1
php 7.0.17
Issue was going on before using older versions as well but it is sort of random and I thought it was fixed for awhile. Nothing showing in the logs either.
--------------- Added [DATE]1490309940[/DATE] at [TIME]1490309940[/TIME] ---------------
Dave is helping me and we both are mystified..
I am doing a back up now and then I am going to change inline full size to thumbnails and see if that helps...
Not sure I know what else to try. I removed a boat load of plug ins, turned off cron tasks.. I thought maybe a cron task was doing it but I just do not know why.
Thoughts? What could remove those attachments right from the database like that? Recent images only..
--------------- Added [DATE]1490311408[/DATE] at [TIME]1490311408[/TIME] ---------------
seems to be a cron task..one of the clean up tasks..
--------------- Added [DATE]1490311861[/DATE] at [TIME]1490311861[/TIME] ---------------
I believe we found the culprit in cleanup2.php in the cron directory:
// Orphaned Attachments are removed after one hour
$attachdata = datamanager_init('Attachment', $vbulletin, ERRTYPE_SILENT, 'attachment');
$attachdata->set_condition("a.contentid = 0 AND a.dateline < " . (TIMENOW - 3600));
$attachdata->delete(true, false);
|