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)

CypherSTL 08-01-2006 07:21 AM

Posiable for this to be ported to 3.6 (RC3 or gold)?

I have it on my 3.5.4 board and going to be upgradeing to 3.6 here as soon as gold is released and still want to keep it.

manutdvn 08-03-2006 05:23 AM

Thank you. Great work. No proplem with 3.5.4. Installed!

Revan 08-05-2006 02:42 PM

Quote:

Originally Posted by CypherSTL
Posiable for this to be ported to 3.6 (RC3 or gold)?

I have it on my 3.5.4 board and going to be upgradeing to 3.6 here as soon as gold is released and still want to keep it.

This is a stock feature in 3.6, you will find it in your UserCP.

CypherSTL 08-27-2006 10:59 PM

A Soft Deleted Archive stock in 3.6.0? I don't think so, if it is there is no way to access it. There is currently no way to see what has been soft deleted in the admincp and chhose wether or not to keep them or hard delete them.

DarkHalo 09-05-2006 04:10 AM

Installed on 3.5.4 smooth as can be. This will be very helpful, thank you.

*clicked installed*

bairy 09-05-2006 11:36 AM

Quote:

Originally Posted by CypherSTL
A Soft Deleted Archive stock in 3.6.0? I don't think so, if it is there is no way to access it. There is currently no way to see what has been soft deleted in the admincp and chhose wether or not to keep them or hard delete them.

It's in the UserCP (usercp.php). Check the links about 2/3rds down the left hand side.
Bugger knows why they didn't put a copy in the AdminCP but still, it's there.

CypherSTL 09-10-2006 06:35 AM

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.

NeutralizeR 09-10-2006 07:07 AM

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.

Yes, there is.

Under User Control Panel > on the left menu > under Subscribed Threads >

Moderation:

Deleted Threads
Deleted Posts
Moderated Threads
Moderated Posts

If you want to extend it's usage:
https://vborg.vbsupport.ru/showpost....4&postcount=78

bairy 09-10-2006 07:42 AM

If it's still not there you might need to revert the usercp_shell template.

Good tips NeutralizeR, they really ought to have included a tick all and per page selector.. hopefully in 3.6.1

CypherSTL 09-14-2006 04:40 AM

Ok first off I dont feel like looking at every single user to see if there are post of theres that where soft deleted and hard delete them, and there has been nothing done with my usercp that would require a revert. It only shows post/threads that I have subscribed to, not that others are subscribed to and have been deleted.

second I would like the option to be in the AdminCP where it is ALL in one place...just like it is in 3.5.4

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

telc 02-13-2007 09:33 PM

Quote:

Originally Posted by stinger2 (Post 1181821)
damn .....you are right.......when did they add this??

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

thanks again

Im not sure why its not in admincp seems out of place in usercp.

northernstar 02-24-2007 10:59 PM

I've been looking high and low for this, what a totally bizarre place to stick it in, and not to also include it in the AdminCP. sucks tho that I can select 4 at a time..i've got like 50 pages to click through.

giotmuadong 03-06-2007 03:30 AM

do you have an update yet?

Forumi Shqiptar 04-08-2007 05:59 PM

im getting this error in vb 3.6.4

Fatal error: Existing data passed is not an array
Called set_existing in /home/forumi/public_html/includes/functions_databuild.php on line 164
Called build_forum_counters in /home/forumi/public_html/admincp/softdeladmin.php on line 405
in /includes/class_dm.php on line 235

i did everything freecodevn said and it worked than after i deleted about 30 it started giving me this error

giotmuadong 05-24-2007 09:48 PM

do you have an update? i use 3.6.7 now

3dsoft 06-11-2007 06:17 AM

Ist there a way to check all soft deleted posts and hard delete them?
I am using vbulletin 3.6.7

serhat_kk 07-16-2007 04:25 PM

Great hack. Thanks.

giotmuadong 10-12-2007 10:02 PM

do you have this for VB 3.6 version yet?

Audentio 10-21-2007 01:14 AM

Is there an update?

logofreax 11-19-2007 08:46 AM

Hi, I now installed this Hack on my vBulletin 3.6.8 Patch Level 2 with the Version from Post #94 and it show me all soft deleted posts.

But I cannot flag all Posts by mark "Flag Posts"

No mark will be set, so I have to mark all by hand.

Could you please tell me how to fix it?

cu
logofreax

rapidphim 09-23-2008 07:29 PM

will this hack work on 3.7.3?


All times are GMT. The time now is 03:04 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.01377 seconds
  • Memory Usage 1,809KB
  • 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
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (31)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