Bug #5687
Error in mailer engine invocation
| Status: | Resolved | Start date: | 2009-12-09 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | Bug | Spent time: | - | |
| Target version: | 2.6.6 | |||
| Votes: | 0 |
Description
When invoking the mailer engine via cron. I get the following error:
Fatal error: Class 't3lib_parseHTML' not found in /[path]/typo3conf/ext/direct_mail/res/scripts/class.dmailer.php on line 249
After changing the line 249 in class.dmailer.php from:
return t3lib_parseHTML::substituteMarkerArray($content, $markers);
to:
return t3lib_parsehtml::substituteMarkerArray($content, $markers);
it worked.
Associated revisions
fix bug 5329: The inError property has been missing in the data object
fix bug 5687: setfixed could not be turned off
- bug #5687(f): copied substituteMarkerArray from t3lib_parsehtml for T3 < 4.2.x
- bug #5687(f): copied substituteMarkerArray from t3lib_parsehtml for T3 < 4.2.x
History
Updated by Roland Behme over 3 years ago
correction: the above patch did not fix anything. The real error was, that the installation is still using TYPO3 4.1.13, which does not have the method t3lib_parseHTML::substituteMarkerArray at all.
Maybe you should find another way to implement this feature or at least set the minimum requirement to TYPO3 4.2
Updated by Ivan Dharma Kartolo over 3 years ago
- Target version set to 2.6.6
the method exists with 4.2.x. I try to find a workaround for this.
Updated by Ivan Dharma Kartolo over 3 years ago
- Status changed from New to Needs Feedback
please get the latest from SVN and check if it works for you.
Updated by Ivan Dharma Kartolo about 3 years ago
- Status changed from Needs Feedback to Resolved
Fixed in svn