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)
-   -   Selective Forum Filter (https://vborg.vbsupport.ru/showthread.php?t=98360)

akanevsky 07-01-2006 07:25 PM

This hack does not add any usergroup options.

ericwirtanen 07-05-2006 11:38 PM

Quote:

Originally Posted by Parker Clack
I installed the latest and like others and the forum list will not get pouplated even with all the excluded rows in the forum table set at 0.

same here - I can't see the list of forums no matter what I do...

akanevsky 07-06-2006 01:02 AM

If you want any forums to be excludable, specify that in forum settings.

Ntfu2 07-06-2006 01:09 AM

Same problem, no forums are showing up in list no matter what

akanevsky 07-06-2006 11:55 AM

Read the post above yours.

Pathor 07-06-2006 12:50 PM

Thanks for the update! :)

You have a typo in the querie. ;)

UPDATE PFXforum SET excludable = 1

Pathor 07-06-2006 01:02 PM

Quote:

Originally Posted by Hell?
Hello, I also recently installed the latest version and I get this error whenever I try to access the edit options page:
Code:

Fatal error: Cannot redeclare forum_accessible() (previously declared in /myforumsdir/profile.php(916) : eval()'d code:1) in /myforumsdir/profile.php(916) : eval()'d code on line 96

I have nearly the same error, but with vB 3.6.

EDIT: Got it. ;) You must uninstall the 1.0.0 Version. The new plugin doesn?t overwrite the old version.

ericwirtanen 07-06-2006 08:32 PM

Quote:

Originally Posted by Psionic Vision
If you want any forums to be excludable, specify that in forum settings.

D'oh! Thanks man; fantastic hack. :cool:

Pathor 07-07-2006 01:44 PM

One problem.

I want to make one subforum not excludable. The subforum ist under category X.
If the user select the category X (to make them invisible), the subforum is also invisible.

realraptor 07-21-2006 06:14 PM

thanks for this hack, installed fine with 3.5.4

Vindicator 07-21-2006 09:15 PM

Ok, I want users to be able to exclude certain forums from the "New Posts" facility. Yuor hack does this but it also hides the forum from the list which I do not want. Can the facility be enabled/disabled and if not can you please point me towards KirbyDE's original hack please? (doesn't appear on this forum)

Edited: Don't worry, found hack under Andreas username

tandy 08-27-2006 04:25 PM

Installed for the second time on a fresh installed vB 3.54, everything seem to work in the database, but no forum excluded, still view all of them.


Ok, i found the reason...

SQL Query:
UPDATE PFXforum SET excludable = 1


To disable excludable in all forums, run this query:
SQL Query:
UPDATE PFXforum SET excludable =0 "Must be Zero instead of one"

yj_enquirer 09-12-2006 05:20 PM

Hiya.. woz wondering if this will work in 3.6.0?

ChrisBaktis 09-13-2006 02:54 AM

Can someone tell me how to get the info I need to replace PFX with?

ze_roberto 09-16-2006 12:48 PM

In the Database. Try to replace it with nothing as a first shot (just delete PFX).

By the way: works on 3.6.1 on my testboard.

The bad news is that the forums still show in the latest thread of an vbadvanced portal and thing like vbispy...

cheers, ze

McMendo 11-08-2006 01:00 PM

Installed (click) on 3.6.2 and working just fine.

Quote:

Originally Posted by tandy
Ok, i found the reason...

SQL Query:
UPDATE PFXforum SET excludable = 1


To disable excludable in all forums, run this query:
SQL Query:
UPDATE PFXforum SET excludable =0 "Must be Zero instead of one"

The install instructions are still wrong.

JohnBee 11-10-2006 12:01 PM

How do we find our table prefixes?
I tried:

UPDATE PFXforum SET exludable = 1
UPDATE forum SET exludable = 1

both gave me error number: 1054
error desc: Unknown column 'exludable' in 'field list'

JohnBee 11-10-2006 12:18 PM

Okay I figured it out, the modification instructions have a few typos in it.
Also, I'm not sure on the entire effectiveness of this hack. While it does filter out forums if your running any addons such as 'Number of unread posts' it does not really filter them out, it only confused people because the no. of unread posts is still shown but when they hit the link to view them, they get an error page.

I would really like to see this modification expanded on though. It sounds like a great addon.

akanevsky 11-10-2006 12:53 PM

The table prefix is what you specified in config.php.

Quote:

Also, I'm not sure on the entire effectiveness of this hack. While it does filter out forums if your running any addons such as 'Number of unread posts' it does not really filter them out, it only confused people because the no. of unread posts is still shown but when they hit the link to view them, they get an error page.
The modification is designed as a hack for vBulletin, not for other hacks.

