Bug #9302
Fatal error at import of CHC_Forum
| Status: | Resolved | Start date: | 2010-08-15 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | Peter Schuster | % Done: | 100% |
|
| Category: | Backend Module | |||
| Target version: | 1.9.2 | |||
| Votes: | 0 |
Description
I get a fatal error with V1.9.1 when importing from a local CHC_Forum in T3 4.4:
Fatal error: Class 'tx_mmforum_chcimport' not found in /***/typo3_src-4.4.2/t3lib/class.t3lib_div.php on line 5239
Associated revisions
[#BUGFIX] Fatal error at import (fixes #9302, thanks to Jan Bartels)
[#BUGFIX] Fatal error at import (fixes #9302, thanks to Jan Bartels)
git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/mm_forum/branches/1.9.x@36781 735d13b6-9817-0410-8766-e36946ffe9aa
[#BUGFIX] Fatal error at import (fixes #9302, thanks to Jan Bartels)
git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/mm_forum/trunk@36781 735d13b6-9817-0410-8766-e36946ffe9aa
History
Updated by Jan Bartels almost 3 years ago
Got the import running. I've added a require_once in function main of class.tx_mmforum_import.php:
class.tx_mmforum_import.php:
class tx_mmforum_import {
...
function main($content) {
require_once($BACK_PATH.'class.tx_mmforum_chcimport.php'); // new!
$this->importData = t3lib_div::_GP('tx_mmforum_import');
I suppose that the phpbb-import has the same issue (and the same solution).
Updated by Peter Schuster almost 3 years ago
- Status changed from New to Accepted
- Assignee set to Peter Schuster
- Target version set to 1.9.2
Updated by Peter Schuster almost 3 years ago
- Status changed from Accepted to Resolved
- % Done changed from 0 to 100
Applied in changeset r36781.
Updated by Martin Helmich almost 3 years ago
By the way: The CHC import was completely rewritten for the new mm_forum import module, that can be installed as a seperate extension (extension key: mm_forum_import) as of TYPO3 version 4.3.
The built-in import module will be disabled in future versions.