![]() |
| | LinkBack | Themen-Optionen | Thema durchsuchen | Thema bewerten | Ansicht |
|
#1
| |||
| |||
Hallo zusammen! Bin neu hier und müsste schwere hilfe haben Während eines Online-Update vom htmlarea editor, hatt mein PC einen auf Bluescreen gemacht und muste neugestartet werden. Jetzt komme ich nich mehr ins backend rein!!!! Scheissssee!!! ![]() Und es wird nur noch dem im IE angezeigt: Warning: main(/home/www/web/html/typo3conf/ext/rtehtmlarea/ext_emconf.php:sad: failed to open stream: No such file or directory in /home/www/web/html/typo3conf/temp_CACHED_ps90d4_ext_localconf.php on line 324 Fatal error: main(:sad: Failed opening required '/home/www/web/html/typo3conf/ext/rtehtmlarea/ext_emconf.php' (include_path='.') in /home/www/web/html/typo3conf/temp_CACHED_ps90d4_ext_localconf.php on line 324 Ich erlaube mir mir die beiden betroffenen dateien zu posten: ---ext_localconf.php--- * Configuration of the htmlArea RTE extension * * @author Stanislas Rolland <stanislas.rolland(arobas)fructifor.ca> * * $Id: ext_localconf.php,v 1.4 2006/05/08 17:52:57 stanrolland Exp $ * */ if (!defined ("TYPO3_MODE")) die ('Access denied.'); if(!$TYPO3_CONF_VARS['BE']['RTEenabled']) $TYPO3_CONF_VARS['BE']['RTEenabled'] = 1; // Registering the RTE object $TYPO3_CONF_VARS['BE']['RTE_reg'][$_EXTKEY] = array('objRef' => 'EXT:'.$_EXTKEY.'/class.tx_rtehtmlarea_base.php:&tx_rtehtmlarea_base'); // Make the extension version number available to the extension scripts require_once(t3lib_extMgm::extPath($_EXTKEY) . 'ext_emconf.php'); $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['version'] = $EM_CONF[$_EXTKEY]['version']; $_EXTCONF = unserialize($_EXTCONF); // unserializing the configuration so we can use it here: if (strstr($_EXTCONF['defaultConfiguration'],'Minimal')) { $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['defaultConfiguration'] = 'Advanced'; } elseif (strstr($_EXTCONF['defaultConfiguration'],'Demo')) { $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['defaultConfiguration'] = 'Demo'; } else { $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['defaultConfiguration'] = 'Typical'; } $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableImages'] = $_EXTCONF['enableImages'] ? $_EXTCONF['enableImages'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableDAMBrowser'] = $_EXTCONF['enableDAMBrowser'] ? $_EXTCONF['enableDAMBrowser'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableAccessibilityIcons'] = $_EXTCONF['enableAccessibilityIcons'] ? $_EXTCONF['enableAccessibilityIcons'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableClickEnlarge'] = $_EXTCONF['enableClickEnlarge'] ? $_EXTCONF['enableClickEnlarge'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableMozillaExtension'] = $_EXTCONF['enableMozillaExtension'] ? $_EXTCONF['enableMozillaExtension'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['mozAllowClipboardUrl'] = $_EXTCONF['mozAllowClipboardUrl'] ? $_EXTCONF['mozAllowClipboardUrl'] : 'http://releases.mozilla.org/pub/mozilla.org/extensions/allowclipboard_helper/allowclipboard_helper-0.5.3-fx+mz.xpi'; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['forceCommandMode'] = $_EXTCONF["forceCommandMode"] ? $_EXTCONF["forceCommandMode"] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableDebugMode'] = $_EXTCONF['enableDebugMode'] ? $_EXTCONF['enableDebugMode'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableCompressedScripts'] = $_EXTCONF['enableCompressedScripts'] ? $_EXTCONF['enableCompressedScripts'] : 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['dictionaryList'] = $_EXTCONF["dictionaryList"] ? $_EXTCONF["dictionaryList"] : 'en'; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['defaultDictionary'] = $_EXTCONF["defaultDictionary"] ? $_EXTCONF["defaultDictionary"] : 'en'; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['AspellDirectory'] = $_EXTCONF["AspellDirectory"] ? $_EXTCONF["AspellDirectory"] : '/usr/bin/aspell'; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['noSpellCheckLanguages'] = $_EXTCONF["noSpellCheckLanguages"] ? $_EXTCONF["noSpellCheckLanguages"] : 'ja,km,ko,lo,th,zh,b5,gb'; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['HTMLAreaPluginList'] = $_EXTCONF["HTMLAreaPluginList"] ? $_EXTCONF["HTMLAreaPluginList"] : 'TableOperations,SpellChecker,ContextMenu,SelectColor,TYPO3Browsers,InsertSmiley,FindR eplace,RemoveFormat,CharacterMap,QuickTag,InlineCSS,DynamicCSS,UserElements,TYPO3HtmlP arser'; if ($_EXTCONF['plainImageMaxWidth']) $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['plainImageMaxWidth'] = intval($_EXTCONF['plainImageMaxWidth']); if ($_EXTCONF['plainImageMaxHeight']) $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['plainImageMaxHeight'] = intval($_EXTCONF['plainImageMaxHeight']); //$TYPO3_CONF_VARS['EXTCONF']['rtehtmlarea']['safari_test'] = 0; $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableInOpera9'] = $_EXTCONF['enableInOpera9'] ? $_EXTCONF['enableInOpera9'] : 0; // Add default RTE transformation configuration t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:' . $_EXTKEY . '/res/proc/pageTSConfig.txt">'); // Add default Page TSonfig RTE configuration t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:' . $_EXTKEY . '/res/' . strtolower($TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['defaultConfiguration']) . '/pageTSConfig.txt">'); // Add default Page TSonfig RTE configuration for enabling images with the Minimal and Typical default configuration if ($TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableImages']) { t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:' . $_EXTKEY . '/res/image/pageTSConfig.txt">'); } // Add default Page TSonfig RTE configuration for enabling links accessibility icons if ($TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableAccessibilityIcons']) { t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:' . $_EXTKEY . '/res/accessibilityicons/pageTSConfig.txt">'); } // Register DAM element browser rendering if (t3lib_extMgm::isLoaded('dam') && $TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableDAMBrowser']) { $TYPO3_CONF_VARS['SC_OPTIONS']['typo3/browse_links.php']['browserRendering'][] = 'EXT:'.$_EXTKEY.'/mod4/class.tx_rtehtmlarea_dam_browse_media.php:&tx_rtehtmlarea_dam_browse_media'; } // Add default Page TSonfig RTE configuration for enabling the Click-enlarge feature if ($TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableClickEnlarge']) { t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:' . $_EXTKEY . '/res/clickenlarge/pageTSConfig.txt">'); } // Add default User TSonfig RTE configuration t3lib_extMgm::addUserTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:' . $_EXTKEY . '/res/' . strtolower($TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['defaultConfiguration']) . 'userTSConfig.txt">'); // Configure Lorem Ipsum hook to insert nonsense in wysiwyg mode if (t3lib_extMgm::isLoaded('lorem_ipsum') && (TYPO3_MODE == 'BE')) { $TYPO3_CONF_VARS['EXTCONF']['lorem_ipsum']['RTE_insert'][] = 'tx_rtehtmlarea_base->loremIpsumInsert'; } ?> und ---temp_CACHED_ps90d4_ext_localconf.php--- <?php $TYPO3_LOADED_EXT = unserialize(stripslashes('a:51:{s:3:\"cms\";a:7:{s:4:\"type\";s:1:\"S\";s:11:\"siteRel Path\";s:17:\"typo3/sysext/cms/\";s:12:\"typo3RelPath\";s:11:\"sysext/cms/\";s:17:\"ext_localconf.php\";s:56:\"/home/www/web275/html/typo3/sysext/cms/ext_localconf.php\";s:14:\"ext_tables.php\";s:53:\"/home/www/web275/html/typo3/sysext/cms/ext_tables.php\";s:14:\"ext_tables.sql\";s:53:\"/home/www/web275/html/typo3/sysext/cms/ext_tables.sql\";s:25:\"ext_tables_static+adt.sql\";s:64:\"/home/www/web275/html/typo3/sysext/cms/ext_tables_static+adt.sql\";}s:4:\"lang\";a:3:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPa th\";s:18:\"typo3/sysext/lang/\";s:12:\"typo3RelPath\";s:12:\"sysext/lang/\";}s:2:\"sv\";a:5:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s:16:\"typo3/sysext/sv/\";s:12:\"typo3RelPath\";s:10:\"sysext/sv/\";s:17:\"ext_localconf.php\";s:55:\"/home/www/web275/html/typo3/sysext/sv/ext_localconf.php\";s:14:\"ext_tables.php\";s:52:\"/home/www/web275/html/typo3/sysext/sv/ext_tables.php\";}s:18:\"css_styled_content\";a:5:{s:4:\"type\";s:1:\"S\";s:11:\"siteR elPath\";s:32:\"typo3/sysext/css_styled_content/\";s:12:\"typo3RelPath\";s:26:\"sysext/css_styled_content/\";s:17:\"ext_localconf.php\";s:71:\"/home/www/web275/html/typo3/sysext/css_styled_content/ext_localconf.php\";s:14:\"ext_tables.php\";s:68:\"/home/www/web275/html/typo3/sysext/css_styled_content/ext_tables.php\";}s:13:\"tsconfig_help\";a:5:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPat h\";s:27:\"typo3/sysext/tsconfig_help/\";s:12:\"typo3RelPath\";s:21:\"sysext/tsconfig_help/\";s:14:\"ext_tables.sql\";s:63:\"/home/www/web275/html/typo3/sysext/tsconfig_help/ext_tables.sql\";s:25:\"ext_tables_static+adt.sql\";s:74:\"/home/www/web275/html/typo3/sysext/tsconfig_help/ext_tables_static+adt.sql\";}s:12:\"context_help\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\" siteRelPath\";s:26:\"typo3/sysext/context_help/\";s:12:\"typo3RelPath\";s:20:\"sysext/context_help/\";s:14:\"ext_tables.php\";s:62:\"/home/www/web275/html/typo3/sysext/context_help/ext_tables.php\";}s:21:\"extra_page_cm_options\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"si teRelPath\";s:35:\"typo3/sysext/extra_page_cm_options/\";s:12:\"typo3RelPath\";s:29:\"sysext/extra_page_cm_options/\";s:14:\"ext_tables.php\";s:71:\"/home/www/web275/html/typo3/sysext/extra_page_cm_options/ext_tables.php\";}s:6:\"impexp\";a:5:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s:20 :\"typo3/sysext/impexp/\";s:12:\"typo3RelPath\";s:14:\"sysext/impexp/\";s:14:\"ext_tables.php\";s:56:\"/home/www/web275/html/typo3/sysext/impexp/ext_tables.php\";s:14:\"ext_tables.sql\";s:56:\"/home/www/web275/html/typo3/sysext/impexp/ext_tables.sql\";}s:8:\"sys_note\";a:5:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s: 22:\"typo3/sysext/sys_note/\";s:12:\"typo3RelPath\";s:16:\"sysext/sys_note/\";s:14:\"ext_tables.php\";s:58:\"/home/www/web275/html/typo3/sysext/sys_note/ext_tables.php\";s:14:\"ext_tables.sql\";s:58:\"/home/www/web275/html/typo3/sysext/sys_note/ext_tables.sql\";}s:10:\"tstemplate\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPath\" ;s:21:\"typo3/ext/tstemplate/\";s:12:\"typo3RelPath\";s:15:\"ext/tstemplate/\";s:14:\"ext_tables.php\";s:57:\"/home/www/web275/html/typo3/ext/tstemplate/ext_tables.php\";}s:18:\"tstemplate_ceditor\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteR elPath\";s:29:\"typo3/ext/tstemplate_ceditor/\";s:12:\"typo3RelPath\";s:23:\"ext/tstemplate_ceditor/\";s:14:\"ext_tables.php\";s:65:\"/home/www/web275/html/typo3/ext/tstemplate_ceditor/ext_tables.php\";}s:15:\"tstemplate_info\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelP ath\";s:26:\"typo3/ext/tstemplate_info/\";s:12:\"typo3RelPath\";s:20:\"ext/tstemplate_info/\";s:14:\"ext_tables.php\";s:62:\"/home/www/web275/html/typo3/ext/tstemplate_info/ext_tables.php\";}s:21:\"tstemplate_objbrowser\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"si teRelPath\";s:32:\"typo3/ext/tstemplate_objbrowser/\";s:12:\"typo3RelPath\";s:26:\"ext/tstemplate_objbrowser/\";s:14:\"ext_tables.php\";s:68:\"/home/www/web275/html/typo3/ext/tstemplate_objbrowser/ext_tables.php\";}s:19:\"tstemplate_analyzer\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"site RelPath\";s:30:\"typo3/ext/tstemplate_analyzer/\";s:12:\"typo3RelPath\";s:24:\"ext/tstemplate_analyzer/\";s:14:\"ext_tables.php\";s:66:\"/home/www/web275/html/typo3/ext/tstemplate_analyzer/ext_tables.php\";}s:17:\"tstemplate_styler\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRe lPath\";s:28:\"typo3/ext/tstemplate_styler/\";s:12:\"typo3RelPath\";s:22:\"ext/tstemplate_styler/\";s:14:\"ext_tables.php\";s:64:\"/home/www/web275/html/typo3/ext/tstemplate_styler/ext_tables.php\";}s:12:\"func_wizards\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath \";s:26:\"typo3/sysext/func_wizards/\";s:12:\"typo3RelPath\";s:20:\"sysext/func_wizards/\";s:14:\"ext_tables.php\";s:62:\"/home/www/web275/html/typo3/sysext/func_wizards/ext_tables.php\";}s:14:\"wizard_crpages\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPa th\";s:28:\"typo3/sysext/wizard_crpages/\";s:12:\"typo3RelPath\";s:22:\"sysext/wizard_crpages/\";s:14:\"ext_tables.php\";s:64:\"/home/www/web275/html/typo3/sysext/wizard_crpages/ext_tables.php\";}s:16:\"wizard_sortpages\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRel Path\";s:30:\"typo3/sysext/wizard_sortpages/\";s:12:\"typo3RelPath\";s:24:\"sysext/wizard_sortpages/\";s:14:\"ext_tables.php\";s:66:\"/home/www/web275/html/typo3/sysext/wizard_sortpages/ext_tables.php\";}s:8:\"lowlevel\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s: 22:\"typo3/sysext/lowlevel/\";s:12:\"typo3RelPath\";s:16:\"sysext/lowlevel/\";s:14:\"ext_tables.php\";s:58:\"/home/www/web275/html/typo3/sysext/lowlevel/ext_tables.php\";}s:7:\"install\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s:2 1:\"typo3/sysext/install/\";s:12:\"typo3RelPath\";s:15:\"sysext/install/\";s:14:\"ext_tables.php\";s:57:\"/home/www/web275/html/typo3/sysext/install/ext_tables.php\";}s:5:\"belog\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s:19: \"typo3/sysext/belog/\";s:12:\"typo3RelPath\";s:13:\"sysext/belog/\";s:14:\"ext_tables.php\";s:55:\"/home/www/web275/html/typo3/sysext/belog/ext_tables.php\";}s:6:\"beuser\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s:20 :\"typo3/sysext/beuser/\";s:12:\"typo3RelPath\";s:14:\"sysext/beuser/\";s:14:\"ext_tables.php\";s:56:\"/home/www/web275/html/typo3/sysext/beuser/ext_tables.php\";}s:10:\"phpmyadmin\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPath\" ;s:21:\"typo3/ext/phpmyadmin/\";s:12:\"typo3RelPath\";s:15:\"ext/phpmyadmin/\";s:14:\"ext_tables.php\";s:57:\"/home/www/web275/html/typo3/ext/phpmyadmin/ext_tables.php\";}s:12:\"aboutmodules\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath \";s:26:\"typo3/sysext/aboutmodules/\";s:12:\"typo3RelPath\";s:20:\"sysext/aboutmodules/\";s:14:\"ext_tables.php\";s:62:\"/home/www/web275/html/typo3/sysext/aboutmodules/ext_tables.php\";}s:9:\"imagelist\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPath\";s :20:\"typo3/ext/imagelist/\";s:12:\"typo3RelPath\";s:14:\"ext/imagelist/\";s:14:\"ext_tables.php\";s:56:\"/home/www/web275/html/typo3/ext/imagelist/ext_tables.php\";}s:5:\"setup\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s:19: \"typo3/sysext/setup/\";s:12:\"typo3RelPath\";s:13:\"sysext/setup/\";s:14:\"ext_tables.php\";s:55:\"/home/www/web275/html/typo3/sysext/setup/ext_tables.php\";}s:10:\"taskcenter\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\" ;s:24:\"typo3/sysext/taskcenter/\";s:12:\"typo3RelPath\";s:18:\"sysext/taskcenter/\";s:14:\"ext_tables.php\";s:60:\"/home/www/web275/html/typo3/sysext/taskcenter/ext_tables.php\";}s:11:\"sys_notepad\";a:5:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPath\ ";s:22:\"typo3/ext/sys_notepad/\";s:12:\"typo3RelPath\";s:16:\"ext/sys_notepad/\";s:14:\"ext_tables.php\";s:58:\"/home/www/web275/html/typo3/ext/sys_notepad/ext_tables.php\";s:14:\"ext_tables.sql\";s:58:\"/home/www/web275/html/typo3/ext/sys_notepad/ext_tables.sql\";}s:17:\"taskcenter_recent\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRe lPath\";s:28:\"typo3/ext/taskcenter_recent/\";s:12:\"typo3RelPath\";s:22:\"ext/taskcenter_recent/\";s:14:\"ext_tables.php\";s:64:\"/home/www/web275/html/typo3/ext/taskcenter_recent/ext_tables.php\";}s:19:\"taskcenter_rootlist\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"site RelPath\";s:30:\"typo3/ext/taskcenter_rootlist/\";s:12:\"typo3RelPath\";s:24:\"ext/taskcenter_rootlist/\";s:14:\"ext_tables.php\";s:66:\"/home/www/web275/html/typo3/ext/taskcenter_rootlist/ext_tables.php\";}s:17:\"info_pagetsconfig\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRe lPath\";s:31:\"typo3/sysext/info_pagetsconfig/\";s:12:\"typo3RelPath\";s:25:\"sysext/info_pagetsconfig/\";s:14:\"ext_tables.php\";s:67:\"/home/www/web275/html/typo3/sysext/info_pagetsconfig/ext_tables.php\";}s:8:\"viewpage\";a:4:{s:4:\"type\";s:1:\"S\";s:11:\"siteRelPath\";s: 22:\"typo3/sysext/viewpage/\";s:12:\"typo3RelPath\";s:16:\"sysext/viewpage/\";s:14:\"ext_tables.php\";s:58:\"/home/www/web275/html/typo3/sysext/viewpage/ext_tables.php\";}s:8:\"mininews\";a:8:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPath\";s: 23:\"typo3conf/ext/mininews/\";s:12:\"typo3RelPath\";s:26:\"../typo3conf/ext/mininews/\";s:17:\"ext_localconf.php\";s:62:\"/home/www/web275/html/typo3conf/ext/mininews/ext_localconf.php\";s:14:\"ext_tables.php\";s:59:\"/home/www/web275/html/typo3conf/ext/mininews/ext_tables.php\";s:14:\"ext_tables.sql\";s:59:\"/home/www/web275/html/typo3conf/ext/mininews/ext_tables.sql\";s:28:\"ext_typoscript_editorcfg.txt\";s:73:\"/home/www/web275/html/typo3conf/ext/mininews/ext_typoscript_editorcfg.txt\";s:24:\"ext_typoscript_setup.txt\";s:69:\"/home/www/web275/html/typo3conf/ext/mininews/ext_typoscript_setup.txt\";}s:8:\"tt_board\";a:7:{s:4:\"type\";s:1:\"G\";s:11:\"siteRe lPath\";s:19:\"typo3/ext/tt_board/\";s:12:\"typo3RelPath\";s:13:\"ext/tt_board/\";s:14:\"ext_tables.php\";s:55:\"/home/www/web275/html/typo3/ext/tt_board/ext_tables.php\";s:14:\"ext_tables.sql\";s:55:\"/home/www/web275/html/typo3/ext/tt_board/ext_tables.sql\";s:28:\"ext_typoscript_constants.txt\";s:69:\"/home/www/web275/html/typo3/ext/tt_board/ext_typoscript_constants.txt\";s:24:\"ext_typoscript_setup.txt\";s:65:\"/home/www/web275/html/typo3/ext/tt_board/ext_typoscript_setup.txt\";}s:9:\"sys_todos\";a:5:{s:4:\"type\";s:1:\"G\";s:11:\"siteR elPath\";s:20:\"typo3/ext/sys_todos/\";s:12:\"typo3RelPath\";s:14:\"ext/sys_todos/\";s:14:\"ext_tables.php\";s:56:\"/home/www/web275/html/typo3/ext/sys_todos/ext_tables.php\";s:14:\"ext_tables.sql\";s:56:\"/home/www/web275/html/typo3/ext/sys_todos/ext_tables.sql\";}s:13:\"sys_workflows\";a:5:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPat h\";s:24:\"typo3/ext/sys_workflows/\";s:12:\"typo3RelPath\";s:18:\"ext/sys_workflows/\";s:14:\"ext_tables.php\";s:60:\"/home/www/web275/html/typo3/ext/sys_workflows/ext_tables.php\";s:14:\"ext_tables.sql\";s:60:\"/home/www/web275/html/typo3/ext/sys_workflows/ext_tables.sql\";}s:11:\"conf_userts\";a:4:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPath\ ";s:22:\"typo3/ext/conf_userts/\";s:12:\"typo3RelPath\";s:16:\"ext/conf_userts/\";s:17:\"ext_localconf.php\";s:61:\"/home/www/web275/html/typo3/ext/conf_userts/ext_localconf.php\";}s:6:\"csh_de\";a:3:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPath\";s :21:\"typo3conf/ext/csh_de/\";s:12:\"typo3RelPath\";s:24:\"../typo3conf/ext/csh_de/\";}s:12:\"ab_autoalias\";a:4:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPath\";s:27:\"typo 3conf/ext/ab_autoalias/\";s:12:\"typo3RelPath\";s:30:\"../typo3conf/ext/ab_autoalias/\";s:17:\"ext_localconf.php\";s:66:\"/home/www/web275/html/typo3conf/ext/ab_autoalias/ext_localconf.php\";}s:10:\"cc_awstats\";a:4:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPat h\";s:25:\"typo3conf/ext/cc_awstats/\";s:12:\"typo3RelPath\";s:28:\"../typo3conf/ext/cc_awstats/\";s:14:\"ext_tables.php\";s:61:\"/home/www/web275/html/typo3conf/ext/cc_awstats/ext_tables.php\";}s:17:\"dmc_image_alttext\";a:8:{s:4:\"type\";s:1:\"L\";s:11:\"siteRe lPath\";s:32:\"typo3conf/ext/dmc_image_alttext/\";s:12:\"typo3RelPath\";s:35:\"../typo3conf/ext/dmc_image_alttext/\";s:17:\"ext_localconf.php\";s:71:\"/home/www/web275/html/typo3conf/ext/dmc_image_alttext/ext_localconf.php\";s:14:\"ext_tables.php\";s:68:\"/home/www/web275/html/typo3conf/ext/dmc_image_alttext/ext_tables.php\";s:14:\"ext_tables.sql\";s:68:\"/home/www/web275/html/typo3conf/ext/dmc_image_alttext/ext_tables.sql\";s:28:\"ext_typoscript_constants.txt\";s:82:\"/home/www/web275/html/typo3conf/ext/dmc_image_alttext/ext_typoscript_constants.txt\";s:24:\"ext_typoscript_setup.txt\";s:78:\"/home/www/web275/html/typo3conf/ext/dmc_image_alttext/ext_typoscript_setup.txt\";}s:8:\"metatags\";a:5:{s:4:\"type\";s:1:\"L\";s:11:\"siteRe lPath\";s:23:\"typo3conf/ext/metatags/\";s:12:\"typo3RelPath\";s:26:\"../typo3conf/ext/metatags/\";s:28:\"ext_typoscript_constants.txt\";s:73:\"/home/www/web275/html/typo3conf/ext/metatags/ext_typoscript_constants.txt\";s:24:\"ext_typoscript_setup.txt\";s:69:\"/home/www/web275/html/typo3conf/ext/metatags/ext_typoscript_setup.txt\";}s:10:\"fdfx_2cols\";a:8:{s:4:\"type\";s:1:\"L\";s:11:\"sit eRelPath\";s:25:\"typo3conf/ext/fdfx_2cols/\";s:12:\"typo3RelPath\";s:28:\"../typo3conf/ext/fdfx_2cols/\";s:17:\"ext_localconf.php\";s:64:\"/home/www/web275/html/typo3conf/ext/fdfx_2cols/ext_localconf.php\";s:14:\"ext_tables.php\";s:61:\"/home/www/web275/html/typo3conf/ext/fdfx_2cols/ext_tables.php\";s:14:\"ext_tables.sql\";s:61:\"/home/www/web275/html/typo3conf/ext/fdfx_2cols/ext_tables.sql\";s:28:\"ext_typoscript_constants.txt\";s:75:\"/home/www/web275/html/typo3conf/ext/fdfx_2cols/ext_typoscript_constants.txt\";s:24:\"ext_typoscript_setup.txt\";s:71:\"/home/www/web275/html/typo3conf/ext/fdfx_2cols/ext_typoscript_setup.txt\";}s:11:\"api_macmade\";a:3:{s:4:\"type\";s:1:\"L\";s:11:\"si teRelPath\";s:26:\"typo3conf/ext/api_macmade/\";s:12:\"typo3RelPath\";s:29:\"../typo3conf/ext/api_macmade/\";}s:16:\"content_uneraser\";a:4:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPath\";s:31:\" typo3conf/ext/content_uneraser/\";s:12:\"typo3RelPath\";s:34:\"../typo3conf/ext/content_uneraser/\";s:14:\"ext_tables.php\";s:67:\"/home/www/web275/html/typo3conf/ext/content_uneraser/ext_tables.php\";}s:10:\"fh_library\";a:4:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPath\" ;s:25:\"typo3conf/ext/fh_library/\";s:12:\"typo3RelPath\";s:28:\"../typo3conf/ext/fh_library/\";s:17:\"ext_localconf.php\";s:64:\"/home/www/web275/html/typo3conf/ext/fh_library/ext_localconf.php\";}s:12:\"ve_guestbook\";a:8:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelP ath\";s:27:\"typo3conf/ext/ve_guestbook/\";s:12:\"typo3RelPath\";s:30:\"../typo3conf/ext/ve_guestbook/\";s:17:\"ext_localconf.php\";s:66:\"/home/www/web275/html/typo3conf/ext/ve_guestbook/ext_localconf.php\";s:14:\"ext_tables.php\";s:63:\"/home/www/web275/html/typo3conf/ext/ve_guestbook/ext_tables.php\";s:14:\"ext_tables.sql\";s:63:\"/home/www/web275/html/typo3conf/ext/ve_guestbook/ext_tables.sql\";s:28:\"ext_typoscript_constants.txt\";s:77:\"/home/www/web275/html/typo3conf/ext/ve_guestbook/ext_typoscript_constants.txt\";s:24:\"ext_typoscript_setup.txt\";s:73:\"/home/www/web275/html/typo3conf/ext/ve_guestbook/ext_typoscript_setup.txt\";}s:10:\"mf_akismet\";a:6:{s:4:\"type\";s:1:\"L\";s:11:\"sit eRelPath\";s:25:\"typo3conf/ext/mf_akismet/\";s:12:\"typo3RelPath\";s:28:\"../typo3conf/ext/mf_akismet/\";s:17:\"ext_localconf.php\";s:64:\"/home/www/web275/html/typo3conf/ext/mf_akismet/ext_localconf.php\";s:14:\"ext_tables.php\";s:61:\"/home/www/web275/html/typo3conf/ext/mf_akismet/ext_tables.php\";s:14:\"ext_tables.sql\";s:61:\"/home/www/web275/html/typo3conf/ext/mf_akismet/ext_tables.sql\";}s:11:\"rtehtmlarea\";a:6:{s:4:\"type\";s:1:\"L\";s:11:\"siteRelPath\ ";s:26:\"typo3conf/ext/rtehtmlarea/\";s:12:\"typo3RelPath\";s:29:\"../typo3conf/ext/rtehtmlarea/\";s:17:\"ext_localconf.php\";s:65:\"/home/www/web275/html/typo3conf/ext/rtehtmlarea/ext_localconf.php\";s:14:\"ext_tables.php\";s:62:\"/home/www/web275/html/typo3conf/ext/rtehtmlarea/ext_tables.php\";s:14:\"ext_tables.sql\";s:62:\"/home/www/web275/html/typo3conf/ext/rtehtmlarea/ext_tables.sql\";}s:14:\"ts_language_de\";a:5:{s:4:\"type\";s:1:\"G\";s:11:\"siteRelPa th\";s:25:\"typo3/ext/ts_language_de/\";s:12:\"typo3RelPath\";s:19:\"ext/ts_language_de/\";s:17:\"ext_localconf.php\";s:64:\"/home/www/web275/html/typo3/ext/ts_language_de/ext_localconf.php\";s:24:\"ext_typoscript_setup.txt\";s:71:\"/home/www/web275/html/typo3/ext/ts_language_de/ext_typoscript_setup.txt\";}s:10:\"_CACHEFILE\";s:18:\"temp_CACHED_ps90d4\";}')); ?><?php ########################### ## EXTENSION: cms ## FILE: /home/www/web275/html/typo3/sysext/cms/ext_localconf.php ########################### $_EXTKEY = 'cms'; $_EXTCONF = $TYPO3_CONF_VARS['EXT']['extConf'][$_EXTKEY]; ?><?php # TYPO3 CVS ID: $Id: ext_localconf.php,v 1.2 2003/10/26 17:07:43 typo3 Exp $ if (!defined ('TYPO3_MODE')) die ('Access denied.'); $TYPO3_CONF_VARS['SYS']['contentTable'] = 'tt_content'; Danke für eure Hilfe im Voraus! dazool |
|
#2
| ||||
| ||||
| Hallo, lösch mal die beiden Cache Dateien (temp_CACHED) im typo3conf Ordner. ![]()
__________________ Gruss MD |
|
#3
| |||
| |||
| Danke MistaD für den Tip! Habe beide Temp_Cached Dateien gelöscht. Problem besteht weiterhin. Oder dauert das eine Zeit bis Typo3 das übernimmt? Aha, neue zwei Temp_Cached Dateien wurden angelegt, komm aber immer noch nicht ins Backend? |
|
#4
| ||||
| ||||
| Hallo, dann deinstalliere einfach mal die Extension rtehtmlarea im typo3conf/ext/ Ordner, schau dann ob es geht. Danach kannst du die aktuellste Version von rtehtmlarea ja direkt neu installieren. ![]()
__________________ Gruss MD |
|
#5
| |||
| |||
| Der FTP Manger lässt mich den rtehtmlarea ordner nicht löschen, berechtigung ist auf 777 gestellt. |
|
#6
| ||||
| ||||
| Hallo, deinstalliere sie erst aus Typo3 im Extensions Manager, dann oben Rechts im Jump Menu auf BACKUP / DELETE vom Server löschen. ![]()
__________________ Gruss MD |
|
#7
| |||
| |||
| Wie gesagt ich komme nicht mehr ins beckend... und somit auch nicht mehr zum extension manger. Schöne Kacke das! |
|
#8
| ||||
| ||||
| Hallo, logisch, mein Fehler! Sorry... Hast du root Zugriff auf deinen Server?? Schon einmal probiert per FTP (wenn auch lästig) erst einige Dateien in Ordnern zu löschen, dann den Ordner? In den vielen FTP Progs Standard das volle Ordner nicht glöscht werden. ![]()
__________________ Gruss MD |
|
#9
| |||
| |||
| Yeap i will give it a try. Ich danke dir schon mal für deine Hilfe!!! |
![]() |
| Themen-Optionen | Thema durchsuchen |
| Ansicht | Thema bewerten |
| |
Ähnliche Themen | ||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Brauche Dringend Hilfe TYPO3 Fatal Error: Extension key "graytree" was NOT loaded! (t | bjs1977 | TYPO3 4.x Fragen und Probleme | 11 | 02.12.07 23:01 |
| mysql_fetch_assoc fehler nach HTMLArea RTE update | # eof | TYPO3 4.x Fragen und Probleme | 9 | 18.04.07 16:29 |
| HILFE: Fatal Error | krstn | TYPO3 4.x Fragen und Probleme | 4 | 21.03.07 09:40 |
| tt_products - "Catchable fatal error" nach Umzug auf Server | 0nyx | tt_products | 1 | 07.12.06 15:54 |
| tx_roster: Fatal error !? Brauche Hilfe.. | mavo | Extension modifizieren oder neu erstellen | 0 | 08.12.05 17:13 |