vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Attachments have been deleted vb 4.2.3 (https://vborg.vbsupport.ru/showthread.php?t=320246)

puertoblack2003 09-19-2015 02:30 AM

Quote:

Originally Posted by dariyos (Post 2555219)
I know what refcount 0 is, but I don't think I had 50 % of attachments that are not used in posts.
5 % is okay, but not 50 %, it is not impossible!

I had restored all my attachments, I correct the value of refcount and set the value to 1 where attachments used in posts...

It was definitly a WRONG that they had the refcount value 0. And I still don't know why they got this value.

I had the same issue, but with my issue was the filedata in database was someone how deleted.Lucky i had backups and it was just as simple and as to restore it.

squidsk 09-21-2015 12:57 PM

Quote:

Originally Posted by puertoblack2003 (Post 2555269)
I had the same issue, but with my issue was the filedata in database was someone how deleted.Lucky i had backups and it was just as simple and as to restore it.

That's what happens with this bug, is that the filedata, and filecontent, get deleted. You were lucky and had a backup to go back to.

--------------- Added [DATE]1442848959[/DATE] at [TIME]1442848959[/TIME] ---------------

Quote:

Originally Posted by RichieBoy67 (Post 2555223)
How did you fix this?

You'd want to run a script that goes through each non-zero refcount filedata and looks in the corresponding table(s) to determine the actual usage count for the filedata.

I tried to post a bit of sample code but vb.org kept hanging when I hit post.

dariyos 09-28-2015 08:02 AM

first step:

uncomment /includes/cron/cleanup2.php
Code:

// Unused filedata is removed after one hour
//$attachdata =& datamanager_init('Filedata', $vbulletin, ERRTYPE_SILENT, 'attachment');
//$attachdata->set_condition("fd.refcount = 0 AND fd.dateline < " . (TIMENOW - 3600));
//$attachdata->delete(true, false);

2) restore a old DB in a testforum
3) search for all entrys where the attachments was assigned a post with this query:

SELECT * FROM post a, attachment b, filedata c WHERE c.refcount =0 AND a.postid = b.contentid AND b.filedataid = c.filedataid

3) Update the refcount value from 0 to 1.
4) Search for the newest IDs from the tables (testforum):
-post
-attachment
-filedata
-thread

5) Search for the IDs (in acutal DB) bigger (>) than the IDs from testforum in:
-post
-attachment
-filedata
-thread

6) export the "new" entrys (bigger (>) than newest ids from testforum) from these tables.

8) Import the new entrys in testforum.

then you have all the entrys from old database and new database mixed and the right refcount value.

9) export the mixed tables
-post
-attachment
-filedata
-thread
from testforum

10) import it to actual db.
11) upload all deleted files in your filesystem


BACKUP FIRST, IF SOMETHING WENT WRONG!

squidsk 09-28-2015 01:56 PM

The above is not complete as it will only check post attachments. There are other content types that can be stored in the filedata table which might be where the filedata is actually being used. Albums are one that comes to mind, but potentially any mod you have that allows uploads might have added a new content type.


All times are GMT. The time now is 05:25 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00982 seconds
  • Memory Usage 1,727KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete