Page 32 of 35

Re: Video#5

Posted: Fri Jun 24, 2011 6:16 pm
by hallsofvallhalla
did you create a new player? Your password has been cut to 12 and when you extended it to 32 the old one stayed 12. You need to create a new player now.

Re: Video#5

Posted: Fri Jun 24, 2011 6:30 pm
by 62896dude
Yeah, delete your old account and make a new one with the same information

Re: Video#5

Posted: Fri Jun 24, 2011 7:31 pm
by ConceptDestiny
62896dude wrote:Yeah, delete your old account and make a new one with the same information
Yeah, sorry I never elaborated Nexus. :)

Re: Video#5

Posted: Fri Jun 24, 2011 7:38 pm
by Nexus
I cleared all of my database and still the same problem occurs. Maybe I should make the password size a bit bigger? Or maybe choose a different kind of encryption if there is one or use none at all.

Re: Video#5

Posted: Fri Jun 24, 2011 9:04 pm
by ConceptDestiny
show us your user db table now?

Re: Video#5

Posted: Sat Jun 25, 2011 1:25 am
by Nexus
Structure Overview

Image



Players entered in the db

Image

Re: Video#5

Posted: Sat Jun 25, 2011 9:07 am
by ConceptDestiny
$result2 = mysql_num_rows($result);

should be

$result2 = mysql_fetch_array($result);

Remember, mysql_fetch_array is used to grab specific data, while mysql_num_rows is used to count the results (i.e. if the result is > 0). Hope this makes sense. :)

Re: Video#5

Posted: Sat Jun 25, 2011 1:13 pm
by Nexus
change it but it still isn't working :(

Re: Video#5

Posted: Sat Jun 25, 2011 2:02 pm
by hallsofvallhalla
take a authenticate.php from later source in the videos and use it. You have changed too many things and it seems to me like a miss placed } You could just take the last source and use its authenticate and it will probably work.

Re: Video#5

Posted: Sat Jun 25, 2011 2:29 pm
by Nexus
Yeah that works, I just hate having to use your source halls even thought thats what its there for. I like the idea of making my own coding and the gratification when it works but yeah I will only use your source as a last resort. :)