PHP Web Host - Quality Web Hosting For All PHP Applications $35/month $250/year (Unlimited) - $25/month - 200,000 impressions - Your Ad Could be Here - Click For Details
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.
Author Message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Fri Jan 04, 2008 11:17 am Reply with quote Back to top

I try to register as a new user for testing purposed and this comes up


Registration Error!

ERROR: Invalid Nickname



How can i fix this...i have used search function and not able to find answer like i was able to for other issues. Thanks for your help

Here is my site to see what is happening
Only registered users can see links on this board!
Get registered or login to the forums!
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Fri Jan 04, 2008 11:30 am Reply with quote Back to top

Only found a few threads with some info and none seem to help at the moment. Seems threads ended with no final result unless im just not getting it right. I'm not using any special characters and such.

Here is 1 thread
Only registered users can see links on this board!
Get registered or login to the forums!
View user's profile Send private message
Susann
Moderator


Joined: Dec 19, 2004
Posts: 3143
Location: Germany:Moderator German NukeSentinel Support

PostPosted: Fri Jan 04, 2008 12:00 pm Reply with quote Back to top

This is a thread with a final result:
Only registered users can see links on this board!
Get registered or login to the forums!


Maybe it helps. Did you changed the original your account files ?
View user's profile Send private message Visit poster's website
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Fri Jan 04, 2008 12:05 pm Reply with quote Back to top

I never changed any of Your_account file

Was i supposed to?
View user's profile Send private message
Susann
Moderator


Joined: Dec 19, 2004
Posts: 3143
Location: Germany:Moderator German NukeSentinel Support

PostPosted: Fri Jan 04, 2008 12:13 pm Reply with quote Back to top

No.
View user's profile Send private message Visit poster's website
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Fri Jan 04, 2008 12:14 pm Reply with quote Back to top

I just installed newest version Full Raven Nuke so not sure why this is coming up. Only other module that i have installed is Treasury and that's it.
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Fri Jan 04, 2008 12:22 pm Reply with quote Back to top

Susann wrote:
custard change $display_errors = FALSE to TRUE in your config.php and see if there is more information. Check also the tables nuke_users. Are there duplicate entries ? Does the nuke_users_ temp table exist in your database ?


This is what you had posted on the other site...

I looked in my database and i do have
nuke_users
nuke_users_temp

there are only 2 users on Nuke users. Myself and anonymous
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Fri Jan 04, 2008 4:50 pm Reply with quote Back to top

still cant figure it out....
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 6373
Location: Vsetin, Czech Republic

PostPosted: Sat Jan 05, 2008 7:01 am Reply with quote Back to top

You should not be having this problem.
Were all older files removed before uploading the latest version?
I only ask because there must be a conflict somewhere.
View user's profile Send private message Send e-mail Visit poster's website
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sat Jan 05, 2008 6:29 pm Reply with quote Back to top

What older files?
I installed the FULL NEWEST Version of Raven. I never had to Update since this was my 1st install of Raven.
View user's profile Send private message
Gremmie
Former Moderator in Good Standing


Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Sat Jan 05, 2008 6:36 pm Reply with quote Back to top

But did you do it over the top of another Nuke install?

Give us an example of a username that isn't working.
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sat Jan 05, 2008 7:23 pm Reply with quote Back to top

I never installed raven nuke until this week. this was my 1st time so i never installed it over another Nuke.

I tired different usernames. I tried ALAN, SILENTTOM etc... and put my correct email address. Stil nothing coming up. I had a friend try to register as well and same thing . INVALID Nickname for his as well.
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sat Jan 05, 2008 9:02 pm Reply with quote Back to top

I tried this

montego wrote:
All you need to do is this:

Code:

ALTER TABLE `nuke_users_temp` ADD `requestor` varchar(25) NOT NULL default '' AFTER `time`;



