php forum
php mysql forum
php mysql smarty
 
Page 2 of 2 < 1 2
Topic Options
#245096 - 09/03/03 06:38 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Razin]
slayer60 Offline
Junior Member

Registered: 06/14/03
Posts: 1185
Loc: New Boston, NH
Hmmm, what happened, I thought there was a new post in here but I guess not. <img src="/forum/images/graemlins/grin.gif" alt="" />

Top
#245097 - 10/01/03 06:45 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Organizer Offline
User

Registered: 08/17/02
Posts: 34
Will this work for 6.3 as well?
_________________________
Organizer

Top
#245098 - 10/01/03 07:44 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Billyo]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
No, but I'm currently updating all my mods to version 6.3.2.<br />I'm looking forward to release some of them over the weekend.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245099 - 11/10/03 07:49 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
smilesforu Offline
Junior Member

Registered: 01/31/02
Posts: 676
Did this make it to a new release? would like to upgrade it in my 6.4 This is a great hack thanks for sharing it.

Top
#245100 - 11/18/03 01:45 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Kelly]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
I reworked it for 6.3.2 but haven't documented it yet.<br />But this version should work with 6.4 with a few changes.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245101 - 12/08/03 11:30 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
BryanDS Offline
Junior Member

Registered: 11/15/01
Posts: 135
All my mods all of a sudden have access to the ban feature..? Is this supposed to happen? If so, can someone give me the code to add it back in :-)

Top
#245102 - 04/23/04 02:15 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
PaNTerSan Offline
Journeyman

Registered: 03/19/04
Posts: 122
Loc: EU, Slovenia
This mod could be improved<br />[]Astaran said:<br />This hack advances/replaces the normal ban masks. You can set different ban levels and edit existing bans. <br />[/]<br />1st of all you could use bitwise operators instead of adding 6 (!) rows in w3t_Banned table you would add only one.<br />With bitwise masks you also get free hands when one wants to add another ban mask: no database altering any more.<br /><br />On our forum we have a lot of PR's and spammers who sometimes get overwhelming with posting.<br /><br />Now, banning them from whole site would be excessive so why not ban them just from that one forum. This would be level before next level ban - in our case one day ban. It gives time to moderator of the forum to clean the mess they've made and no body gets really pissed-off: they coll down <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" /><br /><br />Implementing per forum ban mask is beyond my php []http://pages.prodigy.net/rogerlori1/emoticons/bigblush.gif[/] and to be honest I don't have the money to pay attention: no time -> to much exams <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />
_________________________
Kind regards,
PaNTerSan

Top
#245103 - 04/23/04 04:05 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Brandon Long]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Sure, most of the hacks could be improved. <img src="http://www.ubbdev.com/forum/images/graemlins/wink.gif" alt="" /><br />Bitwise operators would be a good enhancement. Adding and editing new ban levels wasn't and issue while creating that hack. Doing so will require some work, but it's posssible. You only have to change the function that performs the ban check.<br /><br />Enhancing the hack to allow a per forum banning would require more modifications. You'll have to improve the permission system of threads to allows to exlude certain members. Currently, all scripts only check if the user is in a group that has enough rights to perform the action.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245104 - 04/24/04 07:33 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
PaNTerSan Offline
Journeyman

Registered: 03/19/04
Posts: 122
Loc: EU, Slovenia
[] Currently, all scripts only check if the user is in a group that has enough rights to perform the action. [/] <br />Shouldn't check_ban handle this []http://www.drogart.org/ubbthreads/images/graemlins/fragend013.gif[/]. <br /><br />I assume check_ban would take care of bitmask checking and w3t_users would get U_BannedFrom column. This would contain a comma separated list (string) with keywords (BO_keyword) of forums from which user is banned (e.g "ubb1,ubb2,ubb3").<br /><br />So when user clicks on a post on a forum he is banned from, he gets a nice invitation to go chill-out and watch the birds or smth <img src="http://www.ubbdev.com/forum/images/graemlins/cool.gif" alt="" />
_________________________
Kind regards,
PaNTerSan

Top
#245105 - 04/24/04 08:25 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
[]Astaran said:<br />But this version should work with 6.4 with a few changes. [/]<br /><br />I would like to install this on my 6.4 board... but which changes should I make <img src="http://www.ubbdev.com/forum/images/graemlins/confused.gif" alt="" /><br /><br />Thank you for your help!<br /><br />Pasqual

