| Author |
Message |
djslue
Private


Joined: Apr 27, 2006
Posts: 46
|
Posted:
Wed Jun 11, 2008 11:44 am |
  |
I am running phpnuke and was running "Approve Membership" to have members answer questions to access my site. I had an issue with my database and can't get "Approve Membership" working anymore. Is there another way I can approve memberships and not just have open membersips where anyone can join.
Thanks in Advance for the help !
Steve |
|
|
   |
 |
doctornuke
Corporal


Joined: Oct 15, 2003
Posts: 58
|
Posted:
Sun Jun 22, 2008 8:29 am |
  |
I think NSN your account mods can help . (I've used since phpnuke 7.0 , don't know recent mods existed or not). |
_________________ [b]home and os
health
bgame[/b] |
|
    |
 |
djslue
Private


Joined: Apr 27, 2006
Posts: 46
|
Posted:
Wed Jul 02, 2008 6:56 am |
  |
Can you be more specific what "NSN your account mods" means please.
thanks
slue |
|
|
   |
 |
movieman
Lieutenant


Joined: Feb 29, 2004
Posts: 293
Location: New York
|
Posted:
Wed Jul 02, 2008 7:55 am |
  |
this is what the mod can do.
Features in this version (+ denotes new features in this version):
------------------------------------------------------------------
+ Bug Fix Release.
- Mail domains can be blocked from being used for new user accounts.
- These are stored in the config table.
- Strings can be blocked from being used in new user account usernames.
- These are stored in the config table.
- Account Activation time can be set from No Limit to 30 days.
- Email must be entered twice to help prevent typos in email addresses.
- Username min and max length are settable.
- Password min and max length are settable.
- New user account must fill out the profile form before being activated.
- Reinstalled Admin username change setting. USE GREAT CAUTION WHEN CHANGING
USERNAMES. MANY THINGS WITHIN NUKE ARE KEYED BY USERNAME NOT USER ID.
- Addition of ChatServ's Avatar Control Panel.
- Automatically suspends inactive user accounts.
- Can be set to only allow to run when admin chooses.
- Improved scripting.
- Enhanced Admin panels.
- Greater control of users.
- Admin can turn the security image on or off.
- Forced login to use username in database. i.e. Test not test
- Admins can allow user self deletion.
- Admins can block user email changes.
- Admins can block user theme changes.
- Admins can choose to bypass email activation.
- Admins can now modify pending user details.
- Admins can now view pending user details.
- Admins can resend Activation Email.
- Admins can suspend users.
- Allows for Required User approval by Admin.
- Blocks usernames with preset strings in them.
- Cookie killer routine for suspended and deactivated accounts.
- Improved NavBar scripting.
- Optionally send the admin an email when someone registers.
- Optionally send the admin an email when someone unregisters.
- Provides for servers without mail support.
- Users can be promoted to Admin by SuperUser ONLY.
- Also sets the user account as forum admin. |
_________________ http://nuke-help.no-ip.com
|
|
       |
 |
djslue
Private


Joined: Apr 27, 2006
Posts: 46
|
Posted:
Wed Jul 02, 2008 8:07 am |
  |
Where can I find this please ? |
|
|
   |
 |
movieman
Lieutenant


Joined: Feb 29, 2004
Posts: 293
Location: New York
|
Posted:
Wed Jul 02, 2008 8:19 am |
  |
|
       |
 |
djslue
Private


Joined: Apr 27, 2006
Posts: 46
|
Posted:
Wed Jul 02, 2008 8:20 am |
  |
Thanks, I'll give it a try.
slue |
|
|
   |
 |
djslue
Private


Joined: Apr 27, 2006
Posts: 46
|
Posted:
Wed Jul 02, 2008 8:33 am |
  |
|
   |
 |
movieman
Lieutenant


Joined: Feb 29, 2004
Posts: 293
Location: New York
|
Posted:
Wed Jul 02, 2008 8:52 am |
  |
this is what I see.
You have been blocked from entering this site.
You have attempted to improperly access the admin area of this site.
All of the following information has been gathered to assist the webmaster should this need to be reported to local or federal law enforcement.
If you think this is a mistake you can contact the site webmaster at djslue(at)hiphophits(dot)net.
Be SURE to include the following information in any email!
User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)
Remote Address: 24.94.36.82
Client IP: none
Forwarded For: none
Date Blocked: 2008-07-02 @ 11:55:55 CDT GMT -0500
Block expires: Permanent
--------------------------------------------------------------------------------
PLEASE: bear in mind that even if you have done nothing wrong, you may be getting this page due to someone's misuse of the site in your ip range |
_________________ http://nuke-help.no-ip.com
|
|
       |
 |
movieman
Lieutenant


Joined: Feb 29, 2004
Posts: 293
Location: New York
|
Posted:
Wed Jul 02, 2008 8:56 am |
  |
Did you read the readme file?
Your Account tables)
html/admin/*/*.* ------------------------> admin/*/*.*
html/modules/Your_Account/*.* -----------> modules/Your_Account/*.*
3. Notes
--------
On some servers you will get a blank page or a loop after using the forms. If this should
happen open the files in a text editor and replace all 'Header("Location: ' with
'Header("Refresh: 0; url=' (without the ' marks) and save the files. Then reupload them.
4. Modifications Needed
-----------------------
Open mainfile.php in a text editor and goto the end of the file. Just before the
?> add the following code, this will kill any cookies for suspended and deleted users:
// NSN Mod
$urinfo = getusrinfo($user);
$ulevel = $urinfo['user_level'];
$uactive = $urinfo['user_active'];
if ($ulevel < 1 OR $uactive < 1) {
unset($user);
unset($cookie);
} |
_________________ http://nuke-help.no-ip.com
|
|
       |
 |
movieman
Lieutenant


Joined: Feb 29, 2004
Posts: 293
Location: New York
|
Posted:
Wed Jul 02, 2008 9:15 am |
  |
|
       |
 |
|
|