Also, ich hab mir easymod runtergeladen, danach auch nach ""Easy Mod Installer" - Installation & Nutzung" vorbereitet, aber wenn ich die easymod_install.php aufrufen will, kommt eine ganze Seite voll Critical Error usw:
CRITICAL ERROR: the file 'extension.inc' could not be found. Please, make sure EasyMOD has been uploaded under the admin/mods/easymod/ directory of your phpBB installation.\n"; exit; } // Note using require rather than include makes sense, since we can't really proceed if the files are not available. require($phpbb_root_path . 'extension.inc'); require($phpbb_root_path . 'common.'.$phpEx); require($phpbb_root_path . 'includes/functions_admin.'.$phpEx); // // Session Management. // $userdata = session_pagestart($user_ip, PAGE_INDEX); init_userprefs($userdata); // // Only administrators here, please // if( !$userdata['session_logged_in'] ) { redirect(append_sid("login.$phpEx?redirect=admin/mods/easymod/easymod_install.$phpEx", true)); } if( $userdata['user_level'] != ADMIN ) { message_die(GENERAL_MESSAGE, $lang['Not_admin']); } //// $easymod_install_version = '0.3.0'; $script_path = 'admin/mods/easymod/'; //// // Enable debug helpers? define('EM_DEBUG_AID', 1); if( !@file_exists($phpbb_root_path . $script_path . 'em_includes/em_ftp.'.$phpEx) ) { // display error message (obviously we can't use the lang system from this

echo "CRITICAL ERROR: the file 'admin/mods/easymod/em_includes/em_ftp.$phpEx' could not be found. Please, make sure EasyMOD has been uploaded under the admin/mods/easymod/ directory of your phpBB installation.\n"; exit; } require($phpbb_root_path . $script_path . 'em_includes/em_ftp.'.$phpEx); require($phpbb_root_path . $script_path . 'em_includes/em_modio.'.$phpEx); require($phpbb_root_path . $script_path . 'em_includes/em_functions.'.$phpEx); require($phpbb_root_path . $script_path . 'easymod_display_functions.'.$phpEx); // // set teh language (typo intentional

) // $EM_lang = _em_get_install_languages(); if( !empty($HTTP_GET_VARS['language']) || !empty($HTTP_POST_VARS['language']) ) { $language = (!empty($HTTP_POST_VARS['language'])) ? stripslashes($HTTP_POST_VARS['language']) : stripslashes($HTTP_GET_VARS['language']); } elseif( !empty($HTTP_COOKIE_VARS['em_lang']) ) { $language = stripslashes($HTTP_COOKIE_VARS['em_lang']); } else { $language = $board_config['default_lang']; } $language = (in_array($language, $EM_lang)) ? $language : 'english'; // remember the lang in case we hit an error that send us back to step 1 $hidden = _em_hidden_field('language', $language); // load the appropriate lang pack if( !@file_exists($phpbb_root_path . $script_path . 'languages/lang_easymod_'.$language.'.'.$phpEx) ) { // display error message (obviously we can't use the lang system from this

echo "CRITICAL ERROR: the lang_easymod_$language.$phpEx file could not be found in the easymod/languages directory. EasyMOD cannot be installed without this file present.\n"; exit; } include($phpbb_root_path . $script_path . 'languages/lang_easymod_'.$language.'.'.$phpEx); setcookie('em_lang', $language, time() + 360); // --------- // FUNCTIONS // function wrapper_find(&$file_list, &$find_array, $search_array) { global $lang; echo '' . $lang['EM_finding'] . ': '; for ( $i=0; $i
was soll ich nun tun, brauche eure Hilfe^^