TYPO3 Exception 1365429656
Note
Below, the TYPO3 community may have provided additional information or solutions for this exception. However, these may or may not apply to your particular case. If you can provide more information, you should come back here and add your experience and solution steps to this issue once you have resolved it.
General TYPO3 troubleshooting tips can be found in the Troubleshooting section in the menu. You can also ask questions and receive support in the TYPO3 Questions category on talk.typo3.org.
To add your experience, click "Edit on GitHub" above and follow the "Edit on GitHub" workflow. Also check out our tip on Coding Style and reST.
TYPO3 Fatal Error: Extension key "..." is NOT loaded!
TYPO3 >= 10 LTS
Starting with TYPO3 10 LTS the variable $_
isn't filled with the
extension key anymore. Solution: use the hardcoded extension key within
ext_tables.php and ext_
.
See this page for further details: best-practices-for-ext-tables-php-and-ext-localconf-php
However, notice that $_EXTKEY must be used in ext_emconf.php.
TYPO3 < 10 LTS
This error might come up, if you delete the files of a Extension from
the Extension Path (typo3conf/
), which is still activated in TYPO3.
At first you should check, if there is a typo in the name of the extension key.
To solve this error, follow these steps:
(Info: These steps will remove the installed extensions from the "loaded Extension list" and TYPO3 cache.)
1) remove the Extension from the loaded extension part in
typo3conf/
- [
2) remove either all files from typo3temp
-folder, or at least the files
in typo3temp/
named ext_
and
ext_
. In former versions of TYPO3 the folder name is
typo3temp/
.
The error should be gone by now and the extension is removed. Reinstall the extension if needed.
Additionally, this error might come up if you re-structure your TCA files to fit
into the new 6.2 structure. If you try to use $_
in the
Configuration/
files (for paths with
ext
), then $_
will be empty and thus TYPO3 looks for
the extension ' '. Solution is to replace $_
by the extension key of the
extension.
If you encounter this error during an upgrade to 6.2, you might check
your Local
for the right order of extensions in the
deprecated ext
. (e.g. EXT:
has to be included
before EXT:
.)