Auto Groups

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.
Locked
User avatar
TheSnake
Registered User
Posts: 483
Joined: Wed Aug 09, 2006 10:36 pm
Location: Staffordshire, England, UK
Contact:

Re: Auto Groups

Post by TheSnake »

After going through all the updates to this mod, then doing the update to phpBB itself to 3.0.6 there was only 2 conflicts, the edits to auto_groups.html being 1 of them.

Is there any news if this mod will be updated to co-operate with 3.0.6 ? If so, is there a likelyhood of when?

I have saved a copy of the 2 files, I can supply them if needed.
User avatar
DoYouSpeakWak
Registered User
Posts: 2311
Joined: Fri Jul 25, 2008 1:32 pm
Location: Island of Wak-Wak
Contact:

Re: Auto Groups

Post by DoYouSpeakWak »

I did a update as well today, found a solution. Havnt tested it yet, but im farily sure its not too hard to get working. Will post tommorow if it works as it should. Maybe someone will beat me to it.
Whatever you share comes back. Support the phpBB Communities
Offering paid services. 15+ years of experience with phpBB3 and server management.
User avatar
Lisbon
Registered User
Posts: 831
Joined: Wed Jan 30, 2008 12:28 pm
Location: Zermatt

Re: Auto Groups

Post by Lisbon »

No news about update to 3.0.6?
cotp
Registered User
Posts: 445
Joined: Wed Sep 14, 2005 7:34 pm
Contact:

Re: Auto Groups

Post by cotp »

interested too, I think I will have to uninstall it for now :(
net83it
Registered User
Posts: 500
Joined: Sun Jan 15, 2006 2:42 pm
Location: Sicily
Contact:

Re: Auto Groups

Post by net83it »

DoYouSpeakWak wrote:I did a update as well today, found a solution. Havnt tested it yet, but im farily sure its not too hard to get working. Will post tommorow if it works as it should. Maybe someone will beat me to it.
great news! :)
User avatar
DoYouSpeakWak
Registered User
Posts: 2311
Joined: Fri Jul 25, 2008 1:32 pm
Location: Island of Wak-Wak
Contact:

Re: Auto Groups

Post by DoYouSpeakWak »

The fix i thought was working wasnt. No errors. just no action.
Whatever you share comes back. Support the phpBB Communities
Offering paid services. 15+ years of experience with phpBB3 and server management.
User avatar
Lisbon
Registered User
Posts: 831
Joined: Wed Jan 30, 2008 12:28 pm
Location: Zermatt

Re: Auto Groups

Post by Lisbon »

DoYouSpeakWak wrote:The fix i thought was working wasnt. No errors. just no action.
Firts topic? theres the new link there?
net83it
Registered User
Posts: 500
Joined: Sun Jan 15, 2006 2:42 pm
Location: Sicily
Contact:

Re: Auto Groups

Post by net83it »

did anyone try to contact the author?
Last edited by net83it on Mon Nov 23, 2009 10:01 pm, edited 1 time in total.
User avatar
TheSnake
Registered User
Posts: 483
Joined: Wed Aug 09, 2006 10:36 pm
Location: Staffordshire, England, UK
Contact:

Re: Auto Groups

Post by TheSnake »

DoYouSpeakWak wrote:The fix i thought was working wasnt. No errors. just no action.
That's a shame, I was hoping that someone had got this working. :cry:

Looks like I'm going to have to rely on just the Newly Registered Users until someone manages to update this MOD. Unfortuneatly, I don't know enough about how this forum is designed yet, to try & resolve it myself.
User avatar
Lisbon
Registered User
Posts: 831
Joined: Wed Jan 30, 2008 12:28 pm
Location: Zermatt

Re: Auto Groups

Post by Lisbon »

Hi.
Open: includes/functions_user.php
Find
Tip: This may be a partial find and not the whole line.

Code:Select All

'group_founder_manage' => 'int',
I dont find this in my phpbb 3.0.6 :oops:

Tks for help
User avatar
spacefish
Registered User
Posts: 173
Joined: Mon Oct 09, 2006 8:48 am

Re: Auto Groups

Post by spacefish »

Lisbon wrote:I dont find this in my phpbb 3.0.6

