PHP Web Host - Quality Web Hosting For All PHP Applications Free RavenNuke(tm) Add Ons
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Author Message
infotech
New Member
New Member


Joined: Aug 19, 2002
Posts: 9

PostPosted: Tue Sep 16, 2003 11:45 am Reply with quote Back to top

Dear Raven,

I am using phpnuke 6.9 and have put your Resend_Email in the Modules directory.

I had expected to see Resend_Email under the Inactive Modules (under Admin). Although other modules are there, Resend_Email is not.

As I am still developing this site, no users have registered after installing your module.

I would be grateful for your help.

Many thanks.

Regards,

Ros
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16987
Location: Kansas

PostPosted: Tue Sep 16, 2003 12:36 pm Reply with quote Back to top

It should show up. I use it on my 6.9 site and it's there. User phpMyAdmn and look at the modules table. Is it in the table?
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
infotech
New Member
New Member


Joined: Aug 19, 2002
Posts: 9

PostPosted: Tue Sep 16, 2003 1:20 pm Reply with quote Back to top

Dear Raven,

After I posted, I went via phpMyAdmin and looked for the Modules table. I did not see Resend_Email among the list.

Regards,

Ros
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16987
Location: Kansas

PostPosted: Tue Sep 16, 2003 1:23 pm Reply with quote Back to top

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.
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
infotech
New Member
New Member


Joined: Aug 19, 2002
Posts: 9

PostPosted: Wed Sep 17, 2003 1:47 pm Reply with quote Back to top

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!

Regards,

Ros
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16987
Location: Kansas

PostPosted: Wed Sep 17, 2003 1:55 pm Reply with quote Back to top

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
Code:
# --
# -- Table structure for table 'nuke_modules'
# --

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?
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
infotech
New Member
New Member


Joined: Aug 19, 2002
Posts: 9

PostPosted: Thu Sep 18, 2003 12:18 pm Reply with quote Back to top

Dear Raven,

You are very generous towards a novice.

Yes - it did work. Is it possible to ask why.

In my original table, it had at the end of CREATE TABLE:

) TYPE=MyISAM AUTO_INCREMENT=31;

the auto_increment was left out in your table.

I also noticed a difference in the Values. For eample:

INSERT INTO nuke_modules VALUES (1, 'AvantGo', 'AvantGo', 1,0,1,1);

was an example in my original table but in yours, the values were 1,0,1

If this is too complicated to explain, please don't feel you have to explain. I will try and learn more about this.

Thank you very much for all your help which I appreciate greatly.

Kind regards,

Ros
View user's profile Send private message Visit poster's website
infotech
New Member
New Member


Joined: Aug 19, 2002
Posts: 9

PostPosted: Thu Sep 18, 2003 12:31 pm Reply with quote Back to top

Dear Raven,

The entry Resend_Email does appear in the Inactive Modules. When I click on the link, it shows the title User Registration/Login but nothing else.

Is this correct?

Kind regards,

Ros
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16987
Location: Kansas

PostPosted: Thu Sep 18, 2003 12:48 pm Reply with quote Back to top

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.

Glad everything's working!
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
infotech
New Member
New Member


Joined: Aug 19, 2002
Posts: 9

PostPosted: Thu Sep 18, 2003 1:21 pm Reply with quote Back to top

Dear Raven,

Thank you very much indeed.

Kind regards,

Ros
View user's profile Send private message Visit poster's website
Lateron
Worker
Worker


Joined: May 10, 2003
Posts: 119
Location: Katoomba, NSW, Australia.

PostPosted: Mon Sep 22, 2003 12:07 am Reply with quote Back to top

Raven,

I have just started using Resend_Email on two 6.9 sites and have found it a very handy tool.

Thank you for making it available. Very Happy

Ron....
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16987
Location: Kansas

PostPosted: Mon Sep 22, 2003 4:39 am Reply with quote Back to top

Thanks to everyone for the kudos! I use it often too, mainly for rejected emails that people have made typos in their entires.
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
oudie
New Member
New Member


Joined: May 11, 2004
Posts: 1

PostPosted: Tue May 11, 2004 12:57 pm Reply with quote Back to top

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 user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic

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
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2011 by Raven

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::
:: fisubice Theme Modified by the RavenNuke™ Team ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum