 |
|
 |
|
- Readme First! - Read and follow the rules, otherwise your posts will be closed |
|
|
|
|
|
There are currently, 151 guest(s) and 0 member(s) that are online.
You are Anonymous user. You can register for free by clicking here |
|
|
|
|
|
Approve Membership Module |
|
|
Posted on Sunday, August 03 @ 00:58:56 CEST by [RETIRED]Raven |
|
|
|
|
| |
|
Average Score: 5 Votes: 1

|
|
|
|
|
|
| The comments are owned by the poster. We aren't responsible for their content. |
| | | | |
No Comments Allowed for Anonymous, please register | | | | |
Re: Approve Membership Module (Score: 1) by TA2001 on Tuesday, August 05 @ 13:58:15 CEST (User Info | Send a Message) | I was able to get this to work with a few mods for
nuke 6.7
had problems with the sql script : here is my answer
# phpMyAdmin MySQL-Dump
# version 2.3.0-rc4
# http://phpwizard.net/phpMyAdmin/
# http://www.phpmyadmin.net/ (download page)
#
# Host: localhost
# Generation Time: Aug 05, 2003 at 12:53 PM
# Server version: 3.22.32
# PHP Version: 4.2.3
# Database : nuke67
# --------------------------------------------------------
#
# Table structure for table nuke_pendingusers
#
CREATE TABLE nuke_pendingusers (
user_id int(10) DEFAULT '0' NOT NULL auto_increment,
username char(25) NOT NULL,
user_email char(255) NOT NULL,
user_password char(40) NOT NULL,
user_regdate char(20) NOT NULL,
check_num char(50) NOT NULL,
usertime char(14) NOT NULL,
PRIMARY KEY (user_id)
);
a change to exsiting table
# Table structure for table nuke_users_temp
#
CREATE TABLE nuke_users_temp (
user_id int(10) DEFAULT '0' NOT NULL auto_increment,
username varchar(25) NOT NULL,
user_email varchar(255) NOT NULL,
user_password varchar(40) NOT NULL,
user_regdate varchar(20) NOT NULL,
check_num varchar(50) NOT NULL,
usertime varchar(14) NOT NULL,
PRIMARY KEY (user_id)
);
in the Approval code I changed anything using the field time
to usertime to match the database code..
( lookfor db inserts )..
Thanks for the help..
Regards
Tmoore
|
| | | | | |
|