vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Soft Deleted Archive (https://vborg.vbsupport.ru/showthread.php?t=90840)

bashy 09-14-2006 06:00 PM

Try this link.... and ya dont have to search every user lol
http://www.bashys-place.com/forums/m...s&type=deleted

Quote:

Originally Posted by CypherSTL
There is no option to do anything with post you have soft deleted in the userscp, not sure what you have installed that would show that but it is not in my stock version of 3.6.0.


sebbo 09-19-2006 08:12 PM

Hi,
I keep getting this error:

Database error in vBulletin 3.6.1:

Invalid SQL:

SELECT
deletionlog.*,
deletionlog.primaryid AS postid,
deletionlog.type AS deltype,
deletionlog.userid AS userid,
thread.*,
thread.title AS threadtitle,
thread.forumid AS forumid,
forum.*,
forum.title AS forumtitle,
user.username
FROM deletionlog AS deletionlog
LEFT JOIN user AS user USING(userid)
LEFT JOIN thread AS thread ON thread.threadid = deletionlog.primaryid
LEFT JOIN forum AS forum ON forum.forumid = thread.forumid
WHERE deletionlog.type = 'thread'
ORDER BY `dateline` DESC
LIMIT 0, 15;

MySQL Error : Column 'dateline' in order clause is ambiguous
Error Number : 1052

Is this because I use 3.6.1?

Ugur CETIN 10-01-2006 07:18 PM

yes because of 3.6.1

is there any new version of this hack? i need this...

freecodevn 10-14-2006 07:41 PM

Quote:

Originally Posted by sebbo
Hi,
I keep getting this error:

Database error in vBulletin 3.6.1:

Invalid SQL:

SELECT
deletionlog.*,
deletionlog.primaryid AS postid,
deletionlog.type AS deltype,
deletionlog.userid AS userid,
thread.*,
thread.title AS threadtitle,
thread.forumid AS forumid,
forum.*,
forum.title AS forumtitle,
user.username
FROM deletionlog AS deletionlog
LEFT JOIN user AS user USING(userid)
LEFT JOIN thread AS thread ON thread.threadid = deletionlog.primaryid
LEFT JOIN forum AS forum ON forum.forumid = thread.forumid
WHERE deletionlog.type = 'thread'
ORDER BY `dateline` DESC
LIMIT 0, 15;

MySQL Error : Column 'dateline' in order clause is ambiguous
Error Number : 1052

Is this because I use 3.6.1?

Error:
SELECT
deletionlog.*,
deletionlog.primaryid AS postid,
deletionlog.type AS deltype,
deletionlog.userid AS userid,
thread.*,
thread.title AS threadtitle,
thread.forumid AS forumid,
forum.*,
forum.title AS forumtitle,
user.username
FROM deletionlog AS deletionlog
LEFT JOIN user AS user USING(userid)
LEFT JOIN thread AS thread ON thread.threadid = deletionlog.primaryid
LEFT JOIN forum AS forum ON forum.forumid = thread.forumid
WHERE deletionlog.type = 'thread'
ORDER BY `dateline` DESC
LIMIT 0, 15;
===============
Fix

SELECT
deletionlog.*,
deletionlog.primaryid AS postid,
deletionlog.type AS deltype,
deletionlog.userid AS userid,
post.dateline AS postdateline,
thread.*,
thread.title AS threadtitle,
thread.forumid AS forumid,
forum.*,
forum.title AS forumtitle,
user.username
FROM deletionlog AS deletionlog
LEFT JOIN user AS user USING(userid)
LEFT JOIN post AS post ON post.postid=deletionlog.primaryid
LEFT JOIN thread AS thread ON thread.threadid = deletionlog.primaryid
LEFT JOIN forum AS forum ON forum.forumid = thread.forumid
WHERE deletionlog.type = 'thread'
ORDER BY `dateline` DESC
LIMIT 0, 15;


Im test VBB 3.6.2

Open file softdeladmin.php
Find line:
ORDER BY `dateline` $sqlorder
Replate with:

ORDER BY `primaryid` $sqlorder

Or dele line:

ORDER BY `dateline` $sqlorder

Or dowload attach file.
Done!

Spermy 10-21-2006 01:11 AM

Quote:

Originally Posted by freecodevn
Error:
SELECT
deletionlog.*,
deletionlog.primaryid AS postid,
deletionlog.type AS deltype,
deletionlog.userid AS userid,
thread.*,
thread.title AS threadtitle,
thread.forumid AS forumid,
forum.*,
forum.title AS forumtitle,
user.username
FROM deletionlog AS deletionlog
LEFT JOIN user AS user USING(userid)
LEFT JOIN thread AS thread ON thread.threadid = deletionlog.primaryid
LEFT JOIN forum AS forum ON forum.forumid = thread.forumid
WHERE deletionlog.type = 'thread'
ORDER BY `dateline` DESC
LIMIT 0, 15;
===============
Fix

SELECT
deletionlog.*,
deletionlog.primaryid AS postid,
deletionlog.type AS deltype,
deletionlog.userid AS userid,
post.dateline AS postdateline,
thread.*,
thread.title AS threadtitle,
thread.forumid AS forumid,
forum.*,
forum.title AS forumtitle,
user.username
FROM deletionlog AS deletionlog
LEFT JOIN user AS user USING(userid)
LEFT JOIN post AS post ON post.postid=deletionlog.primaryid
LEFT JOIN thread AS thread ON thread.threadid = deletionlog.primaryid
LEFT JOIN forum AS forum ON forum.forumid = thread.forumid
WHERE deletionlog.type = 'thread'
ORDER BY `dateline` DESC
LIMIT 0, 15;


Im test VBB 3.6.2

Open file softdeladmin.php
Find line:
ORDER BY `dateline` $sqlorder
Replate with:

ORDER BY `primaryid` $sqlorder

Or dele line:

ORDER BY `dateline` $sqlorder

Or dowload attach file.
Done!

Thank you very much. I missed this.

Calibre_k 10-23-2006 07:16 PM

Will this work with 3.60?

telc 10-23-2006 07:27 PM

Quote:

Originally Posted by Calibre_k
Will this work with 3.60?


3.6 has something simliar built in, you can search / view / prune soft deleted posts.

stinger2 02-13-2007 01:07 PM

Quote:

Originally Posted by telc (Post 1102975)
3.6 has something simliar built in, you can search / view / prune soft deleted posts.

where is that??

you only have an option for soft deleted THREADS BUT not soft deleted POSTS

telc 02-13-2007 05:43 PM

Quote:

Originally Posted by stinger2 (Post 1181491)
where is that??

you only have an option for soft deleted THREADS BUT not soft deleted POSTS


3.6 has an option to find and delete all "soft deleted POSTS", They put it in UserCP not AdminCP

User Control Panel -> Moderation -> Deleted posts

http://Yourdomain/forums/moderation....s&type=deleted

stinger2 02-13-2007 08:57 PM

damn .....you are right.......when did they add this??

thanks for telling me...........i never look there in normal circumstances....hehe

thanks again


All times are GMT. The time now is 05:48 PM.

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.02493 seconds
  • Memory Usage 1,750KB
  • 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
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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