You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 41 guest(s) and 1 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - User Registration in 6.5 rc2 [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
gsicard
Sergeant
Sergeant


Joined: Feb 08, 2003
Posts: 105

Location: Virginia, USA

PostPosted: Thu Feb 27, 2003 4:43 am Reply with quoteBack to top

Did anyone come up with a fix for the new user registration problem in 6.5RC2.

Users cannot register on my site..... after the reg process and the confirmation email they get

_ACTIVATIONERROR


_ACTERROR2


Please help... Gary
Find all posts by gsicardView user's profileSend private messageSend e-mailMSN Messenger
sixonetonoffun
Major
Major


Joined: Jan 13, 2003
Posts: 892


PostPosted: Thu Feb 27, 2003 5:02 am Reply with quoteBack to top

Do the database updates manually there is one new table
Code:

CREATE TABLE nuke_users_temp (
  user_id int(10) NOT NULL auto_increment,
  username varchar(25) NOT NULL default '',
  user_email varchar(255) NOT NULL default '',
  user_password varchar(40) NOT NULL default '',
  user_regdate varchar(20) NOT NULL default '',
  check_num varchar(50) NOT NULL default '',
  time varchar(14) NOT NULL default '',
  PRIMARY KEY  (user_id)
) TYPE=MyISAM;

and a couple keys added to

CREATE TABLE nuke_stories (
  sid int(11) NOT NULL auto_increment,
  catid int(11) NOT NULL default '0',
  aid varchar(30) NOT NULL default '',
  title varchar(80) default NULL,
  time datetime default NULL,
  hometext text,
  bodytext text NOT NULL,
  comments int(11) default '0',
  counter mediumint(8) unsigned default NULL,
  topic int(3) NOT NULL default '1',
  informant varchar(20) NOT NULL default '',
  notes text NOT NULL,
  ihome int(1) NOT NULL default '0',
  alanguage varchar(30) NOT NULL default '',
  acomm int(1) NOT NULL default '0',
  haspoll int(1) NOT NULL default '0',
  pollID int(10) NOT NULL default '0',
  score int(10) NOT NULL default '0',
  ratings int(10) NOT NULL default '0',
  PRIMARY KEY  (sid),
  KEY sid (sid),
  KEY catid (catid),
  KEY counter (counter), <~New
  KEY topic (topic)     <~New
) TYPE=MyISAM;


If you haven't made these updates you will get that error. The other is just language file updates that need to be made. chatserve posted a complete english lang file in one of the forums.

_________________
www.netflake.com
www.glowoptics.com
Find all posts by sixonetonoffunView user's profileSend private message
ArtificialIntel



Joined: Jan 31, 2004
Posts: -88


PostPosted: Thu Feb 27, 2003 6:55 am Reply with quoteBack to top

copy and paste the following into phpMyAdmin

Code:
CREATE TABLE nuke_users_temp (
  user_id int(10) NOT NULL auto_increment,
  username varchar(25) NOT NULL default '',
  user_email varchar(255) NOT NULL default '',
  user_password varchar(40) NOT NULL default '',
  user_regdate varchar(20) NOT NULL default '',
  check_num varchar(50) NOT NULL default '',
  time varchar(14) NOT NULL default '',
  PRIMARY KEY  (user_id)
) TYPE=MyISAM;

ALTER TABLE nuke_stories ADD KEY counter (counter);
ALTER TABLE nuke_stories ADD KEY topic (topic);


ArtificialIntel
Find all posts by ArtificialIntelView user's profileSend private message
chatserv
General
General


Joined: Jan 12, 2003
Posts: 3128

Location: Puerto Rico

PostPosted: Thu Feb 27, 2003 8:56 am Reply with quoteBack to top

gsicard wrote:
Did anyone come up with a fix for the new user registration problem in 6.5RC2.

Users cannot register on my site..... after the reg process and the confirmation email they get

_ACTIVATIONERROR


_ACTERROR2


Please help... Gary
If you are using the 2.1 port and uploaded the language file that came with the port when it was first released replace it with the one that comes with RC-2

_________________
Feed a man a fish and you feed him for a day. Teach a man to fish and you feed him for a lifetime.
ScriptHeaven | NukeResources
Find all posts by chatservView user's profileSend private messageVisit poster's website
gsicard
Sergeant
Sergeant


Joined: Feb 08, 2003
Posts: 105

Location: Virginia, USA

PostPosted: Thu Feb 27, 2003 9:42 am Reply with quoteBack to top

My database does not use the nuke prefix. Should I change the SQL code prior to running it.

Gary
Find all posts by gsicardView user's profileSend private messageSend e-mailMSN Messenger
gsicard
Sergeant
Sergeant


Joined: Feb 08, 2003
Posts: 105

Location: Virginia, USA

PostPosted: Thu Feb 27, 2003 10:42 am Reply with quoteBack to top

Did that. Same problem.

Gary


chatserv wrote:
gsicard wrote:
Did anyone come up with a fix for the new user registration problem in 6.5RC2.

Users cannot register on my site..... after the reg process and the confirmation email they get

_ACTIVATIONERROR


_ACTERROR2


Please help... Gary
If you are using the 2.1 port and uploaded the language file that came with the port when it was first released replace it with the one that comes with RC-2
Find all posts by gsicardView user's profileSend private messageSend e-mailMSN Messenger
ArtificialIntel



Joined: Jan 31, 2004
Posts: -88


PostPosted: Thu Feb 27, 2003 11:08 am Reply with quoteBack to top

yes, change nuke to the prefix u use.

Most ppl use nuke so that's why i put nuke rather than $prefix

ArtificialIntel
Find all posts by ArtificialIntelView user's profileSend private message
Tjendol
Sergeant
Sergeant


Joined: Dec 15, 2003
Posts: 77


PostPosted: Wed Dec 17, 2003 9:01 am Reply with quoteBack to top

ArtificialIntel wrote:
copy and paste the following into phpMyAdmin

Code:
CREATE TABLE nuke_users_temp (
  user_id int(10) NOT NULL auto_increment,
  username varchar(25) NOT NULL default '',
  user_email varchar(255) NOT NULL default '',
  user_password varchar(40) NOT NULL default '',
  user_regdate varchar(20) NOT NULL default '',
  check_num varchar(50) NOT NULL default '',
  time varchar(14) NOT NULL default '',
  PRIMARY KEY  (user_id)
) TYPE=MyISAM;

ALTER TABLE nuke_stories ADD KEY counter (counter);
ALTER TABLE nuke_stories ADD KEY topic (topic);


ArtificialIntel



Where and HOW do I copy and paste code like this in myphpadmin?
Find all posts by TjendolView user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.240 Seconds - 286 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::