TosaInu 12-30-2006 08:52 PM

Quote:

Originally Posted by tom w (Post 1015638)
Same problems here as 4yBak. Tried both '1' & '0', but neither populates the forum list in User CP.

<later that same day...>
I did discover that if you "save display order" in Forum Manager, Options starts displaying the forum list.

Thank you, fixed it for me.

Insert Username 01-13-2007 09:11 PM

I'm running into a problem here. I updated the template. I imported the product. I ran the query and set all forums as excludable. I even confirmed in the DB that the 'excludable' field for each forum was set to '1'.

When I go to the options in the user cp, I see the excludable section at the bottom, but none of the forums are showing up.

Any ideas?

akanevsky 01-13-2007 09:57 PM

Quote:

Originally Posted by Insert Username (Post 1158365)
I'm running into a problem here. I updated the template. I imported the product. I ran the query and set all forums as excludable. I even confirmed in the DB that the 'excludable' field for each forum was set to '1'.

When I go to the options in the user cp, I see the excludable section at the bottom, but none of the forums are showing up.

Any ideas?

Try saving at least one forum via admincp forum manager. It rebuilds the forum cache.

Insert Username 01-13-2007 10:08 PM

Quote:

Originally Posted by Psionic Vision (Post 1158385)
Try saving at least one forum via admincp forum manager. It rebuilds the forum cache.

Perfect! Thanks.

otstrel 01-21-2007 10:56 AM

I would strongly recommend changing the type of field in database from varchar(255) to mediumtext.
Some users are clicking through every forum they don't want to see instead of selecting only categories and they end up with huge list of forumids which simply do not fit in varchar(255).

sickboy6ths 01-25-2007 10:18 AM

Nevermind this post...

kofoid 02-01-2007 02:07 PM

anyone know what's up with 3.5.4? I can't see it in my user options either. Just installed for the 1st time today

akanevsky 02-01-2007 06:33 PM

Quote:

Originally Posted by kofoid (Post 1172128)
anyone know what's up with 3.5.4? I can't see it in my user options either. Just installed for the 1st time today

Please read the first post. Thanks.

kofoid 02-01-2007 09:08 PM

Hi again. OK I am slow, blond and apparently blind. I don't see what you are referring to in the 1st post other than it was created for 3.5.4. Sooo any idea why I can't see it in my memberoptions?

akanevsky 02-02-2007 12:47 AM

Quote:

Originally Posted by kofoid (Post 1172493)
Hi again. OK I am slow, blond and apparently blind. I don't see what you are referring to in the 1st post other than it was created for 3.5.4. Sooo any idea why I can't see it in my memberoptions?

Please read the introduction section of the first post.

Deimos 02-02-2007 08:33 AM

Can't seem to get this working properly on VB 3.6.4

SOME of the categories/forums show up, but not all of them
I ran that sql query in the first post, but that hasn't helped

Any suggestions?

Deimos 02-02-2007 08:50 AM

Yay, got it working
It didn't work on some forums because the category was a link.

FinalAngel 03-05-2007 07:28 AM

The Script doesn't work with VB 3.6.5

it worked perfectly with VB 3.6.4

Merriweather 03-21-2007 02:55 AM

OOPS -- Wrong thread.

furst 03-25-2007 07:39 AM

Is it possible to create custom links which will automatically select which forums to filter for users when they click on them?

I'd like to put some links at the top which would break my forum into sections. For instance, when someone clicks the Sports link, all forums are excluded for them except for those related to sports.

And another question - is this hack hard on server resources? Is it safe for big boards to install it?

chompychan 05-09-2007 11:45 PM

Is there any way I can make a forum excluded BY DEFAULT and allow users to, after registration (if they choose) to make the forum viewable?

This would be GREAT!

Sushubh 05-15-2007 03:34 AM

does not work for me on 3.6.6

pcg 05-16-2007 02:24 PM

I am not seeing sub forums in my selection, is this a possibility?

TosaInu 06-22-2007 05:19 PM

Hello,

In order to be listed on the can be excluded list in the UserCP a forum only:
-needs to be excludable
-visible for that usergroup

That's right?

TosaInu 07-11-2007 09:58 PM

Hello,

The reason I ask is that one of the forums, set up like that, is not listed in the exclusion options at all. Am I missing something?

akanevsky 07-11-2007 11:36 PM

Quote:

Originally Posted by TosaInu (Post 1274065)
Hello,

In order to be listed on the can be excluded list in the UserCP a forum only:
-needs to be excludable
-visible for that usergroup

That's right?

Yes, that is correct.


All times are GMT. The time now is 04:20 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.01795 seconds
  • Memory Usage 1,818KB
  • 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
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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