Bug #37093
Error HTTP 500 (Internal Server Error)
| Status: | Resolved | Start date: | 2012-05-11 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | Kai Vogel | % Done: | 100% |
|
| Category: | General | |||
| Target version: | - | |||
| Votes: | 1 (View) |
Description
Im using typo3 4.7.0 and sp_bettercontact 2.5.0
When user click the send button and everything is validated i get an Error HTTP 500 (Internal Server Error) error.
History
Updated by Anja Leichsenring about 1 year ago
- Assignee deleted (
Anja Leichsenring)
Updated by Peter Wechtersbach about 1 year ago
- Assignee set to Kai Vogel
Updated by Peter Wechtersbach about 1 year ago
But the post get written in the log...
Updated by Peter Wechtersbach about 1 year ago
i have gone true code and if i comment from the line 366 in sp_bettercontact\pi1\class.tx_spbettercontact_pi1_email.php it start working, but afcourse no emails send.
Looks like calling t3lib_div::makeInstance('t3lib_htmlmail'); produces Error HTTP 500... what could that be, nothing in the logs etc...
Updated by Peter Wechtersbach about 1 year ago
- Assignee deleted (
Kai Vogel) - % Done changed from 0 to 100
The problem is that in typo3 config in version 4.7 is missing $GLOBALS['TYPO3_CONF_VARS']['MAIL']['substituteOldMailAPI'], so this can never be set and then it always tries to send it through t3lib_htmlmail instead of t3lib_mail_Message
Updated by Nariman Ramazanov about 1 year ago
- Assignee set to Peter Wechtersbach
I need to add a line localconf
$ GLOBALS ['TYPO3_CONF_VARS'] ['MAIL'] ['substituteOldMailAPI'] = 1
To solve this problem?