Hi,
If you change the login et signup addresses, the buttons "Start a discussion" and "Log in to reply" are working properly and open the new entered URLs. But if you hide the "Sign up" and "Log in" buttons, those links open then the regular Flarum Log In popup, and not the entered URLs. The work-around solution I found is to hide the "Sign up" and "Log in" buttons in CSS (display:none), not through the admin panel. Is there something I am missing or is that a bug I found?
Also, I'm using the php plugin and would like to be able to log in to Flarum without entering a password. Is that possible?
Instead of doing this:
$flarum_user = new User($username, $flarum);
$flarum_user->attributes->password = $password;
$success = $flarum_user->login();
Simply doing this:
$flarum_user = new User($username, $flarum);
$success = $flarum_user->login();
Indeed, I want to be able to log in to Flarum at any time, not only during my website log in process. But once the user is already logged in to my website, I don't have access to the user password anymore since it is encrypted.
Thanks a lot!