Reputation: 171
I have an extension for TYPO3 that don't work any more after Updating the TYPO3 Version to 6.2. The log said that he don't find the PATH_t3lib.'class.t3lib_svbase.php'
. After some research I find out that the PATH_t3lib Variable don't exist any more in TYPO3 6.2.
Now I have the line require_once(PATH_t3lib.'class.t3lib_svbase.php');
that returned the error. Is there a possibility that I can simple change the require_once with the new path to the file (where ever it is) or a different simple way to solve the problem?
Upvotes: 0
Views: 822
Reputation: 11
you should take a look at the smooth migration extension. It was made to be installed on any TYPO3 4.5 system and check before the actual upgrade is done, for any issues that might cause the upgrade to crash. The Extension will deliver a detailed report for all issues found, so you can process it with your codebase in order to get a smooth upgrade.
I hope it is still possible for you to run this extension on an instance with your extension in question installed, so it can generate the report for you. It will save you a lot of time and nerves, if you follow this hint. Find the extension via the Extension Manager in any 4.5 Instance or via http://typo3.org/extensions/repository/view/smoothmigration
Upvotes: 1