Jump to content
  • 0
petra077

FluxCP Registration Problems

Question

I already install Flux CP all looks fine and then when I tried to Register something like this happened.

Uh Oh what happened ?

 

Capture.PNG

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

It appears that the database query handling the account registration did not return any results.

Check the "./modules/account/create.php" file:

// Woohoo! Register ;)
$result = $server->loginServer->register($username, $password, $confirm, $email, $email2, $gender, $birthdate, $code);

if ($result) {
...
}
else {
exit('Uh oh, what happened?');
}

Check the database "login" Table. Do you see the newly registered account?

Make sure the FluxCP software has access to the database "login" Table, and that the associated MySQL user holds the appropriate privileges.

Edited by WooZy
Improved code snippet
  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.