Seite 1 von 1

Anzeige Problem

Verfasst: 15.03.2011 00:54
von DaSasha
Hallo
Wir sind mit dem Forum auf ein anderen Server gezogen und haben jetzt folgenes Problem
ich wollte die Memberlist.php aufrufen doch musste festellen das da ein anzeige problem ist.

Was angezeigt wird ist das hier:

Code: Alles auswählen

// Send an email $page_title = $user->lang['SEND_EMAIL']; $template_html = 'memberlist_email.html'; /** * * @package phpBB3 * @version $Id$ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ /** * @ignore */ define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); include($phpbb_root_path . 'includes/functions_display.' . $phpEx); // Start session management $user->session_begin(); $auth->acl($user->data); $user->setup(array('memberlist', 'groups')); // Grab data $mode	 = request_var('mode', ''); $action	 = request_var('action', ''); $user_id	= request_var('u', ANONYMOUS); $username	= request_var('un', '', true); $group_id	= request_var('g', 0); $topic_id	= request_var('t', 0); // Check our mode... if (!in_array($mode, array('', 'group', 'viewprofile', 'email', 'contact', 'searchuser', 'leaders'))) { trigger_error('NO_MODE'); } switch ($mode) { case 'email': break; default: // Can this user view profiles/memberlist? if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel')) { if ($user->data['user_id'] != ANONYMOUS) { trigger_error('NO_VIEW_USERS'); } login_box('', ((isset($user->lang['LOGIN_EXPLAIN_' . strtoupper($mode)])) ? $user->lang['LOGIN_EXPLAIN_' . strtoupper($mode)] : $user->lang['LOGIN_EXPLAIN_MEMBERLIST'])); } break; } $start	= request_var('start', 0); $submit = (isset($_POST['submit'])) ? true : false; $default_key = 'c'; $sort_key = request_var('sk', $default_key); $sort_dir = request_var('sd', 'a'); // Grab rank information for later $ranks = $cache->obtain_ranks(); // What do you want to do today? ... oops, I think that line is taken ... switch ($mode) { case 'leaders': // Display a listing of board admins, moderators include($phpbb_root_path . 'includes/functions_user.' . $phpEx); 
das ist jetzt nur ein Teil, hoffe dochmal ihr könnt mir helfen

Danke

edit: Das gleiche hab ich grade gesehen hab ich auch wenn ich das Team aufrufe

Re: Anzeige Problem

Verfasst: 15.03.2011 23:29
von DaSasha
kann mir keiner helfen?

Re: Anzeige Problem

Verfasst: 15.03.2011 23:32
von Mahony
Hallo
Ersetze mal die memberlist.php mit einer originalen Datei, oder lade sie neu hoch. Die Datei scheint kaputt zu sein.

Grüße: Mahony