Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Empty records with tt_address 3.1.1 #9

Closed
msollmann opened this issue Nov 9, 2016 · 4 comments
Closed

Empty records with tt_address 3.1.1 #9

msollmann opened this issue Nov 9, 2016 · 4 comments

Comments

@msollmann
Copy link

Ext:direct_mail_subscription creates empty records when using together with Ext:tt_address 3.1.1, since tt_address does not set the deprecated feInterface.fe_admin_fieldList anymore. This results in an empty (or shortened) fieldList in direct_mail_subscription/fe_adminLib.inc, line 185: $this->fieldList = implode(',', GeneralUtility::trimExplode(',', $GLOBALS['TCA'][$this->theTable]['feInterface']['fe_admin_fieldList'], 1));

@Queron81
Copy link

I have a similar problem. Direct Mail Subscription is not working with tt_address >= 3.1.x . When you want to subscribe, you get this error:

address in mailbox given [] does not comply with rfc 2822 3.6.2

Subscription is saved in the tt_address table, but without the email address. Installing tt_address 3.0.3 again solves this problems.

@msollmann
Copy link
Author

It's the same problem. It results in the cited error.

@tastendruecker
Copy link

tt_address doesn't provide $GLOBALS['TCA']['tt_address']['feInterface']['fe_admin_fieldList'] any longer.
Please add email to the fieldlist in Configuration/TCA/Overrides/tt_address.php in line 6. Like so:
$GLOBALS['TCA']['tt_address']['feInterface']['fe_admin_fieldList'] .= ',name,email';

@KiddsOrange
Copy link

Do the same with the field "hidden", like:
$GLOBALS['TCA']['tt_address']['feInterface']['fe_admin_fieldList'] .= ',name,email,hidden';
Otherwise the user's address is active directly after registration, without confirmation.

cedricziel added a commit to cedricziel/direct_mail_subscription-1 that referenced this issue Dec 6, 2016
cedricziel added a commit to cedricziel/direct_mail_subscription-1 that referenced this issue Dec 6, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants