[SOLVED]Final Message not loading after success verification in Selfregistration
- kerryshamblin
- Forum Members
- Posts: 87
- Joined: Wed Apr 14, 2010 5:21 pm
[SOLVED]Final Message not loading after success verification in Selfregistration
Thanks in advance for reading this.
I am running CMSMS 1.8.1.
I have installed:
Frontendusers 1.12
SelfRegistration 1.6.1
In the Registration Settings of the SelfRegistration module, I have selected "Require the user to confirm registration via email" and both of these fields are empty:
PageID/Alias to redirect to after registration is complete
PageID/Alias to redirect to after verification step is complete
The new user receives the verification email, the links work to take someone to the verification page, and the verification process works in that the new user is pushed into FEU. There are a few problems:
1. Upon submitting the verification, the page reloads (minus the password) and the Final Message is not displayed.
2. Although SelfRegistration pushes the user into FEU, the new user is still listed in the SelfRegistration User list, and has to be manually pushed from that list in order to remove them from SelfRegistration.
I've searched the forums, but haven't found anyone with this specific problem.
I am running CMSMS 1.8.1.
I have installed:
Frontendusers 1.12
SelfRegistration 1.6.1
In the Registration Settings of the SelfRegistration module, I have selected "Require the user to confirm registration via email" and both of these fields are empty:
PageID/Alias to redirect to after registration is complete
PageID/Alias to redirect to after verification step is complete
The new user receives the verification email, the links work to take someone to the verification page, and the verification process works in that the new user is pushed into FEU. There are a few problems:
1. Upon submitting the verification, the page reloads (minus the password) and the Final Message is not displayed.
2. Although SelfRegistration pushes the user into FEU, the new user is still listed in the SelfRegistration User list, and has to be manually pushed from that list in order to remove them from SelfRegistration.
I've searched the forums, but haven't found anyone with this specific problem.
Last edited by kerryshamblin on Tue Aug 31, 2010 12:09 pm, edited 1 time in total.
Re: Final Message not loading after successful verification in Selfregistration
Hi,
Make sure above the page alias/ID the boxed is checked that says Don't display the final message after registration:
pb4sc
Make sure above the page alias/ID the boxed is checked that says Don't display the final message after registration:
pb4sc
Re: Final Message not loading after successful verification in Selfregistration
I've the same problem as Kerry !
CMSMS 1.8.1
SelfRegistration 1.6.1
Pierre
CMSMS 1.8.1
SelfRegistration 1.6.1
Pierre
- kerryshamblin
- Forum Members
- Posts: 87
- Joined: Wed Apr 14, 2010 5:21 pm
Re: Final Message not loading after successful verification in Selfregistration
Thanks for the suggestion, pb4sc, however, I *want* the final message displayed. And, if I check that box (without filling in the page redirect boxes) then the user fills out the self reg form, clicks "submit" and then goes nowhere, even though they still receive a verification email.
I'm still having the same problem. I need the user to see the Final Message after they complete the verification step, rather than staying on the verification page. I also need the user to exit the "SelfRegistration Users" once they are pushed into FEU.
Thanks!
I'm still having the same problem. I need the user to see the Final Message after they complete the verification step, rather than staying on the verification page. I also need the user to exit the "SelfRegistration Users" once they are pushed into FEU.
Thanks!
Re: Final Message not loading after successful verification in Selfregistration
We're having exactly the same issue - running 1.6.1.
Does any one have a resolution to this?
Does any one have a resolution to this?
Re: Final Message not loading after successful verification in Selfregistration
Try this edit action.verifyuser.php - around line 141 - currently reads:
if( $result != 0 )
edit to:
if( $result[0] != 0 )
if( $result != 0 )
edit to:
if( $result[0] != 0 )
- kerryshamblin
- Forum Members
- Posts: 87
- Joined: Wed Apr 14, 2010 5:21 pm
Re: Final Message not loading after successful verification in Selfregistration
Thanks for the suggestion, but that still doesn't work to show the message from the SelfReg "Final Message Template" after the user completes the verification step. The verification step pushes the user into FEU, but doesn't remove them from SelfReg. Also, upon completing verification, the user gets a reloaded verification page, prompting for the password they just entered, rather than the message from the "Final Message Template."
-
- Forum Members
- Posts: 103
- Joined: Fri Nov 28, 2008 11:26 am
Re: Final Message not loading after successful verification in Selfregistration
Same problem here!!
CMSMS 1.8.2
CGExtensions 1.19.2
CMSMailer 2.0
FEU 1.12
SReg 1.6.1
It's annoying – it registers the user upon hitting submit, but the final message simply isn't shown, no matter what I try. I have even gone as far as reinstalling the whole system for this!!
At the moment im building the forum using the option of not having to have email verification, but it's not what I really want to be honest.
Someone please help us!
Thanks!
CMSMS 1.8.2
CGExtensions 1.19.2
CMSMailer 2.0
FEU 1.12
SReg 1.6.1
It's annoying – it registers the user upon hitting submit, but the final message simply isn't shown, no matter what I try. I have even gone as far as reinstalling the whole system for this!!
At the moment im building the forum using the option of not having to have email verification, but it's not what I really want to be honest.
Someone please help us!
Thanks!
-
- Forum Members
- Posts: 103
- Joined: Fri Nov 28, 2008 11:26 am
Re: Final Message not loading after successful verification in Selfregistration
I found an answer on the bug tracking page from a user called Vasco... http://dev.cmsmadesimple.org/bug/view/5325
Go to: ../modules/SelfRegistration/action.verifyuser.php
and then on line 138 change:
to
and then change all your settings back to 'verify by email' etc. And refresh the browser on your registration page. And voila, the final message showed for me.
Also, it strangely seems to solve the other problem of auto pushing to FEU too. I sincerely hope this helps you guys too, this bothered me for a couple of days last week!
Karl.
Go to: ../modules/SelfRegistration/action.verifyuser.php
and then on line 138 change:
Code: Select all
if( $result != 0 )
Code: Select all
if( $result[0] != TRUE )
Also, it strangely seems to solve the other problem of auto pushing to FEU too. I sincerely hope this helps you guys too, this bothered me for a couple of days last week!
Karl.
- kerryshamblin
- Forum Members
- Posts: 87
- Joined: Wed Apr 14, 2010 5:21 pm
Re: Final Message not loading after successful verification in Selfregistration
Thanks, Karl! The solution worked for me. It's been annoying me for far longer than a few days and has been one of the details holding me back from launching a site. Now on to CompanyDirectory problems...
Re: [SOLVED]Final Message not loading after success verification in Selfregistration
Oh, thank you very much!! It works now!!
Sorry if its double, but can somebody help me in other question with this module: I want it e-mail me not only notification about new user but also all information about user in e-mail message. How can I solve it?
Sorry if its double, but can somebody help me in other question with this module: I want it e-mail me not only notification about new user but also all information about user in e-mail message. How can I solve it?