Pagina 1 van 1

profile.php probleem

Geplaatst: 29 mar 2007, 14:42
door dungeon
Ik weet niet wat ik heb gedaan maar als ik op een member klik, normaal krijg je zijn profile te zien. ik krijg nu een lege pagina. Misschien zit een een fout in mijn profile.php. of moet ik in een andere php file hebben.
Heb de arcade mod en fotoalbummod er op gezet




Code: Selecteer alles

<?php			
/***************************************************************************			
 *                                profile.php			
 *                            -------------------			
 *   begin                : Saturday, Feb 13, 2001			
 *   copyright            : (C) 2001 The phpBB Group			
 *   email                : support@phpbb.com			
 *			
 *   $Id: profile.php,v 1.193.2.7 2006/04/09 16:17:27 grahamje Exp $			
 *			
 *			
 ***************************************************************************/			
			
/***************************************************************************			
 *			
 *   This program is free software; you can redistribute it and/or modify			
 *   it under the terms of the GNU General Public License as published by			
 *   the Free Software Foundation; either version 2 of the License, or			
 *   (at your option) any later version.			
 *			
 ***************************************************************************/			
			
define('IN_PHPBB', true);			
$phpbb_root_path = './';			
include($phpbb_root_path . 'extension.inc');			
include($phpbb_root_path . 'common.'.$phpEx);			
			
//			
// Start session management			
//			
$userdata = session_pagestart($user_ip, PAGE_PROFILE);			
init_userprefs($userdata);			
//			
// End session management			
//			
			
// session id check			
if (!empty($HTTP_POST_VARS['sid']) || !empty($HTTP_GET_VARS['sid']))			
{			
	$sid = (!empty($HTTP_POST_VARS['sid'])) ? $HTTP_POST_VARS['sid'] : $HTTP_GET_VARS['sid'];		
}			
else			
{			
	$sid = '';		
}			
			
//			
// Set default email variables			
//			
$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($board_config['script_path']));			
$script_name = ( $script_name != '' ) ? $script_name . '/profile.'.$phpEx : 'profile.'.$phpEx;			
$server_name = trim($board_config['server_name']);			
$server_protocol = ( $board_config['cookie_secure'] ) ? 'https://' : 'http://';			
$server_port = ( $board_config['server_port'] <> 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/';			
			
$server_url = $server_protocol . $server_name . $server_port . $script_name;			
			
// -----------------------			
// Page specific functions			
//			
function gen_rand_string($hash)			
{			
	$rand_str = dss_rand();		
			
	return ( $hash ) ? md5($rand_str) : substr($rand_str, 0, 8);		
}			
//			
// End page specific functions			
// ---------------------------			
			
//			
// Start of program proper			
//			
if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )			
{			
	$mode = ( isset($HTTP_GET_VARS['mode']) ) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];		
	$mode = htmlspecialchars($mode);		
			
	if ( $mode == 'viewprofile' )		
	{		
	// Mighty Gorgon - Full Album Pack - BEGIN
		$album_root_path = $phpbb_root_path . 'album_mod/';
		include ($album_root_path . 'album_constants.' . $phpEx);
		// Mighty Gorgon - Full Album Pack - END
        	include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);	
		exit;	
	}		
	else if ( $mode == 'editprofile' || $mode == 'register' )		
	{		
		if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )	
		{	
			redirect(append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
		}	
			
		include($phpbb_root_path . 'includes/usercp_register.'.$phpEx);	
		exit;	
	}		
	else if ( $mode == 'confirm' )		
	{		
		// Visual Confirmation	
		if ( $userdata['session_logged_in'] )	
		{	
			exit;
		}	
			
		include($phpbb_root_path . 'includes/usercp_confirm.'.$phpEx);	
		exit;	
	}		
	else if ( $mode == 'sendpassword' )		
	{		
		include($phpbb_root_path . 'includes/usercp_sendpasswd.'.$phpEx);	
		exit;	
	}		
	else if ( $mode == 'activate' )		
	{		
		include($phpbb_root_path . 'includes/usercp_activate.'.$phpEx);	
		exit;	
	}		
	else if ( $mode == 'email' )		
	{		
		include($phpbb_root_path . 'includes/usercp_email.'.$phpEx);	
		exit;	
	}		
}			
			
redirect(append_sid("index.$phpEx", true));			
			
?>			

Geplaatst: 29 mar 2007, 16:25
door Montana
voor zover ik zie zit er geen probleem in de coding is het zelfde als bij mij en werkt...

weet je zeker dat je alle files goed geupload hebt ? :roll:

Geplaatst: 29 mar 2007, 17:16
door Aeolus
supporttemplate?

Re: profile.php probleem

Geplaatst: 30 mar 2007, 07:58
door Derky
dungeon schreef:Ik weet niet wat ik heb gedaan maar als ik op een member klik, normaal krijg je zijn profile te zien. ik krijg nu een lege pagina. Misschien zit een een fout in mijn profile.php. of moet ik in een andere php file hebben.
Heb de arcade mod en fotoalbummod er op gezet
Dan moet je de installatie van die MODs even nalopen want daarbij heb je waarschijnlijk een foutje gemaakt.

Geplaatst: 30 mar 2007, 21:50
door Ramon Fincken
precies, kijk ook eens in
/includes/usercp_register.php

of in je error log als je server dat heeft ..