Well i did that and when i would try to register. Only Blank page would come up. So i pu the original index file back in its place and worked again but still saying Registration error, Invalid Nickname
View user's profile Send private message
Gremmie
Former Moderator in Good Standing


Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Sat Jan 05, 2008 10:27 pm Reply with quote Back to top

First of all, I would re-upload modules/Your_Account/index.php with a good FTP client like FileZilla.

If the problem persists, find this line of code in the above file:

Code:

    if ((!$username) || (empty($username)) || (ereg('[^a-zA-Z0-9_-]',$username))) $stop = '<center>'._ERRORINVNICK.'</center><br />';


Change it to this just so we can see what it thinks the $username is:

Code:

    if ((!$username) || (empty($username)) || (ereg('[^a-zA-Z0-9_-]',$username))) $stop = '<center>'._ERRORINVNICK .': ' . $username . '</center><br />';


Then try and register and report back what it says now.
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sat Jan 05, 2008 11:07 pm Reply with quote Back to top

Still says Same thing....Sad
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sun Jan 06, 2008 2:37 am Reply with quote Back to top

Gremmie wrote:


Code:

    if ((!$username) || (empty($username)) || (ereg('[^a-zA-Z0-9_-]',$username))) $stop = '<center>'._ERRORINVNICK .': ' . $username . '</center><br />';


Then try and register and report back what it says now.



is there a few to many spaces in this code or am i just trippin or does it even matter?
View user's profile Send private message
Gremmie
Former Moderator in Good Standing


Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Sun Jan 06, 2008 1:52 pm Reply with quote Back to top

Huh? Did you try it?
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sun Jan 06, 2008 7:08 pm Reply with quote Back to top

Yes i tried it...exactly how you wrote the code and same thing comes up....

INVALID NICKNAME
View user's profile Send private message
Gremmie
Former Moderator in Good Standing


Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Sun Jan 06, 2008 7:23 pm Reply with quote Back to top

But you didn't see the colon? At the very least I would expect:

INVALID NICKNAME:

(Note the trailing colon). Did you see that?

If so, that means somehow the $username is getting unset or cleared.

If you didn't see the colon, the wrong file is running/getting modified.
View user's profile Send private message
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Sun Jan 06, 2008 7:39 pm Reply with quote Back to top

We have a Colon...
Is that good?
this is what came up

ERROR: Invalid Nickname:
View user's profile Send private message
Gremmie
Former Moderator in Good Standing


Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Sun Jan 06, 2008 9:19 pm Reply with quote Back to top

Wow, you installed RavenNuke 2.10.01 and this is happening? I'm at a loss on this one.
View user's profile Send private message
montego
Site Admin


Joined: Aug 29, 2004
Posts: 9136
Location: Arizona

PostPosted: Mon Jan 07, 2008 6:06 am Reply with quote Back to top

Try this:

1. Re-download the package (I am trying to rule out a corrupt download and/or unpacking process)

2. Get yourself FileZilla from sourceforge.net (free and I've NEVER had an issue with it)

3. Use FileZilla to re-upload ALL your RavenNuke files per the instructions given.

I am thinking that we need to rule out a corrupted file somewhere.
View user's profile Send private message Visit poster's website
okatvrider
Hangin' Around


Joined: Jan 02, 2008
Posts: 43

PostPosted: Mon Jan 07, 2008 11:38 am Reply with quote Back to top

Ok so let me get this....

Delete my site and all databases that refer to the site...

Then re-install everything all over again?
View user's profile Send private message
Gremmie
Former Moderator in Good Standing


Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Mon Jan 07, 2008 12:22 pm Reply with quote Back to top

I would just delete the files and then re-upload them using FileZilla. Leave the database alone for now.
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 6373
Location: Vsetin, Czech Republic

PostPosted: Mon Jan 07, 2008 2:34 pm Reply with quote Back to top

If you get stuck email me and I'll try and slot you in tomorrow morning provided you are not hosting with Goddady
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.

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