PDA

View Full Version : This is embarrassing...


Tequila
04-16-2011, 12:57 PM
I managed to log off my account to test something new on Crystal Hollow (making sure that the logged out version of the layout looks the same) and now I can't log back in.

That's okay because we have the reset password feature, but that's where the problem is:
Fatal error: Call to undefined function get_rand_id() in /home/sessions/public_html/crystalhollow.com/forgotpass.php on line 100
Line 100 is:
$rand = get_rand_id(10); //Get a random letter-number combination
It comes up after I submit the form and it does not log anything in the database.

I also haven't had any e-mails show up in the account provided.

And I'm using 1.2 so it's current.

Any ideas?

Hall of Famer
04-16-2011, 02:52 PM
Looks like the function get_rand_id is missing after Arianna updated script files(similar problems occurred with bbcodes before, which we already fixed). To resolve this glitch, open your forgetpass.php and add this line right below the include function.php code:


include("inc/rand.php");