Manage attachments ACP module for phpBB3

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.
rxu
Extensions Development Team
Posts: 4018
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation

Re: Manage attachments ACP module for phpBB3

Post by rxu »

NissanNut wrote:Looks the same as whats in 3.06. I take it your mod was added.
There's no attachments management module in 3.0.6. You perhaps confuse it with "Orphaned attachments" module that is actually exist ;)
NissanNut
Registered User
Posts: 60
Joined: Mon Jan 26, 2009 11:39 pm

Re: Manage attachments ACP module for phpBB3

Post by NissanNut »

OK thanks, I ll add it then. ;)
DrStrangelove
Registered User
Posts: 12
Joined: Sat Jan 02, 2010 7:47 pm

Re: Manage attachments ACP module for phpBB3

Post by DrStrangelove »

rxu wrote:if you want, please feel free to post the whole instruction for the option you created as an addon for the MOD :)
Here's the add-on.
You do not have the required permissions to view the files attached to this post.
User avatar
muggins
Registered User
Posts: 1183
Joined: Fri Feb 22, 2008 5:12 pm
Location: Texas
Name: Donovan

Re: Manage attachments ACP module for phpBB3

Post by muggins »

I haven't tested the add-on, but I packaged it with the stylesheet.

Megaupload is a PITA, so here:
manageattach_permissions_addon.zip
You do not have the required permissions to view the files attached to this post.
Muggins
Michlerish
Registered User
Posts: 20
Joined: Mon Dec 07, 2009 6:10 am

Re: Manage attachments ACP module for phpBB3

Post by Michlerish »

Fantastic mod. Exactly what I was looking for! This is something that should already be included with phpbb3.0.6.

Thank you so much for making this! :D
RobinSEA
Registered User
Posts: 24
Joined: Tue Aug 04, 2009 4:41 am

Re: Manage attachments ACP module for phpBB3

Post by RobinSEA »

Great mod!

Is there a way to increase the number of attachments shown per page?
rxu
Extensions Development Team
Posts: 4018
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation

Re: Manage attachments ACP module for phpBB3

Post by rxu »

RobinSEA wrote:Is there a way to increase the number of attachments shown per page?
It's depending on "Posts per page" value, but try the following trick to override it (in this example - to show 20 attachments per page):

Code: Select all

OPEN
includes/acp/acp_manage_attachments.php

FIND
		$start = request_var('start', 0);

AFTER, ADD
		$config['posts_per_page'] = 20; // 20 attachments per page will be shown

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