tttpapi
tttpapi

Reputation: 887

TYPO3 smooth migration causes fatal error

I have TYPO3 version 4.7.3-dev. I want to upgrade to version 6.2 LTS and I found a migration checking tool Smooth migration. When I want to show the results I get an error:

Fatal error: Call to a member function getResultAnalyzer() on a non-object in \typo3conf\ext\smoothmigration\Classes\ViewHelpers\ResultAnalyzerViewHelper.php on line 47

Is there any other way to show the results except searching in database?

Upvotes: 1

Views: 409

Answers (2)

lorenz
lorenz

Reputation: 4558

The Smooth Migration extension and the Install Tool don't cover the same areas of a migration. The Smooth Migration gives you hints about code in extensions that will fail in new TYPO3 versions, e.g. require statements to TYPO3 core files that have a new location, Fluid ViewHelpers that were removed and functions that were deprecated or removed. This helps you to fix the code of your extensions. This is especially useful if you have custom extensions or old extensions that are not maintained anymore and helps you to upgrade on your own. If EXT:smoothmigration doesn't work, clear all the caches (also typo3temp/Cache) and try again.

The Install Tool guides your through the core updating process. I suggest to disable all non-core extensions (in PackageStates.php --> set active to inactive after this file has been generated) so you can first have the core functions running again. Then, re-install and upgrade if necessary the extensions piece by piece and get all the functionality back.

Upvotes: 0

René Höhle
René Höhle

Reputation: 27305

Hmm i think you should take another way. Its easier to link the new Typo3 Sources and go to the installation Tool. There you have the upgrade Wizard. During the Update you get a lot of informations how to check extensions and make the upgrade to 6.2.

Most times its easier to get that way. The installer will first check all your extensions and disable unsupported and incompatible extensions. After that he check the complete folder structure and after all checks the upgrade starts.

Upvotes: 1

Related Questions