I had some issues with the mysql installation. I found one problem with deleteUser().
The statement: list(user_id) = $this->next($result); needs to be changed to: list(user_id) = $this->fetch('array');
The other problem was the login didn't transfer the username/password properly.
I added: $requestedUsername = $username; $requestedPassword = $password;
You could just change the login.html.php to requestedUsername/requestedPassword I suppose.
Cheers
Log in to post a comment.
I had some issues with the mysql installation. I found one problem with deleteUser().
The statement: list(user_id) = $this->next($result);
needs to be changed to: list(user_id) = $this->fetch('array');
The other problem was the login didn't transfer the username/password properly.
I added:
$requestedUsername = $username;
$requestedPassword = $password;
You could just change the login.html.php to requestedUsername/requestedPassword I suppose.
Cheers