Top
#245106 - 04/25/04 10:11 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
PaNTerSan Offline
Journeyman

Registered: 03/19/04
Posts: 122
Loc: EU, Slovenia
[]Astaran said:<br />Enhancing the hack to allow a per forum banning would require more modifications. You'll have to improve the permission system of threads to allows to exlude certain members. Currently, all scripts only check if the user is in a group that has enough rights to perform the action. [/]<br /> YAB 0.9.0 was made in less than 4 hours with my poor knowledge of php, html and mysql []http://www.drogart.org/ubbthreads/images/graemlins/coffeedrinker.gif[/]
_________________________
Kind regards,
PaNTerSan

Top
#245107 - 04/25/04 10:12 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
I'm still on 6.3.2 on my board, so I can't provide any instructions for 6.4.<br />But I'll start on migrating my hacks to 6.5 when the beta is released.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245108 - 04/25/04 10:23 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: Brandon Long]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
[]PaNTerSan said:<br />YAB 0.9.0 was made in less than 4 hours with my poor knowledge of php, html and mysql []http://www.drogart.org/ubbthreads/images/graemlins/coffeedrinker.gif[/] [/]<br />Fine that you came up with a different and easier solution. <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />

Top
#245109 - 05/12/04 10:06 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
Does "ban IP" mean that the banned person cannot even (anonymously) view our forums ?

Top
#245110 - 09/07/04 04:15 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
I'd love to see this mod for 6.5! <img src="http://www.ubbdev.com/forum/images/graemlins/laugh.gif" alt="" />

Top
#245111 - 09/09/04 11:21 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Astaran Offline
Addict

Registered: 12/21/00
Posts: 1545
Loc: Germany
Haven't started to port it over yet, but I'll do it.<br />I think I'll integrate it into the new member management area instead of using a seperate gui.
_________________________
Running a community? -> Keep informed and take it to the next level

Top
#245112 - 09/11/04 04:42 AM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: -Fusion-]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
[]Astaran said:<br />Haven't started to port it over yet, but I'll do it.<br />I think I'll integrate it into the new member management area instead of using a seperate gui. [/]<br /><br />That's great to hear! <img src="http://www.ubbdev.com/forum/images/graemlins/laugh.gif" alt="" /><br /><br />Maybe you could also add the following ban:<br />I've banned several IP's, but somehow they are still able to login. They use the SEARCH feature and lot, and that's something I would also like to ban them from.

Top
#245113 - 11/13/04 06:05 PM Re: Finished-[6.2] Advanced Banning 1.0.1 [Re: 10k]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
Haven't been on the forum for some time now and I would still love to have this mod in 6.5 <img src="http://www.ubbdev.com/forum/images/graemlins/laugh.gif" alt="" /><br /><br />Is there anyone who could 'upgrade' this mod to work in 6.5 ? <img src="http://www.ubbdev.com/forum/images/graemlins/thankyousign.gif" alt="" />

Top
Page 2 of 2 < 1 2


Moderator:  Ian_W 
Who's Online
0 registered (), 26 Guests and 8 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Forum 'Trader Ratings'.
by blaaskaak
11/20/08 08:27 AM
Problems reading a lot of old posts here
by Ruben Rocha
11/18/08 04:33 PM
PhotoPost BB Code Popup
by Iann128
11/15/08 01:24 PM
Customization needed
by Gizmo
11/12/08 12:28 PM
Team UBBDev Rides Again!
by AllenAyres
11/11/08 02:16 PM
Active Topics.
by AllenAyres
11/11/08 02:13 PM
Looking for a simple upload script
by AllenAyres
11/11/08 02:12 PM
New Mods
Forum 'Trader Ratings'.
by McLemore
11/19/08 02:14 PM
[7.4] Keep log of custom title changes
by blaaskaak
10/27/08 07:51 AM
User Authentication Class
by
01/19/07 02:59 PM
Multiple Identity Detector
by
12/30/06 06:39 PM
PhotoPost BB Code Popup
by
11/06/06 05:43 PM
Newest Members
Begbie, cenk, MATTO, DougMMcts, tim Anderson
13361 Registered Users
Top Posters
AllenAyres 25448
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks