Advanced Double Activation Pack

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.
nampa
Registered User
Posts: 19
Joined: Sun Nov 10, 2002 10:07 pm

Re: Advanced Double Activation Pack

Post by nampa »

Thank you.

I did fix the typo on the umil_auto_adap.php file, and now it worked.
It gave me a screen with info about installing ADA.

The General page of the ACP is working fine.
The language is set to "British English".
That is the only language option that I have.

Now I have a question/problem.
In the "User Registration Settings" page, the first setting is the Account Activation.
It ONLY has 2 options:
None
Disable.

The second setting is:
Enable extended Admin Activation E-mail:
If enabled the profile data of the user is added to the Admin Activation E-mail. Only used if Admin Activation is enabled.

I don't see where I can enable the "Admin Activation"?

Jaime
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello Jaime,
what have you changed or fixed in umil_auto_adap.php?

It seems that you have to enable board wide e-mails. It's the first setting under E-mail settings in the ACP.

More information: http://martin-truckenbrodt.com/cgi/phpB ... f=13&t=221

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
nampa
Registered User
Posts: 19
Joined: Sun Nov 10, 2002 10:07 pm

Re: Advanced Double Activation Pack

Post by nampa »

Original code in umil_auto_adap.php

Code: Select all

);

// Include the UMIF Auto file and everything else will be handled automatically.
include($phpbb_root_path . 'umil/umil_auto.' . $phpEx);
changed to:

Code: Select all

));

// Include the UMIF Auto file and everything else will be handled automatically.
include($phpbb_root_path . 'umil/umil_auto.' . $phpEx);
Jaime
Last edited by nampa on Mon Aug 31, 2009 5:44 pm, edited 1 time in total.
nampa
Registered User
Posts: 19
Joined: Sun Nov 10, 2002 10:07 pm

Re: Advanced Double Activation Pack

Post by nampa »

Martin,

You were correct. I had to enable board wide emails.
Now I see the option for Account Activation:
User + Admin

thanks

Jaime
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello Jaime,
thank you very much for the feedback!

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello Jaime,
your're right! There's a bug. But your fix is not okay, too.
The
),
is missing some lines above:

Code: Select all

			),
		),
		'cache_purge' => array('', 'auth', 'imageset', 'template', 'theme'),
	),
	// Version 1.4.1
	'1.4.1'	=> array(
		'cache_purge' => array(),
	),
Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello,
if you are interested in more information about ths MOD please look here: http://www.martin-truckenbrodt.com/cgi/ ... f=48&t=224 .

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
Hoov
Registered User
Posts: 1
Joined: Wed Sep 21, 2005 4:38 am

Re: Advanced Double Activation Pack

Post by Hoov »

I am not sure what I am doing wrong with this mod. Everything seems to work during the install except for one thing, and it has been mentioned before. Its with this file, ucp_activate.php

The mod is looking for this,

Code: Select all

include($phpbb_root_path . 'includes/functions_user.' . $phpEx);

			user_active_flip('activate', $user_row['user_id']);

			$sql = 'UPDATE ' . USERS_TABLE . "
				SET user_actkey = ''
				WHERE user_id = {$user_row['user_id']}";
			$db->sql_query($sql);
My file has this,

Code: Select all

include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);

			user_active_flip('activate', $user_row['user_id']);

			$sql = 'UPDATE ' . USERS_TABLE . "
				SET user_actkey = ''
				WHERE user_id = {$user_row['user_id']}";
			$db->sql_query($sql);
I actually have 4 versions of the phpBB install that I am using the files from trying to figure out where I am going wrong. 2 of them are online, although one is hidden and the other is just getting started. A third is installed locally, and then fourth is also local and has never been configured or run.

All 4 of them have the include_once statement instead of just the include statement.

Did I miss something?
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello Hoov,
I've checked with a fresh 3.0.5 file.
You've found a bug! Your FIND is right. It seems that it has been changed in phpBB 3.0.5.

Thank you very much for the feedback!

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
donkey33
Registered User
Posts: 24
Joined: Sat Nov 07, 2009 12:44 am

Re: Advanced Double Activation Pack

Post by donkey33 »

Hi. I am having trouble adding the verify module to the system tab. It is just not there as an option in the drop down box (this is the final DIY step).

I have checked and double checked acp_users.php and the verify line is there. Also checked the language file. That's all working.

The verification is working. New accounts get the message that admin have to approve, I get the email and a link to click on to approve them and once I've done that, they are approved so it all works but I can't figure out how to add this verify mod.

I checked the phpbb_modules table and all acp_user mods are there except the verify mod. It is missing and I assume that is why it is not showing. It somehow is not added to that table so a step somewhere (where the line is meant to be added) is breaking down.

Any help on getting this final DIY step to complete?
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello donkey33,
which ADAP version ahve you installed? 1.0.9 or 1.4.2?

If 1.4.2: Have you used the UMIL installation script?

If 1.0.9: Please install 1.4.2.

Here are two bugs listes found in 1.4.2: http://www.martin-truckenbrodt.com/cgi/ ... f=22&t=222

ADAP 1.4.3 will come next weeks. At the moment I don't have a lot of time for programming.
Although it could make sense to wait for phpBB 3.0.6 before releasing a new version of this MOD.

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
Richazey
Registered User
Posts: 823
Joined: Mon Oct 27, 2008 9:03 pm

Re: Advanced Double Activation Pack

Post by Richazey »

Great mod, many thanks
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello parkstee,
thank you very much for the feedback.

Are you using the Advanced Block MOD, too?

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!
Richazey
Registered User
Posts: 823
Joined: Mon Oct 27, 2008 9:03 pm

Re: Advanced Double Activation Pack

Post by Richazey »

Not yet why?
User avatar
Martin Truckenbrodt
Registered User
Posts: 3045
Joined: Sun Mar 23, 2003 6:22 pm
Location: Franconia
Name: Martin Truckenbrodt

Re: Advanced Double Activation Pack

Post by Martin Truckenbrodt »

Hello,
if you have no problem with spamemrs then you don't need.

I have you have problems with them then you can think about using it. Just look at my signature.

Bye Martin
Free tutorial: Installing MODs in phpBB 3.0
Advanced Block MOD - Prevent spam on your phpBB 3.0 board with Stop Forum Spam, BotScout, Akismet, Project Honey Pot and several IP-RBL and Domain-RBL DNS blacklists!
My MODs
Use the official phpBB Ideas to vote missing core features!!!

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