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)
-   -   Cyb - Advanced Permissions Based on Post Count (https://vborg.vbsupport.ru/showthread.php?t=96523)

VBUsers 12-23-2005 06:32 PM

ive been waiting for this great hack. will install soon

Julie 12-23-2005 10:02 PM

*bookmarked* Looks good :) I get a zillion annyoing people asking me why they can't access a certain forum. And people don't read, because it's plastered all over my forum why they can't, but this will help me stop those buggering e-mails :D Hehe...

Will install when I get the time! ;)

350Chevy 12-30-2005 06:20 PM

Excellent hack... I use it to keep members out of my "Not Safe For Work" section of the board unless they have 100 posts or more. I hate bandwidth stealers just registering to look at the nudies.. This way only contributors can see the "goods." :)

*Clicks install

Cicada 12-30-2005 08:05 PM

awesome. :D

Cicada 12-30-2005 08:06 PM

Quote:

Originally Posted by 350Chevy
Excellent hack... I use it to keep members out of my "Not Safe For Work" section of the board unless they have 100 posts or more. I hate bandwidth stealers just registering to look at the nudies.. This way only contributors can see the "goods." :)

*Clicks install

exactly ;)

mojahudba 01-09-2006 02:29 AM

thanks thanks and one more time thank i love this one

Nigh7mar3 01-11-2006 10:40 AM

anyone use this hack on vb3.5.3 ?

Chad F. 01-11-2006 12:24 PM

Quote:

Originally Posted by Nigh7mar3
anyone use this hack on vb3.5.3 ?


I tried and it didn't work.. :ermm:

Valter 01-11-2006 08:00 PM

Quote:

Originally Posted by Chad F.
I tried and it didn't work.. :ermm:

I haven't upgraded to 3.5.3 yet but see no reason for any problem. Did it worked before upgrading? If yes, did you tried to reinstall plugin after vB upgrading process is finished (with "allow overwrite" checked)?

Anyone other have this problem?

VBUsers 01-11-2006 08:13 PM

if i want to edit what the message says and maybe add links to where they can get theyre posts up what do i edit?

expample:

you need X amount of posts to see this section you curently have Y

you can go here and post:

Lounge: http:.example1.com
games: htpp:example.com

Valter 01-11-2006 08:54 PM

Search in phrases and change to what you wish.

Nigh7mar3 01-12-2006 04:16 PM

it seems to work

Rambo 01-25-2006 08:02 PM

Excellent, great hack!

Deleted those usergroups that i no longer need now, alot less work ^^

bigmonay2k 01-26-2006 03:51 AM

this hack sound pretty good, I am going to try it

Valter 01-29-2006 07:29 AM

<font size="4">NEW VERSION</font>

Version 2.5 - Jan 29.2005.
-Added Attachment Permissions
-Added Private Messages Permissions
-Added ability to turn off whole system or some parts

Screenshots updated.
To install/upgrade simply import product XML through ACP and check "allow overwrite".

Cyb

webspider 01-29-2006 11:53 AM

Quote:

Originally Posted by Cybernetec
NEW VERSION

Version 2.5 - Jan 29.2005.
-Added Attachment Permissions
-Added Private Messages Permissions
-Added ability to turn off whole system or some parts
Cyb

Great Job! BIG thanks!

bashy 01-29-2006 01:57 PM

Since up grade i get this error Fatal error: Field accessf_nb is not defined in $validfields in class vb_datamanager_forum in /includes/class_dm.php on line 485 when saving forum settings, Please advise?

vau7 01-29-2006 03:05 PM

I have got the same error and need some advice, or has somebody a previous release?

almqdad 01-29-2006 05:17 PM

Hi

I have installed this hack om 3.5.3

when i set the number of post etc. when i save i get this error

Fatal error: Field accessf_nb is not defined in $validfields in class vb_datamanager_forum in /includes/class_dm.php on line 485

what is this how i can correct this

Sidewindr 01-30-2006 12:54 AM

One small thing, you might want to change the version in the xml file to 2.5

I also get the above error when saving a forum details from Forum Manager.

WebsiteDonation 01-30-2006 03:12 AM

viewing attachments permission doesn't work ! I checked on a fresh install board.

WebsiteDonation 01-30-2006 04:00 AM

Quote:

Originally Posted by almqdad
Hi

I have installed this hack om 3.5.3

when i set the number of post etc. when i save i get this error

Fatal error: Field accessf_nb is not defined in $validfields in class vb_datamanager_forum in /includes/class_dm.php on line 485


what is this how i can correct this

yes, missing 1-2 hooks :)

vau7 01-30-2006 04:28 AM

Quote:

Originally Posted by almqdad
Hi

I have installed this hack om 3.5.3

when i set the number of post etc. when i save i get this error

Fatal error: Field accessf_nb is not defined in $validfields in class vb_datamanager_forum in /includes/class_dm.php on line 485


what is this how i can correct this

same for me :ermm:

WebsiteDonation 01-30-2006 06:46 AM

I tried to debug this error. Finally, I have got the result.

To fix this error, just remove condition in hook forumdata_start. It's named xxxxx - Valid Fields

