Jump to content
  • 0

FluxCP Registration Problems


petra077

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  05/18/20
  • Last Seen:  

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

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   12
  • Joined:  09/14/21
  • Last Seen:  

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

×
×
  • Create New...