For people that has problem registering an account, navigate to:
Code:
sources\public\register.php
In Line 51, replace this line:
Code:
$insert_user_query = "INSERT INTO accounts (`name`, `password`, `sessionip`, `email`, `birthday`, `tempban`) VALUES ('".$validated_data['username']."', '".sha1($validated_data['password'])."', '".getRealIpAddr()."', '".$validated_data['email']."', '1990-01-01', '1990-01-01 10:01:24')";
It worked for me at least. The reason where why tempban was added is to avoid the latest mysql update, no zero allowed in all table. (Please correct me if I'm wrong.)