| Author |
Message |
Argus Client

Joined: Oct 06, 2003 Posts: 81
|
Posted:
Mon Feb 02, 2004 3:25 pm |
|
Hi there...
Does anyone know if there is a way to have new registration moderated so that an admin has to approve a registration request?
Thanks,
-Arg |
|
|
|
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1393
|
Posted:
Mon Feb 02, 2004 3:46 pm |
|
Here's one option, try the modification suggested , once done go to your forum's admin section and set user activation to admin. |
|
|
|
 |
Argus Client

Joined: Oct 06, 2003 Posts: 81
|
Posted:
Tue Feb 03, 2004 9:31 pm |
|
tx for the reply - I'll try that out  |
|
|
|
 |
candy Worker


Joined: Dec 21, 2004 Posts: 225 Location: Kansas City metro
|
Posted:
Mon Jun 27, 2005 9:24 am |
|
this link doesn't work.....any other ideas? i want each user to be approved before creating a new account. Thanks. |
|
|
|
 |
CurtisH Life Cycles Becoming CPU Cycles

Joined: Mar 15, 2004 Posts: 638 Location: Waco, TX
|
Posted:
Mon Jun 27, 2005 9:40 am |
|
here is a simple tutorial on how to use the Forum registration.
Find this in modules/Your_Account/index.php
| Code: | case "edituser":
edituser();
break; |
Replace with
| Code: |
case "edituser":
Header("Refresh: 0; url=modules.php?name=Forums&file=profile&mode=editprofile");
break; |
And Find this
| Code: | case "new_user":
new_user();
break; |
Replace with
| Code: | case "new_user":
Header("Refresh: 0; url=modules.php?name=Forums&file=profile&mode=register");
break; |
|
Last edited by CurtisH on Mon Jun 27, 2005 10:28 am; edited 4 times in total |
|
|
 |
candy Worker


Joined: Dec 21, 2004 Posts: 225 Location: Kansas City metro
|
Posted:
Mon Jun 27, 2005 9:43 am |
|
will this work for wanting to have new nuke user accounts not receive the email activation, but instead have admin approval before their account is created or this just for the forum part of the site? thanks!  |
|
|
|
 |
CurtisH Life Cycles Becoming CPU Cycles

Joined: Mar 15, 2004 Posts: 638 Location: Waco, TX
|
Posted:
Mon Jun 27, 2005 10:31 am |
|
Yes. By the way, I fixed the code above. Google Tap was mangling the URLs
For those that wish to know, when GT is enable on a site the ? between modules.php and name causes the url to be rewritten into the html equivalent.
to prevent this issue when posting your code for review use & #63 ; without the spaces in place of the question mark. |
|
|
|
 |
|
|
|
|