Bug #14753
closedFatal error after unpacking the "testsite" package
0%
Description
After unpacking the "testsite" package it's not possible to acces the install tool. All TYPO3 sites (FrontEnd BackEnd and Install tool) are only showing this error:
TYPO3 Fatal Error: Extension key "sv" was NOT loaded! (t3lib_extMgm::extPath)
reason seems to be that the localconf in this package contains a wrong value for "requiredExt"
$TYPO3_CONF_VARS['EXT']['requiredExt'] = 'cms,lang';
this is wrong -> the default value for this is "cms,lang,sv"
workaround: comment this line out in your localconf.php
(issue imported from #M1102)
Updated by joachim rinck over 19 years ago
this happens (not only for the testsite) as long as you have cms in requiredExt in localconf.php:
$TYPO3_CONF_VARS['EXT']['requiredExt'] = 'cms,lang';
changing this to:
$TYPO3_CONF_VARS['EXT']['requiredExt'] = 'lang';
works around the issue. don't know which side-effects that has though.
Updated by Rupert Germann over 19 years ago
I don't know, why "['requiredExt'] = 'lang';" worked for you > that's wrong! let's wait for the side-effects ;)
correct would be to remove the ['requiredExt'] line from localconf because its value is set from config_default.php
take a look at the localconf.php from the "quickstart" or "dummy" packages -> you won't find the ['requiredExt'] line
Updated by Fred Onis over 19 years ago
The aforementioned workarounds seem to work only for the zip version of the testsite package. After installation of the tar/gz versions of the testsite package and the TYPO3 source these workarounds have no effect.
Updated by old_username over 19 years ago
I can take any package and get that error. Your work around does not change anything. I always get the error discribed above. Could someone pls help me?
Updated by Frank Tillenkamp over 19 years ago
VERY IMPORTANT: You have to delete the Cache-File that is created in your typo3conf - directory BEFORE you REPROCESS the install-script. The name of the cache file is something like:
temp_CACHED_*****_ext_localconf.php
... should work then.
Updated by old_xiaoyanli about 19 years ago
following the suggestion to
a) comment out $TYPO3_CONF_VARS['EXT']['requiredExt'] = 'cms,lang';
and
b) delete the temp cached file
I get pass the error message. But now I get a blank page, view source of the brower, following is all I get in a firfox browser...
<html><body></body></html>
Any help is appreciated...
Updated by Michael Stucki about 19 years ago
Please re-check your change! I believe this must be an error in your localconf.php script.
Updated by Michael Stucki about 19 years ago
It looks correct.
I think there's something causing a PHP error but it's not displayed. Turn on display_errors in php.ini and check again.
BTW this is not a bug anymore. Please contact the mailing list if you need further help.
Since your script is correct, I will remove it now.
Updated by Andreas Zedler about 19 years ago
I had the same problem with PHP 5.0.5 and testsite-3.8.0.zip .
I have locked the line
$TYPO3_CONF_VARS['EXT']['requiredExt'] = 'cms,lang';
Then have deleted the files starting with temp_CACHED_
as described in the previous notes.
It works!