Urgent help needed- Site not creating new member.. :cry:

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Urgent help needed- Site not creating new member.. :cry:
Molly28
CZ Active Member
Molly28 has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Feb 10, 2004
0.01 posts per day
Posts: 102
Points: 5,310
   
Hi , last couple of days i have no members sign in.. so i try to make one for me.. and it says error nickname already taken.. i try many nicks and the same message come up.. icon_sad.gif
what should i do? icon_rolleyes.gif

Thank you



Back to top Reply with quote
#2   re: Urgent help needed- Site not creating new member.. :cry
Taut
PayPal Donation
CZ Revered Member
 Codezwiz Site Donator
Taut has been a member for over 20 year's 20 Year Member
usa.gif california.gif
Occupation: Entrepreneur
Gender: Female
Fav. Sports Team: SF Giants
Status: Offline
Joined: May 27, 2003
0.72 posts per day
Posts: 5530
Points: 481,695
   
did oyu add any new blocks or mods recently before that incident?



Back to top Reply with quote
#3   re: Urgent help needed- Site not creating new member.. :cry
Molly28
CZ Active Member
Molly28 has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Feb 10, 2004
0.01 posts per day
Posts: 102
Points: 5,310
   
yes i add the jag user info. i play with the code and i think i found the problem.. i had the code in mainfile.php like that.

// Function for Security Fix by Ulf Harnhammar, VSU Security 2002
    // Looks like I don't have so bad track record of security reports as Ulf believes
    // He decided to not contact me, but I'm always here, digging on the net
    return strtr($str, "\015\012", ' ');
}

// NSN Mod
    $urinfo = getusrinfo($user);
    $ulevel = $urinfo['user_level'];
    $uactive = $urinfo['user_active'];
    if ($ulevel < 1 OR $uactive < 1) {
        unset($user);
        unset($cookie);
    }
// NSN Mod



i change to that below and is now letting me make users..



// Function for Security Fix by Ulf Harnhammar, VSU Security 2002
    // Looks like I don't have so bad track record of security reports as Ulf believes
    // He decided to not contact me, but I'm always here, digging on the net
    return strtr($str, "\015\012", ' ');
}

// NSN Mod
if (is_user($user)) {
    $uinfo = getusrinfo($user);
    $lv = time();
    $db->sql_query("UPDATE ".$user_prefix."_users SET user_lastvisit='$lv' WHERE user_id='".$uinfo['user_id']."'");
}
// NSN Mod
// NSN Mod
    $urinfo = getusrinfo($user);
    $ulevel = $urinfo['user_level'];
    $uactive = $urinfo['user_active'];
    if ($ulevel < 1 OR $uactive < 1) {
        unset($user);
        unset($cookie);
    }
// NSN Mod
?>



Back to top Reply with quote
#4   re: Urgent help needed- Site not creating new member.. :cry
Molly28
CZ Active Member
Molly28 has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Feb 10, 2004
0.01 posts per day
Posts: 102
Points: 5,310
   
still having some problem.. error message nick already taken, icon_redface.gif

i am posting the main file so u can have a look.
thanks a lot..



Attached Files
mainfile.txt (36.74 KB, Downloaded: 5231 Time(s))


Back to top Reply with quote
#5   re: Urgent help needed- Site not creating new member.. :cry
Telli
Site Admin
Occupation: Self Employed
Age: 46
Gender: Male
Fav. Sports Team: Detroit Red Wings
Website:
Status: Offline
Joined: May 26, 2003
1.06 posts per day
Posts: 8089
Points: 494,430
   
Molly open the jag block and find everywhere it says $username with the dollar sign. Change thos to $user_name and it will work fine.




_________________
The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he, who in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy my brothers. And you will know my name is the Lord when I lay my vengeance upon thee. Ezekiel 25:17
Back to top Reply with quote
#6   re: Urgent help needed- Site not creating new member.. :cry
Molly28
CZ Active Member
Molly28 has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Feb 10, 2004
0.01 posts per day
Posts: 102
Points: 5,310
   
well there is no $username in the jag block,,
i still think the problem is in the main file that i posted above .. cause even if i dont use the block and try to create a new user in account.. it gives that error .. nick already takem. icon_cry.gif



Back to top Reply with quote
#7   re: Urgent help needed- Site not creating new member.. :cry
aUsTiN
CZ Active Member
aUsTiN has been a member for over 20 year's 20 Year Member
usa.gif georgia.gif
Age: 41
Gender: Male
Website:
Status: Offline
Joined: Sep 09, 2003
0.02 posts per day
Posts: 142
Points: 57
  MSN Messenger 
Ok, let me start by saying this, anything JAG related, specifically says for Nuke, not NSN, there were quite a few posts on the JAG site, before he shut it down referring to this addon. There are a few things you will have to change. The trick is, everything you need to look for ie. what telli said, will be in the include/* files that came with the blocks. In the JAG online case there are six files. This is the newest version, JAG Online v1.31 (6.5 ~ 7.1).



Back to top Reply with quote
#8   re: Urgent help needed- Site not creating new member.. :cry
Molly28
CZ Active Member
Molly28 has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Feb 10, 2004
0.01 posts per day
Posts: 102
Points: 5,310
   
ok i will try that.. also i am using the nsn your account . those that make any difference?
thanks for your help



Back to top Reply with quote
#9   re: Urgent help needed- Site not creating new member.. :cry
aUsTiN
CZ Active Member
aUsTiN has been a member for over 20 year's 20 Year Member
usa.gif georgia.gif
Age: 41
Gender: Male
Website:
Status: Offline
Joined: Sep 09, 2003
0.02 posts per day
Posts: 142
Points: 57
  MSN Messenger 
Yes it does make a difference. As telli said:



Originally posted by Telli @ Mon May 03, 2004 6:34 am:

Molly open the jag block and find everywhere it says $username with the dollar sign. Change thos to $user_name and it will work fine.


Just use the post on what i said to change & change what he said in those files.



Back to top Reply with quote
#10   re: Urgent help needed- Site not creating new member.. :cry
Molly28
CZ Active Member
Molly28 has been a member for over 20 year's 20 Year Member
Status: Offline
Joined: Feb 10, 2004
0.01 posts per day
Posts: 102
Points: 5,310
   
i found only the my_header_JAG_Online.php in the /includes file that have a few $username . i change all $user_name as Telli sayd. i even put my old your_acount files back to see if work and same problem..
the one that i am using is NSN_Your_Account_720_320 .
icon_cry.gif

also when i click in copyrigth sign on the Your_account page it gives an error message and the pop up thosen't show .



Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
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
You cannot attach files in this forum
You cannot download files in this forum