Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» .::.
tattoo fonts
http://www.checkoutmyink.com/category/tattoo-fonts-tattoo

Go Back   Nukemods Forum > PHP-Nuke 6.5 to 6.9 > Nuke 6.5 to 6.9 - General

Reply
 
LinkBack Thread Tools Display Modes
Registration Help on php-Nuke 6.8
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 7
Join Date: Oct 2004
Registration Help on php-Nuke 6.8 - 11-11-2004, 07:37 PM

Hello all,

I really have php-Nuke 6.8 not 6.5. But its like the same version. Anyway I have to Pre-Register everyone because php-Nuke wont send the registration E-Mails. My members say that the E-Mail never came so I have to register them myslef. Can anyone help me with this. Also mybe tell me whats happening, Why, and what I can do. Thank You.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Junior Member
 
Status: Offline
Posts: 2
Join Date: Jan 2005
01-08-2005, 11:14 PM

I had same problem in 7.0. Found out, I accidently changed my site URL in the Admin > Perference > Site URL name. Members got the E-mail from my site; but. they couldn't activate the account at my site. They got a server NOT FOUND error. I had typed in the block (which is to the site} http://simzoom.net as the URL. Visitors were on my server and could get to my phpNuke site. They could register and received an E-mail, But couldnt send me a activation code from the E-mail back to my server. What the Site URL needed to be is http://www.simzoom.net/phpnuke. After setting the right Web Site Configuration, members can activate their account.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: Registration Help on php-Nuke 6.8
Old
  (#3 (permalink))
Member
 
Status: Offline
Posts: 484
Join Date: Nov 2004
Location: UK Derby
Re: Registration Help on php-Nuke 6.8 - 01-08-2005, 11:51 PM

Quote:
Originally Posted by maddog39
Hello all,

I really have php-Nuke 6.8 not 6.5. But its like the same version. Anyway I have to Pre-Register everyone because php-Nuke wont send the registration E-Mails. My members say that the E-Mail never came so I have to register them myslef. Can anyone help me with this. Also mybe tell me whats happening, Why, and what I can do. Thank You.
Have u asked them to look in the junk mail as every time sumone gets registerd to my site email gos2 jumkmail and not main folder also have a look at the prefrencis make sure u have it set on so people resive email :-) houpe that helps u
  Send a message via MSN to killerbee  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Junior Member
 
Status: Offline
Posts: 2
Join Date: Jan 2005
03-30-2005, 12:19 AM

Hey y'al! This : http://www.simzoom.net/phpnuke. should be : http://www.simzoom.net/phpnuke/ so you're the ones that sent all them emails. no prob. One little period can make a difference
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 19
Join Date: Mar 2005
03-30-2005, 07:18 PM

Im gonna explain how to eliminate that email confirmation pain in the @!#$&



Open modules/Your_Account/index.php and in the funtion finishNewUser Look for this....

} else {
$message = ""._WELCOMETO." $sitename! "._YOUUSEDEMAIL." ($user_email) "._TOREGISTER." $sitename. "._TOFINISHUSER." $finishlink "._FOLLOWINGMEM." "._UNICKNAME." $username "._UPASSWORD." $user_password";
$subject = ""._ACTIVATIONSUB."";
$from = "$adminmail";
mail($user_email, $subject, $message, "From: $from X-Mailer: PHP/" . phpversion());
title("$sitename: "._USERREGLOGIN."");
OpenTable();
echo "<center>"._ACCOUNTCREATED."

";
echo ""._YOUAREREGISTERED.""
."

"
.""._FINISHUSERCONF."

"
.""._THANKSUSER." $sitename!</center>";
CloseTable();
}


And replace with:

} else {
$past = time()-86400;
$db->sql_query("DELETE FROM ".$user_prefix."_users_temp WHERE time < $past");
$sql = "SELECT * FROM ".$user_prefix."_users_temp WHERE username='$username' AND check_num='$check_num'";
$result = $db->sql_query($sql);
if ($db->sql_numrows($result) == 1) {
$row = $db->sql_fetchrow($result);
if ($check_num == $row[check_num]) {
$db->sql_query("INSERT INTO ".$user_prefix."_users (user_id, username, user_email, user_password, user_avatar, user_regdate, user_lang) VALUES (NULL, '$row[username]', '$row[user_email]', '$row[user_password]', 'gallery/blank.gif', '$row[user_regdate]', '$language')");
$db->sql_query("DELETE FROM ".$user_prefix."_users_temp WHERE username='$username' AND check_num='$check_num'");
title(""._ACTIVATIONYES."");
OpenTable();
echo "<center>¡ Welcome to$sitename $row[username] ! "._ACTMSG."</center>";
CloseTable();
} else {
title(""._ACTIVATIONERROR."");
echo "<center>"._ACTERROR1."</center>";
}
} else {
title(""._ACTIVATIONERROR."");
echo "<center>"._ACTERROR2."</center>";
die();
}
}

And the last touch add $language on the global funtion finishNewUser.

All set. :P
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Registration DesertEagle Theme packs 2 03-23-2005 12:35 AM
Registration error Jennie Open topics 3 12-11-2004 01:02 PM
Point all nuke links to forum registration and edit profile mikem FAQ/Fixes 0 04-06-2003 03:51 PM
New User Registration by Administrator - Nuke 6.0/Phpbb Port bobbychat Purged Topics 4 03-09-2003 01:00 AM
Forum Registration Melkor Purged Topics 1 12-27-2002 06:24 PM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31