Seite 1 von 2 12 LetzteLetzte
Ergebnis 1 bis 10 von 16

Thema: Fatal Error nach htmlarea update! Hilfe!!!

      
  1. #1
    Forum Zuschauer
    Registriert seit
    17.07.2007
    Beiträge
    9

    Fatal Error nach htmlarea update! Hilfe!!!

    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): 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(): 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. #2
    TYPO3 Forum Team Moderator Avatar von MistaD
    Registriert seit
    25.01.2006
    Beiträge
    1.458
    Hallo,

    lösch mal die beiden Cache Dateien (temp_CACHED) im typo3conf Ordner.



    Gruss
    MD

  3. #3
    Forum Zuschauer
    Registriert seit
    17.07.2007
    Beiträge
    9
    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. #4
    TYPO3 Forum Team Moderator Avatar von MistaD
    Registriert seit
    25.01.2006
    Beiträge
    1.458
    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. #5
    Forum Zuschauer
    Registriert seit
    17.07.2007
    Beiträge
    9
    Der FTP Manger lässt mich den rtehtmlarea ordner nicht löschen, berechtigung ist auf 777 gestellt.

  6. #6
    TYPO3 Forum Team Moderator Avatar von MistaD
    Registriert seit
    25.01.2006
    Beiträge
    1.458
    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. #7
    Forum Zuschauer
    Registriert seit
    17.07.2007
    Beiträge
    9
    Wie gesagt ich komme nicht mehr ins beckend... und somit auch nicht mehr zum extension manger. Schöne Kacke das!

  8. #8
    TYPO3 Forum Team Moderator Avatar von MistaD
    Registriert seit
    25.01.2006
    Beiträge
    1.458
    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. #9
    Forum Zuschauer
    Registriert seit
    17.07.2007
    Beiträge
    9
    Yeap i will give it a try. Ich danke dir schon mal für deine Hilfe!!!

  10. #10
    TYPO3 Forum Team Moderator Avatar von MistaD
    Registriert seit
    25.01.2006
    Beiträge
    1.458
    Hallo,

    kein Thema, dafür nicht.
    Hast du denn root Zugriff auf den Server oder Webspace/Hosting-Paket?



    Gruss
    MD

 

 
Seite 1 von 2 12 LetzteLetzte

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Facebook Kommentare

Ähnliche Themen

  1. Nach Update auf 4.2.0 Fatal Error
    Von micha84 im Forum TYPO3 4.x Fragen und Probleme
    Antworten: 8
    Letzter Beitrag: 31.07.2008, 10:49
  2. probleme mit htmlarea nach update auf 4.1.6
    Von AndiLaken im Forum TYPO3 4.x Installation und Updates
    Antworten: 1
    Letzter Beitrag: 23.05.2008, 11:43
  3. Fatal Error nach Erweierung
    Von Malm im Forum TYPO3 3.x Fragen und Probleme
    Antworten: 1
    Letzter Beitrag: 28.09.2007, 11:55
  4. HILFE: Fatal Error
    Von krstn im Forum TYPO3 4.x Fragen und Probleme
    Antworten: 4
    Letzter Beitrag: 21.03.2007, 09:40
  5. tx_roster: Fatal error !? Brauche Hilfe..
    Von mavo im Forum Extension modifizieren oder neu erstellen
    Antworten: 0
    Letzter Beitrag: 08.12.2005, 17:13

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238