Automatic confirmation of a registration prone to fail #1224
Replies: 2 comments
-
Thanks for your message. I checked the scenario carefully but do not really see a problem with the redirect for the automatic confirmation.
Changing from a redirect to a forward ( Since I'm not really convinced about the advantage of using a forward in this place, I will keep things as they are and continue to use a redirect (at least for the event registration). |
Beta Was this translation helpful? Give feedback.
-
Thanks for your response and I totally understand your decision but I'm seeing this a little different.
Of course you can always argue to fix the causes for errors or errors are outside of your control which you're absolutely right about. The registration is fine and works in most cases as intended but the process could be more robust. That's all I'm saying. |
Beta Was this translation helpful? Give feedback.
-
Extension version
5.9.2
Short problem description
The automatic confirmation is done through a redirect to the appropriate action. If a user cancels the redirect (for example the redirect takes some time and the browser window is closed meanwhile or another link is clicked) or a error happens after the redirect but before the action could be called, the registration will stay unconfirmed. As no mails are sent in this case the registration might not get noticed by anybody and perish.
Steps to reproduce
Expected behaviour
A registration with automatic confirmation should be confirmed in every case.
Actual behaviour
A registration with automatic confirmation is not confirmed in every case.
Server configuration
TYPO3 version: 10.4
PHP version: 7.4
I propose to use a forward() instead of a redirect() to trigger the automatic confirmation.
Beta Was this translation helpful? Give feedback.
All reactions