Original Code
Code:

                if ($vbulletin->options['apboupc_forum'])
                {

                $this->validfields['accessf_nb'] = array(TYPE_INT, REQ_NO);
                $this->validfields['accesst_nb'] = array(TYPE_INT, REQ_NO);
                $this->validfields['create_nb'] = array(TYPE_INT, REQ_NO);
                $this->validfields['reply_nb'] = array(TYPE_INT, REQ_NO);}

Replace :
Code:

                $this->validfields['accessf_nb'] = array(TYPE_INT, REQ_NO);
                $this->validfields['accesst_nb'] = array(TYPE_INT, REQ_NO);
                $this->validfields['create_nb'] = array(TYPE_INT, REQ_NO);
                $this->validfields['reply_nb'] = array(TYPE_INT, REQ_NO);

NOTE

1. If you remove "condition" by yourself, DONT forget "}"
2. The error occurs by one condition setted wrong place. I *guess* because of this, some *features* don't work correctly (as I checked up, the "viewing attachments" permission doesn't work)

Good luck all.

bashy 01-30-2006 07:37 AM

Could i trouble you to elaborate on this please
I have replaced the code that you have said is causing the issue
with attachments and yes ya right its cured the issue :)

But a little baffled as to what you meant below?


Quote:

Originally Posted by WebsiteDonation
1. If you remove "condition" by yourself, DONT forget "}"


WebsiteDonation 01-30-2006 08:05 AM

Quote:

Originally Posted by bashy
Could i trouble you to elaborate on this please
I have replaced the code that you have said is causing the issue
with attachments and yes ya right its cured the issue :)

But a little baffled as to what you meant below?

Congrate you could fix that error (updating forums manager).

I will spend time to find out another errors tomorrow. I believe that there are a lot of bugs in rest.

About your question, just look at this : $this->validfields['reply_nb'] = array(TYPE_INT, REQ_NO);}. The '}' is too small. I think someone can forget to remove it (if they remove the "condition" by themselves), so I only wanna remind those. It's not to fix viewing attachments permission bug.

However, that bug (and some) is a similar problem with the last bug.

Valter 01-30-2006 08:35 AM

v2.5.1

-Fixed version info
-Fixed forum manager error

Attachment permissions works fine for me. Please try again now.
Download new Access Permissions Based on User's Post Count 2.5.1.zip and import XML through product manager (check "allow overwrite").

vau7 01-30-2006 03:53 PM

Big Up for your good work! Thank you very much.

bashy 01-30-2006 03:57 PM

Working well now thank :)

Zia 01-30-2006 04:41 PM

Quote:

Originally Posted by Cybernetec
v2.5.1

-Fixed version info
-Fixed forum manager error

Attachment permissions works fine for me. Please try again now.
Download new Access Permissions Based on User's Post Count 2.5.1.zip and import XML through product manager (check "allow overwrite").

hello Cybernetec

its a nice item...

is there any way that..u can intigrtae it with dwnload zone? that user must have 10post/day to get access there..

Valter 01-31-2006 06:41 AM

Quote:

Originally Posted by Zia
hello Cybernetec

its a nice item...

is there any way that..u can intigrtae it with dwnload zone? that user must have 10post/day to get access there..

Maybe I can make separate plugin. Give me a link to original product and I'll see...

Snatch 01-31-2006 07:19 AM

Is there a way to set permision based on users Thread count ?
User how startet x threads ....

GreeTz
Snatch

almqdad 01-31-2006 12:00 PM

Installed

thank you Cybernetec

Zia 01-31-2006 01:19 PM

Quote:

Originally Posted by Cybernetec
Maybe I can make separate plugin. Give me a link to original product and I'll see...


Thankx Man....
its ecdownload3.3

https://vborg.vbsupport.ru/showthrea...ght=ecdownload

u have no idea how much people is demanding/requesting it.......There a Lot....a Lot...A Lot............

almqdad 01-31-2006 03:34 PM

hi Cybernetec

if i use access mask will the user by pass the restriction

example if i put condtion of 100 post to be able to post and reply ,, will a user allowed by access mask can see and write in the forum

if the answer is yes that will be jolly good

miatatu 02-01-2006 03:07 PM

Very nice, thanks much!

Mudvayne 02-02-2006 04:02 PM

Quote:

Originally Posted by Cybernetec
v2.5.1

-Fixed version info
-Fixed forum manager error

Attachment permissions works fine for me. Please try again now.
Download new Access Permissions Based on User's Post Count 2.5.1.zip and import XML through product manager (check "allow overwrite").

:(.. Either u forgot to clk update button button or vb.org's mail server problem.. Coz i dont get any update mail.. Thts y dont noticed tht u fixed the forum manager error :(..

wi11ie1950 02-07-2006 10:37 AM

It would be good to be able to apply this hack to usergroups instead of all groups except admin. I would probably use it then.

Hoang 02-07-2006 03:55 PM

New version dont work for me, check it at www.egsm.com.vn/diendan
atleast 10 post before download attachments no work at all!!!

Taliesin96 02-17-2006 06:55 PM

any way to have this restrick say the calendar so they cannot get passwords


All times are GMT. The time now is 11:59 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.01412 seconds
  • Memory Usage 1,823KB
  • 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
  • (2)bbcode_code_printable
  • (12)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
  • (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