MyBB Community Forums

Full Version: How to disable the "Awaiting activation" window ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello MyBB community.

I have a forum with MyBB version 1.8.5 (php 5.6.33-0). Registration method is set to "Administrator activation".

I would like to know how to remove this window : ?  (which is being shown after a member created his account)

[Image: fe038bfc65b599a759eb218fadad40b8.jpg]

Instead of this, the root homepage should be shown, right after the successfull registration.


Thank you
basically you have to edit member.php file for the above requirement
find below code around line 549
error($lang->redirect_registered_admin_activate);
comment out it by adding // and add extra code redirect("index.php"); like below
//	error($lang->redirect_registered_admin_activate);
	redirect("index.php");

Note: php files should be saved with utf-8 encoding without Byte Order Mark.
in general, we use editor like Notepad++ or file editor at web host panel to edit the files.
(2018-04-11, 03:09 AM).m. Wrote: [ -> ]basically you have to edit member.php

Thank you so much Smile