Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
Posted:
Tue Sep 16, 2003 1:23 pm
Make sure that the Resend_Email folder is in the modules directory and that the permissions on the Resend_Email folder are 755 and on index.php it is 644. Nuke isn't recognizing it for some reason.
The directory was set to 777 and the index.php to 666.
I am at a complete loss.
A curious thing happened, which is unrelated to you but to the YAT module which I installed since there is also a manual way to access new users in nuke_users. Today, when I tried to access the Admin menu, I received an error message. The first related to mainfile.php line 181. Specifically, it said it couod not find in admin/lang/lang-en-iso-8859-1.php - so all I did was to copy the lang-english.php file, renamed it and put into the admin/lang and the error went.
If you have any idea why this occurs, I would be grateful!
I am completely stuck as to why I cannot see the Resend Module and sorry to be such a pain!
Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
Posted:
Wed Sep 17, 2003 1:55 pm
You are not a pain, so don't apologize. Here is something to try. Backup up (export) the modules table, data and structure. Then, DROP the table using phpMyAdmin. Then, run this code in an SQL window
CREATE TABLE nuke_modules (
mid int(10) NOT NULL auto_increment,
title varchar(255) NOT NULL default '',
custom_title varchar(255) NOT NULL default '',
active int(1) NOT NULL default '0',
view int(1) NOT NULL default '0',
inmenu tinyint(1) NOT NULL default '1',
PRIMARY KEY (mid),
KEY mid (mid),
KEY title (title),
KEY custom_title (custom_title)
) TYPE=MyISAM;
# --
# -- Dumping data for table 'nuke_modules'
# --
INSERT INTO nuke_modules VALUES (1,'AvantGo','AvantGo',1,0,1);
INSERT INTO nuke_modules VALUES (2,'Downloads','Downloads',1,0,1);
INSERT INTO nuke_modules VALUES (3,'Feedback','Feedback',1,0,1);
INSERT INTO nuke_modules VALUES (4,'Journal','Journal',1,0,1);
INSERT INTO nuke_modules VALUES (5,'News','News',1,0,1);
INSERT INTO nuke_modules VALUES (6,'Private_Messages','Private Messages',1,0,1);
INSERT INTO nuke_modules VALUES (7,'Recommend_Us','Recommend Us',1,0,1);
INSERT INTO nuke_modules VALUES (8,'Search','Search',1,0,1);
INSERT INTO nuke_modules VALUES (9,'Statistics','Statistics',1,0,1);
INSERT INTO nuke_modules VALUES (10,'Stories_Archive','Stories Archive',1,0,1);
INSERT INTO nuke_modules VALUES (11,'Submit_News','Submit News',1,0,1);
INSERT INTO nuke_modules VALUES (12,'Surveys','Surveys',1,0,1);
INSERT INTO nuke_modules VALUES (13,'Top','Top 10',1,0,1);
INSERT INTO nuke_modules VALUES (14,'Topics','Topics',1,0,1);
INSERT INTO nuke_modules VALUES (15,'Web_Links','Web Links',1,0,1);
INSERT INTO nuke_modules VALUES (16,'WebMail','WebMail',1,1,1);
INSERT INTO nuke_modules VALUES (17,'Your_Account','Your Account',1,0,1);
INSERT INTO nuke_modules VALUES (18,'Addon_Sample','Addon Sample',0,2,1);
INSERT INTO nuke_modules VALUES (19,'Content','Content',0,0,1);
INSERT INTO nuke_modules VALUES (20,'Encyclopedia','Encyclopedia',0,0,1);
INSERT INTO nuke_modules VALUES (21,'FAQ','FAQ',0,0,1);
INSERT INTO nuke_modules VALUES (22,'Forums','Forums',0,0,1);
INSERT INTO nuke_modules VALUES (23,'Members_List','Members List',0,1,1);
INSERT INTO nuke_modules VALUES (24,'Reviews','Reviews',0,0,1);
INSERT INTO nuke_modules VALUES (25,'Sections','Sections',0,0,1);
Then, open your browser and point it to your nuke site. Nuke should rebuild the table. You will, obviously, need to reset some of your modules. Did that help?
Joined: Aug 27, 2002 Posts: 16987 Location: Kansas
Posted:
Thu Sep 18, 2003 12:48 pm
Entries will only be shown if there are people who are waiting to join. The purpose of the module is to allow the administrator to resend the confirmation email, maybe due to a typo in the email address. Or, just click on the link and it confirms then automatically.
The reason I left the autoincrement statement off is that it is not needed when population a fresh table. The system will fill it in automatically.
The differences in the vlaues may have to do with the default on or off status and what you had at the time you saved it.
I just installed the resend module. pretty cool.
but I only see the two users who registered today. It doesn't display the 3 users that registered yesterday. I can see 3 people in my user_temp table in the database that haven't confirmed their registeration. Is there something in the resend module that filters out only for todays registrations?
View next topic View previous 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