You might not find it because I don't think this MOD is yet compatible with 3.0.6.
User avatar
DoYouSpeakWak
Registered User
Posts: 2311
Joined: Fri Jul 25, 2008 1:32 pm
Location: Island of Wak-Wak
Contact:

Re: Auto Groups

Post by DoYouSpeakWak »

Got it working. This instruction below are not approved by mod author or phpbb development team. It might not be 100 % correct but it works as fare as i can see. its NOT an update if you allready have this installed.

The point is that you download the mod at first page. While going over the install file you read this at the same time and replace certain finds with the ones listed below.

Instead of this find in the current auto groups 101.xml file

Open: includes/functions_user.php
find

Code: Select all

'group_founder_manage'	=> 'int',
Add after

Code: Select all

		// auto group mod
		'group_min_days'		=> 'int',
		'group_max_days'		=> 'int',
		'group_min_warnings'	=> 'int',
		'group_max_warnings'	=> 'int',
		'group_min_posts'		=> 'int',
		'group_max_posts'		=> 'int',
		'group_auto_default'	=> 'int',
Use this instead
Open: includes/functions_user.php
Find

Code: Select all

$user_attribute_ary = array('group_colour', 'group_rank', 'group_avatar', 'group_avatar_type', 'group_avatar_width', 'group_avatar_height');
Replace with

Code: Select all

$user_attribute_ary = array('group_colour', 'group_rank', 'group_avatar', 'group_avatar_type', 'group_avatar_width', 'group_avatar_height', 'group_min_days', 'group_max_days', 'group_min_warnings', 'group_max_warnings', 'group_min_posts', 'group_max_posts', 'group_auto_default');
Ignore this find in (its not in 3.0.6 as i can see)
includes/functions_user.php
Find

Code: Select all

$group_only_ary = array('group_receive_pm', 'group_legend', 'group_message_limit',
In-line Find

Code: Select all

'group_founder_manage'
In-line Add after

Code: Select all

, 'group_min_days', 'group_max_days', 'group_min_warnings', 'group_max_warnings', 'group_min_posts', 'group_max_posts', 'group_auto_default'
Instead of this find
Open: includes/acp/acp_groups.php

Code: Select all

$test_variables = array
In-line Find

Code: Select all

'founder_manage'
In-line Add after

Code: Select all

, 'min_days', 'max_days', 'min_warnings', 'max_warnings', 'min_posts', 'max_posts', 'auto_default'
Use this instead
Open: includes/acp/acp_groups.php
Find

Code: Select all

							'founder_manage'=> 'int',
							'skip_auth'		=> 'int',
Add after

Code: Select all

							'min_days'		=> 'int',
							'max_days'		=> 'int',
							'min_warnings'		=> 'int',
							'max_warnings'		=> 'int',
							'min_posts'		=> 'int',
							'max_posts'		=> 'int',
							'auto_default'		=> 'int',
Let me know if it works for you as well.
Whatever you share comes back. Support the phpBB Communities
Offering paid services. 15+ years of experience with phpBB3 and server management.
User avatar
matt1206
Registered User
Posts: 213
Joined: Wed Mar 08, 2006 3:04 pm
Location: Sheffield, UK
Name: Matt Worthington

Re: Auto Groups

Post by matt1206 »

DoYouSpeakWak wrote:Let me know if it works for you as well.
Will try your solution on my test board and let you know.
CMA
Registered User
Posts: 330
Joined: Mon Jun 02, 2003 4:15 pm
Location: Vancouver BC Canada
Contact:

Re: Auto Groups

Post by CMA »

is it working?


its shame... this mod is really useful...
User avatar
DoYouSpeakWak
Registered User
Posts: 2311
Joined: Fri Jul 25, 2008 1:32 pm
Location: Island of Wak-Wak
Contact:

Re: Auto Groups

Post by DoYouSpeakWak »

CMA wrote:is it working?


its shame... this mod is really useful...
I got it working, But to get it working again you will have to make an effort.

http://www.phpbb.com/community/viewtopi ... #p11306075
Whatever you share comes back. Support the phpBB Communities
Offering paid services. 15+ years of experience with phpBB3 and server management.
Locked

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