» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 97
3 members and 94 guests
akunamat, xodol generic, xwhenshesgonex
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Football Betting - best nfl betting promotions at sportsbook.com.
Oral Chelation - initial cleansing of your veins & arteries

Register Now! Contact Us

About this Page
This is a discussion on Registration Help on php-Nuke 6.8 within the Nuke 6.5 to 6.9 - General forums, part of the PHP-Nuke 6.5 to 6.9 category; Hello all, I really have php-Nuke 6.8 not 6.5. But its like the same version. Anyway I ...



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

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-11-2004, 06:37 PM
Junior Member
 
Join Date: Oct 2004
Posts: 7
Registration Help on php-Nuke 6.8
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
  #2 (permalink)  
Old 01-08-2005, 10:14 PM
Junior Member
 
Join Date: Jan 2005
Posts: 2
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
  #3 (permalink)  
Old 01-08-2005, 10:51 PM
Member
 
Join Date: Nov 2004
Location: UK Derby
Posts: 481
Send a message via MSN to killerbee
Re: Registration Help on php-Nuke 6.8
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
__________________
www.MoWarez.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-29-2005, 11:19 PM
Junior Member
 
Join Date: Jan 2005
Posts: 2
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
  #5 (permalink)  
Old 03-30-2005, 06:18 PM
Junior Member
 
Join Date: Mar 2005
Posts: 19
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-22-2005 11:35 PM
Registration error Jennie Open topics 3 12-11-2004 12:02 PM
Point all nuke links to forum registration and edit profile mikem FAQ/Fixes 0 04-06-2003 02:51 PM
New User Registration by Administrator - Nuke 6.0/Phpbb Port bobbychat Purged Topics 4 03-09-2003 12:00 AM
Forum Registration Melkor Purged Topics 1 12-27-2002 05:24 PM


All times are GMT -5. The time now is 07:34 AM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.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