Hello! I’m using WebLoginPE for web registration and profiles, and WebLogin for logging in. I also installed the SMF forum and the SMF bridge. But the newly registered users do not appear in the SMF forum - I need to call the syncronize users method. Should I use the WebLogin instead of WebLoginPE for fixing this problem?
Thank you
I think that bridge only works with weblogin instead of webloginPE, you are not in the right forum for this issue, better to ask this in webloginPE forums, this way you might get response.
-
☆ A M B ☆
- 1,056 Posts
That is correct. There are multiple (two that I can think of) threads in that sub-forum that discuss solutions for SMF and WebloginPE.
Alright then i just move this topic to WebloginPE so DR.Scotty could take care of it there.
Thank you guys! But I solved the problem myself - the problen is, that webloginpe doesn’t send the complete information in
OnWebSaveUser authentication. So I just replaced the code in weblogin.class.php
$this->OnWebSaveUser(’new’, $NewUser);
by the code (similar to the WebLogin snippet)
$modx->invokeEvent("OnWebSaveUser",
array(
"mode" => "new",
"userid" => $key,
"username" => $username,
"userpassword" => $password,
"useremail" => $email,
"userfullname" => $fullname
));
And now the registration with WebloginPE works fine.
Well Done laoboss, are you interested to share the steps in the wiki?, so it wont get lost here by the time.
password of modx account differs from password of forum account.
I cannot be authorized at a forum.
What do i wrong?
Thanks
Hello,
Can someone describe the steps of resolving this issue?
Thanks.