Ban List Mod

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
User avatar
Neuropass
Registered User
Posts: 1162
Joined: Fri Apr 17, 2009 2:02 pm
Location: SciTE4AutoIt3

Re: Ban List Mod

Post by Neuropass »

man i don't have it. what should i do?
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Ban List Mod

Post by RMcGirr83 »

Double check the edits to the files involved.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
Neuropass
Registered User
Posts: 1162
Joined: Fri Apr 17, 2009 2:02 pm
Location: SciTE4AutoIt3

Re: Ban List Mod

Post by Neuropass »

apparently i had to edit the all files... this is weird though. i think i had a previous version installed but i was sure i did the update. anyway i got an error when i ran the database query.

is it normal? (because i ran it already)

Code: Select all

Some queries failed, the statements and errors are listing below.

SQL: ALTER TABLE phpbb_banlist ADD ban_banner mediumint(8) unsigned NOT NULL default '0'Error: Duplicate column name 'ban_banner'
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Ban List Mod

Post by RMcGirr83 »

Means the column is already there...you can ignore the error and delete the update file.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
Joshuaxiong1
Registered User
Posts: 87
Joined: Sun Nov 22, 2009 2:01 am
Location: Fresno, California

Re: Ban List Mod

Post by Joshuaxiong1 »

Has anyone confirm this work for 3.0.6?
gregdg1
Registered User
Posts: 27
Joined: Sun Jun 29, 2008 5:03 am

Re: Ban List Mod

Post by gregdg1 »

ok RMcGirr83 i have a prob you fixed it and sent me a code to work with other mods that i have but i have ran into this i have 25 banned members but it will only show 20 it will not show page 2 of it it is stuck on page 1 can you help with this thx

gregdg1
CMA
Registered User
Posts: 330
Joined: Mon Jun 02, 2003 4:15 pm
Location: Vancouver BC Canada
Contact:

Re: Ban List Mod

Post by CMA »

yes it works perfectly on 3.06 and nice and fun mod...

anyway i would like to request two features...

- history of banned list...
- hide banned starter

is it possible?
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Ban List Mod

Post by RMcGirr83 »

CMA wrote:anyway i would like to request two features...

- history of banned list...
Not possible
- hide banned starter
Don't know what you are asking
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
DoYouSpeakWak
Registered User
Posts: 2311
Joined: Fri Jul 25, 2008 1:32 pm
Location: Island of Wak-Wak
Contact:

Re: Ban List Mod

Post by DoYouSpeakWak »

Joshuaxiong1 wrote:Has anyone confirm this work for 3.0.6?
Works fine for me.
Whatever you share comes back. Support the phpBB Communities
Offering paid services. 15+ years of experience with phpBB3 and server management.
CMA
Registered User
Posts: 330
Joined: Mon Jun 02, 2003 4:15 pm
Location: Vancouver BC Canada
Contact:

Re: Ban List Mod

Post by CMA »

darn it... i notice in phpmyadmin, that line is deleted... so maybe you can find script that stop delete them...


i would like to hide starter's name that who banned someone...

for example
Image
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Ban List Mod

Post by RMcGirr83 »

You want to hide it for everyone, or....?
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
CMA
Registered User
Posts: 330
Joined: Mon Jun 02, 2003 4:15 pm
Location: Vancouver BC Canada
Contact:

Re: Ban List Mod

Post by CMA »

yes i thought it would be best idea to avoid some issues... so everyone except mod/admin...
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Ban List Mod

Post by RMcGirr83 »

CMA wrote:yes i thought it would be best idea to avoid some issues... so everyone except mod/admin...
Try

OPEN

banlist.php

FIND

Code: Select all

// we gots us some results ?
BEFORE ADD

Code: Select all

// who can view who did the banning
$view_bannee = false;
if ($auth->acl_getf_global('m_') || $auth->acl_get('a_'))
{
	$view_bannee = true;
}
FIND

Code: Select all

if (!empty($row['user_id2']))
REPLACE WITH

Code: Select all

if (!empty($row['user_id2']) && $view_bannee)
..and that should do it.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
CMA
Registered User
Posts: 330
Joined: Mon Jun 02, 2003 4:15 pm
Location: Vancouver BC Canada
Contact:

Re: Ban List Mod

Post by CMA »

"You are not authorised to access this area."

nice but i mean just hide name of whom banned for everyone except admin and mods...
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: Ban List Mod

Post by RMcGirr83 »

That is exactly what those edits do. You need to double check your edits to that file.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
Locked

Return to “[3.0.x] MOD Database Releases”