mod editlemede sorun

phpBB 2.0.x sürümleri için MODlar hakkında ihtiyacınız olan desteği buradan sorarak alabilirsiniz.
Kilitli
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

mod editlemede sorun

Mesaj gönderen RSNBK »

Kod: Tümünü seç

<?php
/***************************************************************************
 *                              page_header.php
 *                            -------------------
 *   begin                : Saturday, Feb 13, 2001
 *   copyright            : (C) 2001 The phpBB Group
 *   email                : support@phpbb.com
 *
 *   $Id: page_header.php,v 1.106.2.25 2005/10/30 15:17:14 acydburn 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.
 *
 ***************************************************************************/

if ( !defined('IN_PHPBB') )
{
	die("Hacking attempt");
}

define('HEADER_INC', TRUE);

//
// gzip_compression
//
$do_gzip_compress = FALSE;
if ( $board_config['gzip_compress'] )
{
	$phpver = phpversion();

	$useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT');

	if ( $phpver >= '4.0.4pl1' && ( strstr($useragent,'compatible') || strstr($useragent,'Gecko') ) )
	{
		if ( extension_loaded('zlib') )
		{
			ob_start('ob_gzhandler');
		}
	}
	else if ( $phpver > '4.0' )
	{
		if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') )
		{
			if ( extension_loaded('zlib') )
			{
				$do_gzip_compress = TRUE;
				ob_start();
				ob_implicit_flush(0);

				header('Content-Encoding: gzip');
			}
		}
	}
}
 // 
// Smartor's Visit Counter MOD 
// 
$visit_counter = $board_config['visit_counter']; 

if( $userdata['session_start'] >= (time() - 1) ) 
{ 
   $sql = "UPDATE " . CONFIG_TABLE . " 
         SET config_value = '" . ($visit_counter + 1) . "' 
         WHERE config_name = 'visit_counter'"; 
   if( !($result = $db->sql_query($sql)) ) 
   { 
      message_die(GENERAL_ERROR, 'Could not update counter information', '', __LINE__, __FILE__, $sql); 
   } 

   $visit_counter++; 
} 
// ------------------------------------ 
// 
//
// MOD - TODAY AT - BEGIN
// PARSE DATEFORMAT TO GET TIME FORMAT 
//
$time_reg = '([gh][[:punct:][:space:]]{1,2}[i][[:punct:][:space:]]{0,2}[a]?[[:punct:][:space:]]{0,2}[S]?)';
eregi($time_reg, $board_config['default_dateformat'], $regs);
$board_config['default_timeformat'] = $regs[1];
unset($time_reg);
unset($regs);

//
// GET THE TIME TODAY AND YESTERDAY
//
$today_ary = explode('|', create_date('m|d|Y', time(),$board_config['board_timezone']));
$board_config['time_today'] = gmmktime(0 - $board_config['board_timezone'] - $board_config['dstime'],0,0,$today_ary[0],$today_ary[1],$today_ary[2]);
$board_config['time_yesterday'] = $board_config['time_today'] - 86400;
unset($today_ary);
// MOD - TODAY AT - END
// 
// Dr DLP's Google Visit Counter MOD 
// 
$google_visit_counter = $board_config['google_visit_counter']; 

$tmp_list = explode(".", $REMOTE_ADDR); 
if (($tmp_list[0] == "64" && $tmp_list[1] == "68" && $tmp_list[2] == "82") || ($tmp_list[0] == "216" && $tmp_list[1] == "239" && $tmp_list[2] == "46")) 
{ 
   $sql = "UPDATE " . CONFIG_TABLE . " 
         SET config_value = '" . ($google_visit_counter + 1) . "' 
         WHERE config_name = 'google_visit_counter'"; 
   if( !($result = $db->sql_query($sql)) ) 
   { 
      message_die(GENERAL_ERROR, 'Could not update google counter information', '', __LINE__, __FILE__, $sql); 
   } 

   $google_visit_counter++; 
} 
// ------------------------------------ 
// 

//
// Parse and show the overall header.
//
$template->set_filenames(array(
	'overall_header' => ( empty($gen_simple_header) ) ? 'overall_header.tpl' : 'simple_header.tpl')
);

//
// Generate logged in/logged out status
//
if ( $userdata['session_logged_in'] )
{
	$u_login_logout = 'login.'.$phpEx.'?logout=true&sid=' . $userdata['session_id'];
	$l_login_logout = $lang['Logout'] . ' [ ' . $userdata['username'] . ' ]';
}
else
{
	$u_login_logout = 'login.'.$phpEx;
	$l_login_logout = $lang['Login'];
}

$s_last_visit = ( $userdata['session_logged_in'] ) ? create_date($board_config['default_dateformat'], $userdata['user_lastvisit'], $board_config['board_timezone']) : '';

//
// Get basic (usernames + totals) online
// situation
//
$logged_visible_online = 0;
$logged_hidden_online = 0;
$guests_online = 0;
$online_userlist = '';
$l_online_users = '';

if (defined('SHOW_ONLINE'))
{

	$user_forum_sql = ( !empty($forum_id) ) ? "AND s.session_page = " . intval($forum_id) : '';
	$sql = "SELECT u.username, u.user_id, u.user_allow_viewonline, u.user_level, s.session_logged_in, s.session_ip
		FROM ".USERS_TABLE." u, ".SESSIONS_TABLE." s
		WHERE u.user_id = s.session_user_id
			AND s.session_time >= ".( time() - 300 ) . "
			$user_forum_sql
		ORDER BY u.username ASC, s.session_ip ASC";
	if( !($result = $db->sql_query($sql)) )
	{
		message_die(GENERAL_ERROR, 'Could not obtain user/online information', '', __LINE__, __FILE__, $sql);
	}

	$userlist_ary = array();
	$userlist_visible = array();

	$prev_user_id = 0;
	$prev_user_ip = $prev_session_ip = '';

	while( $row = $db->sql_fetchrow($result) )
	{
		// User is logged in and therefor not a guest
		if ( $row['session_logged_in'] )
		{
			// Skip multiple sessions for one user
			if ( $row['user_id'] != $prev_user_id )
			{
				$style_color = '';
				if ( $row['user_level'] == ADMIN )
				{
					$row['username'] = '<b>' . $row['username'] . '</b>';
					$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
				}
				else if ( $row['user_level'] == MOD )
				{
					$row['username'] = '<b>' . $row['username'] . '</b>';
					$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
				}

				if ( $row['user_allow_viewonline'] )
				{
					$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
					$logged_visible_online++;
				}
				else
				{
					$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>';
					$logged_hidden_online++;
				}

				if ( $row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN )
				{
					$online_userlist .= ( $online_userlist != '' ) ? ', ' . $user_online_link : $user_online_link;
				}
			}

			$prev_user_id = $row['user_id'];
		}
		else
		{
			// Skip multiple sessions for one user
			if ( $row['session_ip'] != $prev_session_ip )
			{
				$guests_online++;   //MOD Show Search Bot 
            $tmp_list = explode(".", decode_ip($row['session_ip'])); 
            if ($tmp_list[0] == "66" && $tmp_list[1] == "249") { 
               //Google 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">GoogleBot</span>' : '<span style="color:#' . $theme['body_link'] . '">GoogleBot2</span>'; 
            } 
            if ( ($tmp_list[0] == "207" && $tmp_list[1] == "66" && $tmp_list[2] == "146") || 
               ($tmp_list[0] == "207" && $tmp_list[1] == "46") ){ 
               //MSN 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">MSNBot</span>' : '<span style="color:#' . $theme['body_link'] . '">MSNBot2</span>'; 
            } 
            if ( ($tmp_list[0] == "66" && $tmp_list[1] == "196") || 
               ($tmp_list[0] == "68" && $tmp_list[1] == "142") ) { 
               //Yahoo 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">YahooBot</span>' : '<span style="color:#' . $theme['body_link'] . '">YahooBot2</span>'; 
            } 
            if ($tmp_list[0] == "195" && $tmp_list[1] == "101" && $tmp_list[2] == "94") { 
               //Voilà 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">VoilàBot</span>' : '<span style="color:#' . $theme['body_link'] . '">VoilàBot2</span>'; 
            } 
            if ($tmp_list[0] == "65" && $tmp_list[1] == "19" && $tmp_list[2] == "150" && $tmp_list[3] >= 193 && $tmp_list[3] <= 256) { 
               //Omni-Explorer 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">Omni-ExplorerBot</span>' : '<span style="color:#' . $theme['body_link'] . '">Omni-ExplorerBot2</span>'; 
            } 
            if ($tmp_list[0] == "212" && $tmp_list[1] == "27" && $tmp_list[2] == "41" && $tmp_list[3] >= 20 && $tmp_list[3] <= 50) { 
               //Pompos 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">PomposBot</span>' : '<span style="color:#' . $theme['body_link'] . '">PomposBot2</span>'; 
            } 
            //Added Bots 
            if ($tmp_list[0] == "65" && $tmp_list[1] == "214" && $tmp_list[2] == "44") { 
               //Ask Jeeves 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">Ask Jeeves</span>' : '<span style="color:#' . $theme['body_link'] . '">Ask Jeeves2</span>'; 
            } 
            if ($tmp_list[0] == "209" && $tmp_list[1] == "237" && $tmp_list[2] == "238") { 
               //Alexa 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">Alexa</span>' : '<span style="color:#' . $theme['body_link'] . '">Alexa2</span>'; 
            } 
            if ($tmp_list[0] == "212" && $tmp_list[1] == "48" && $tmp_list[2] == "8") { 
               //Virgilio 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">Virgilio</span>' : '<span style="color:#' . $theme['body_link'] . '">Virgilio2</span>'; 
            } 
            if ($tmp_list[0] == "66" && $tmp_list[1] == "94" && $tmp_list[2] == "229") { 
               //Inktomi 
               $online_userlist .= ( $online_userlist != '' ) ? ', ' . '<span style="color:#' . $theme['body_link'] . '">Inktomi</span>' : '<span style="color:#' . $theme['body_link'] . '">Inktomi2</span>'; 
            } 
            //End Show Search Bot 

			}
		}

		$prev_session_ip = $row['session_ip'];
	}
	$db->sql_freeresult($result);

	if ( empty($online_userlist) )
	{
		$online_userlist = $lang['None'];
	}
	$online_userlist = ( ( isset($forum_id) ) ? $lang['Browsing_forum'] : $lang['Registered_users'] ) . ' ' . $online_userlist;

	$total_online_users = $logged_visible_online + $logged_hidden_online + $guests_online;

	if ( $total_online_users > $board_config['record_online_users'])
	{
		$board_config['record_online_users'] = $total_online_users;
		$board_config['record_online_date'] = time();

		$sql = "UPDATE " . CONFIG_TABLE . "
			SET config_value = '$total_online_users'
			WHERE config_name = 'record_online_users'";
		if ( !$db->sql_query($sql) )
		{
			message_die(GENERAL_ERROR, 'Could not update online user record (nr of users)', '', __LINE__, __FILE__, $sql);
		}

		$sql = "UPDATE " . CONFIG_TABLE . "
			SET config_value = '" . $board_config['record_online_date'] . "'
			WHERE config_name = 'record_online_date'";
		if ( !$db->sql_query($sql) )
		{
			message_die(GENERAL_ERROR, 'Could not update online user record (date)', '', __LINE__, __FILE__, $sql);
		}
	}

//--- [+] --------- closed by light online mod ------------- 
/* 
    if ( $total_online_users == 0 ) 
    { 
        $l_t_user_s = $lang['Online_users_zero_total']; 
    } 
    else if ( $total_online_users == 1 ) 
    { 
        $l_t_user_s = $lang['Online_user_total']; 
    } 
    else 
    { 
        $l_t_user_s = $lang['Online_users_total']; 
    } 

    if ( $logged_visible_online == 0 ) 
    { 
        $l_r_user_s = $lang['Reg_users_zero_total']; 
    } 
    else if ( $logged_visible_online == 1 ) 
    { 
        $l_r_user_s = $lang['Reg_user_total']; 
    } 
    else 
    { 
        $l_r_user_s = $lang['Reg_users_total']; 
    } 

    if ( $logged_hidden_online == 0 ) 
    { 
        $l_h_user_s = $lang['Hidden_users_zero_total']; 
    } 
    else if ( $logged_hidden_online == 1 ) 
    { 
        $l_h_user_s = $lang['Hidden_user_total']; 
    } 
    else 
    { 
        $l_h_user_s = $lang['Hidden_users_total']; 
    } 

    if ( $guests_online == 0 ) 
    { 
        $l_g_user_s = $lang['Guest_users_zero_total']; 
    } 
    else if ( $guests_online == 1 ) 
    { 
        $l_g_user_s = $lang['Guest_user_total']; 
    } 
    else 
    { 
        $l_g_user_s = $lang['Guest_users_total']; 
    } 

    $l_online_users = sprintf($l_t_user_s, $total_online_users); 
    $l_online_users .= sprintf($l_r_user_s, $logged_visible_online); 
    $l_online_users .= sprintf($l_h_user_s, $logged_hidden_online); 
    $l_online_users .= sprintf($l_g_user_s, $guests_online); 
*/ 
//--- [-] --------- closed by light online mod ------------- 
//--- [+] --------- added by light online mod ------------- 
    $l_online_users = sprintf( $lang['Online_users_total'], $total_online_users); 
        $l_online_users .= sprintf( $lang['Reg_users_total'], $logged_visible_online); 
    $l_online_users .= sprintf( $lang['Hidden_users_total'], $logged_hidden_online); 
        $l_online_users .= sprintf( $lang['Guest_users_total'], $guests_online); 
//--- [-] --------- addes by light online mod -------------
}
 // 
// Users of the day MOD 
// 

// ############ AYARLAR ############ 
// # 
$display_not_day_userlist = 0;   // eğer siteyi ziyaret etmeyen kişilerin gözükmesini istiyorsanız bu seçeneği 1 yapın 
$users_list_delay = 24;      // Sayılacak ziyaret eden kişilerin kaç saat içinde gözükeceği zaman 
// # 
// ############ AYARLAR BİTTİ ############ 

$sql = "SELECT user_id, username, user_allow_viewonline, user_level, user_session_time 
   FROM ".USERS_TABLE." 
   WHERE user_id > 0 
   ORDER BY user_level DESC, username ASC"; 
if( !($result = $db->sql_query($sql)) ) 
{ 
   message_die(GENERAL_ERROR, 'Could not obtain user/day information', '', __LINE__, __FILE__, $sql); 
} 

$day_userlist = ''; 
$day_users = 0; 
$not_day_userlist = ''; 
$not_day_users = 0; 

while( $row = $db->sql_fetchrow($result) ) 
{ 
   $style_color = ''; 
   if ( $row['user_level'] == ADMIN ) 
   { 
      $row['username'] = '<b>' . $row['username'] . '</b>'; 
      $style_color = 'style="color:#' . $theme['fontcolor3'] . '"'; 
   } 
   else if ( $row['user_level'] == MOD ) 
   { 
      $row['username'] = '<b>' . $row['username'] . '</b>'; 
      $style_color = 'style="color:#' . $theme['fontcolor2'] . '"'; 
   } 
   if ( $row['user_allow_viewonline'] ) 
   { 
      $user_day_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>'; 
   } 
   else 
   { 
      $user_day_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>'; 
   } 
   if ( $row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN ) 
   { 
      if ( $row['user_session_time'] >= ( time() - $users_list_delay * 3600 ) ) 
      { 
         $day_userlist .= ( $day_userlist != '' ) ? ', ' . $user_day_link : $user_day_link; 
         $day_users++; 
      } 
      else 
      { 
         $not_day_userlist .= ( $not_day_userlist != '' ) ? ', ' . $user_day_link : $user_day_link; 
         $not_day_users++; 
      } 
   } 
} 

$day_userlist = ( ( isset($forum_id) ) ? '' : sprintf($lang['Day_users'], $day_users, $users_list_delay) ) . ' ' . $day_userlist; 

$not_day_userlist = ( ( isset($forum_id) ) ? '' : sprintf($lang['Not_day_users'], $not_day_users, $users_list_delay) ) . ' ' . $not_day_userlist; 

if ( $display_not_day_userlist ) 
{ 
   $day_userlist .= '<br />' . $not_day_userlist; 
} 

// 
// End of MOD 
// 

//
// Obtain number of new private messages
// if user is logged in
//
if ( ($userdata['session_logged_in']) && (empty($gen_simple_header)) )
{
	if ( $userdata['user_new_privmsg'] )
	{
		$l_message_new = ( $userdata['user_new_privmsg'] == 1 ) ? $lang['New_pm'] : $lang['New_pms'];
		$l_privmsgs_text = sprintf($l_message_new, $userdata['user_new_privmsg']);

		if ( $userdata['user_last_privmsg'] > $userdata['user_lastvisit'] )
		{
			$sql = "UPDATE " . USERS_TABLE . "
				SET user_last_privmsg = " . $userdata['user_lastvisit'] . "
				WHERE user_id = " . $userdata['user_id'];
			if ( !$db->sql_query($sql) )
			{
				message_die(GENERAL_ERROR, 'Could not update private message new/read time for user', '', __LINE__, __FILE__, $sql);
			}

			$s_privmsg_new = 1;
			$icon_pm = $images['pm_new_msg'];
		}
		else
		{
			$s_privmsg_new = 0;
			$icon_pm = $images['pm_new_msg'];
		}
	}
	else
	{
		$l_privmsgs_text = $lang['No_new_pm'];

		$s_privmsg_new = 0;
		$icon_pm = $images['pm_no_new_msg'];
	}

	if ( $userdata['user_unread_privmsg'] )
	{
		$l_message_unread = ( $userdata['user_unread_privmsg'] == 1 ) ? $lang['Unread_pm'] : $lang['Unread_pms'];
		$l_privmsgs_text_unread = sprintf($l_message_unread, $userdata['user_unread_privmsg']);
	}
	else
	{
		$l_privmsgs_text_unread = $lang['No_unread_pm'];
	}
}
else
{
	$icon_pm = $images['pm_no_new_msg'];
	$l_privmsgs_text = $lang['Login_check_pm'];
	$l_privmsgs_text_unread = '';
	$s_privmsg_new = 0;
}

//
// Generate HTML required for Mozilla Navigation bar
//
if (!isset($nav_links))
{
	$nav_links = array();
}

$nav_links_html = '';
$nav_link_proto = '<link rel="%s" href="%s" title="%s" />' . "\n";
while( list($nav_item, $nav_array) = @each($nav_links) )
{
	if ( !empty($nav_array['url']) )
	{
		$nav_links_html .= sprintf($nav_link_proto, $nav_item, append_sid($nav_array['url']), $nav_array['title']);
	}
	else
	{
		// We have a nested array, used for items like <link rel='chapter'> that can occur more than once.
		while( list(,$nested_array) = each($nav_array) )
		{
			$nav_links_html .= sprintf($nav_link_proto, $nav_item, $nested_array['url'], $nested_array['title']);
		}
	}
}
//-- [+] MOD: Kullanıcı Menüsü ------------------------------------------
//-- eklendi
//
if( $userdata['session_logged_in'] ) 
{
            $user_private_message     = $userdata['user_new_privmsg'];
            $user_private_message     = $userdata['user_new_privmsg'];
            $unread_private_message   = ( $userdata['user_new_privmsg'] + $userdata['user_unread_privmsg'] );
            $user_watched_topics      = get_db_stat('userwatched');
            $total_user_topics        = get_db_stat('usertopics');
            $total_user_replies       = ( $userdata['user_posts'] - $total_user_topics );
            $user_unanswered_posts    = get_db_stat('userunanswered');
            $total_new_posts          = get_db_stat('newposttotal');
            $total_new_topics         = get_db_stat('newtopictotal');
            $total_new_replies        = ( $total_new_posts - $total_new_topics );
            $total_unanswered_posts   = get_db_stat('unansweredtotal');
            $new_announcement_posts   = get_db_stat('newannouncementtotal');
            $total_announcement_posts = get_db_stat('announcementtotal');
            $new_sticky_posts         = get_db_stat('newstickytotal');
            $total_sticky_posts       = get_db_stat('stickytotal');
}
//
//-- [-] MOD: Kullanıcı Menüsü ------------------------------------------
// Format Timezone. We are unable to use array_pop here, because of PHP3 compatibility
$l_timezone = explode('.', $board_config['board_timezone']);
$l_timezone = (count($l_timezone) > 1 && $l_timezone[count($l_timezone)-1] != 0) ? $lang[sprintf('%.1f', $board_config['board_timezone'])] : $lang[number_format($board_config['board_timezone'])];
//
// The following assigns all _common_ variables that may be used at any point
// in a template.
//
$template->assign_vars(array(
	'SITENAME' => $board_config['sitename'],
	'SITE_DESCRIPTION' => $board_config['site_desc'],
	'PAGE_TITLE' => $page_title,
	'LAST_VISIT_DATE' => sprintf($lang['You_last_visit'], $s_last_visit),
	'CURRENT_TIME' => sprintf($lang['Current_time'], create_date($board_config['default_dateformat'], time(), $board_config['board_timezone'])),
	'TOTAL_USERS_ONLINE' => $l_online_users,
	'LOGGED_IN_USER_LIST' => $online_userlist,
        'USERS_OF_THE_DAY_LIST' => $day_userlist, 

              'USERS_OF_THE_DAY_LIST' => $day_userlist,
	'RECORD_USERS' => sprintf($lang['Record_online_users'], $board_config['record_online_users'], create_date($board_config['default_dateformat'], $board_config['record_online_date'], $board_config['board_timezone'])),
	'PRIVATE_MESSAGE_INFO' => $l_privmsgs_text,
	'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread,
	'PRIVATE_MESSAGE_NEW_FLAG' => $s_privmsg_new,

	'PRIVMSG_IMG' => $icon_pm,

	'L_USERNAME' => $lang['Username'],
	'L_PASSWORD' => $lang['Password'],
	'L_LOGIN_LOGOUT' => $l_login_logout,
	'L_LOGIN' => $lang['Login'],
	'L_LOG_ME_IN' => $lang['Log_me_in'],
	'L_AUTO_LOGIN' => $lang['Log_me_in'],
	'L_INDEX' => sprintf($lang['Forum_Index'], $board_config['sitename']),
	'L_REGISTER' => $lang['Register'],
	'L_PROFILE' => $lang['Profile'],
	'L_SEARCH' => $lang['Search'],
	'L_PRIVATEMSGS' => $lang['Private_Messages'],
	'L_WHO_IS_ONLINE' => $lang['Who_is_Online'],
	'L_MEMBERLIST' => $lang['Memberlist'],
	'L_FAQ' => $lang['FAQ'],
	'L_USERGROUPS' => $lang['Usergroups'],
         //-- [+] MOD: Kullanıcı Menüsü ------------------------------------------
//-- eklendi
//
    // SAYILAR
    // kişisel mesajlar
    'S_USER_PRIVATE_MESSAGE'     => $user_private_message,
    'S_UNREAD_PRIVATE_MESSAGE'   => $unread_private_message,
    // kendi ve takip edilen
    'S_USER_WATCHED_TOPICS'      => $user_watched_topics,
    'S_USER_POSTS'               => $userdata['user_posts'],
    'S_TOTAL_USER_TOPICS'        => $total_user_topics,
    'S_TOTAL_USER_REPLIES'       => $total_user_replies,
    'S_USER_UNANSWERED_POSTS'    => $user_unanswered_posts,
    // yeni, duyuru, önemli
    'S_TOTAL_NEW_POSTS'          => $total_new_posts,
    'S_TOTAL_NEW_TOPICS'         => $total_new_topics,
    'S_TOTAL_NEW_REPLIES'        => $total_new_replies,
    'S_TOTAL_UNANSWERED_POSTS'   => $total_unanswered_posts,
    'S_TOTAL_ANNOUNCEMENT_POSTS' => $total_announcement_posts,
    'S_NEW_ANNOUNCEMENT_POSTS'   => $new_announcement_posts,	
    'S_TOTAL_STICKY_POSTS'       => $total_sticky_posts,
    'S_NEW_STICKY_POSTS'         => $new_sticky_posts,	

    // LİNKLER
    // kendi ve takip edilen
    'U_USER_WATCHED_TOPICS'      => append_sid('search.'.$phpEx.'?search_id=watched'),
    'U_USER_POSTS'               => append_sid('search.'.$phpEx.'?search_id=egosearch'),
    'U_TOTAL_USER_TOPICS'        => append_sid('search.'.$phpEx.'?search_id=egotopics'),
    'U_TOTAL_USER_REPLIES'       => append_sid('search.'.$phpEx.'?search_id=egoreplies'),
    'U_USER_UNANSWERED_POSTS'    => append_sid('search.'.$phpEx.'?search_id=egounanswered'),
    // yeni, duyuru, önemli
    'U_TOTAL_NEW_POSTS'          => append_sid('search.'.$phpEx.'?search_id=newposts'),
    'U_TOTAL_NEW_TOPICS'         => append_sid('search.'.$phpEx.'?search_id=newtopics'),
    'U_TOTAL_NEW_REPLIES'        => append_sid('search.'.$phpEx.'?search_id=newreplies'),
    'U_TOTAL_UNANSWERED_POSTS'   => append_sid('search.'.$phpEx.'?search_id=unanswered'),
    'U_TOTAL_ANNOUNCEMENT_POSTS' => append_sid('search.'.$phpEx.'?search_id=announce'),
    'U_NEW_ANNOUNCEMENT_POSTS'   => append_sid('search.'.$phpEx.'?search_id=newannounce'),	
    'U_TOTAL_STICKY_POSTS'       => append_sid('search.'.$phpEx.'?search_id=sticky'),
    'U_NEW_STICKY_POSTS'         => append_sid('search.'.$phpEx.'?search_id=newsticky'),	

    // KELİMELER
    'L_FMB_MENU'          => $lang['FMB_menu'],             // Kullanıcı Menüsü
    // kişisel mesajlar
    'L_FMB_NEW'           => $lang['FMB_new'],              // Yeni
    'L_FMB_UNREAD'        => $lang['FMB_unread'],           // Okunmamış
    // kendi ve takip edilen
    'L_FMB_SELF'          => $lang['FMB_self'],             // Mesajlarınız
    'L_FMB_EGOREPLIES'    => $lang['FMB_egoreplies'],       // Cvp.lı
    'L_FMB_EGOUNANSWERED' => $lang['FMB_egounanswered'],    // Cvp.sız
    // yeni, duyuru, önemli
    'L_FMB_NEWPOSTS'      => $lang['FMB_newposts'],         // Yeni Pano Mesajları
    'L_FMB_TOPIC'         => $lang['FMB_topic'],            // Başlık
    'L_FMB_REPLIES'       => $lang['FMB_replies'],          // Cevap
    'L_FMB_ANNOUNCE'      => $lang['FMB_announce'],         // Duyurular
    'L_FMB_STICKY'        => $lang['FMB_sticky'],           // Önemliler
    'L_FMB_TOP'           => $lang['FMB_top'],              // Toplam
    // diğer
    'L_FMB_OTHER'         => $lang['FMB_other'],            // Diğer
    'L_FMB_WATCHED'       => $lang['FMB_watched'],          // Takip edilen konular
    'L_FMB_UNANSWERED'    => $lang['FMB_unanswered'],       // Top. cvp.sız mesaj
//
//-- [-] MOD: Kullanıcı Menüsü ------------------------------------------

	'L_SEARCH_NEW' => $lang['Search_new'],
        'L_SEARCH_NEW_TOPICS' => $lang['Search_new_topics'],
	'L_SEARCH_UNANSWERED' => $lang['Search_unanswered'],
	'L_SEARCH_SELF' => $lang['Search_your_posts'],
	'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'),
	'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),

	'U_SEARCH_UNANSWERED' => append_sid('search.'.$phpEx.'?search_id=unanswered'),
	'U_SEARCH_SELF' => append_sid('search.'.$phpEx.'?search_id=egosearch'),
	'U_SEARCH_NEW' => append_sid('search.'.$phpEx.'?search_id=newposts'),
        'U_SEARCH_NEW_TOPICS' => append_sid('search.'.$phpEx.'?search_id=newtopics'), 

	'U_INDEX' => append_sid('index.'.$phpEx),
	'U_REGISTER' => append_sid('profile.'.$phpEx.'?mode=register'),
	'U_PROFILE' => append_sid('profile.'.$phpEx.'?mode=editprofile'),
	'U_PRIVATEMSGS' => append_sid('privmsg.'.$phpEx.'?folder=inbox'),
	'U_PRIVATEMSGS_POPUP' => append_sid('privmsg.'.$phpEx.'?mode=newpm'),
	'U_SEARCH' => append_sid('search.'.$phpEx),
	'U_MEMBERLIST' => append_sid('memberlist.'.$phpEx),
	'U_MODCP' => append_sid('modcp.'.$phpEx),
	'U_FAQ' => append_sid('faq.'.$phpEx),
	'U_VIEWONLINE' => append_sid('viewonline.'.$phpEx),
	'U_LOGIN_LOGOUT' => append_sid($u_login_logout),
	'U_GROUP_CP' => append_sid('groupcp.'.$phpEx),
	// ezPortal
	'U_PORTAL' => append_sid('portal.'.$phpEx),
	'L_HOME' => $lang['Home'],

	'S_CONTENT_DIRECTION' => $lang['DIRECTION'],
	'S_CONTENT_ENCODING' => $lang['ENCODING'],
	'S_CONTENT_DIR_LEFT' => $lang['LEFT'],
	'S_CONTENT_DIR_RIGHT' => $lang['RIGHT'],
	'S_TIMEZONE' => sprintf($lang['All_times'], $l_timezone),
	'S_LOGIN_ACTION' => append_sid('login.'.$phpEx),

	'T_HEAD_STYLESHEET' => $theme['head_stylesheet'],
	'T_BODY_BACKGROUND' => $theme['body_background'],
	'T_BODY_BGCOLOR' => '#'.$theme['body_bgcolor'],
	'T_BODY_TEXT' => '#'.$theme['body_text'],
	'T_BODY_LINK' => '#'.$theme['body_link'],
	'T_BODY_VLINK' => '#'.$theme['body_vlink'],
	'T_BODY_ALINK' => '#'.$theme['body_alink'],
	'T_BODY_HLINK' => '#'.$theme['body_hlink'],
	'T_TR_COLOR1' => '#'.$theme['tr_color1'],
	'T_TR_COLOR2' => '#'.$theme['tr_color2'],
	'T_TR_COLOR3' => '#'.$theme['tr_color3'],
	'T_TR_CLASS1' => $theme['tr_class1'],
	'T_TR_CLASS2' => $theme['tr_class2'],
	'T_TR_CLASS3' => $theme['tr_class3'],
	'T_TH_COLOR1' => '#'.$theme['th_color1'],
	'T_TH_COLOR2' => '#'.$theme['th_color2'],
	'T_TH_COLOR3' => '#'.$theme['th_color3'],
	'T_TH_CLASS1' => $theme['th_class1'],
	'T_TH_CLASS2' => $theme['th_class2'],
	'T_TH_CLASS3' => $theme['th_class3'],
	'T_TD_COLOR1' => '#'.$theme['td_color1'],
	'T_TD_COLOR2' => '#'.$theme['td_color2'],
	'T_TD_COLOR3' => '#'.$theme['td_color3'],
	'T_TD_CLASS1' => $theme['td_class1'],
	'T_TD_CLASS2' => $theme['td_class2'],
	'T_TD_CLASS3' => $theme['td_class3'],
	'T_FONTFACE1' => $theme['fontface1'],
	'T_FONTFACE2' => $theme['fontface2'],
	'T_FONTFACE3' => $theme['fontface3'],
	'T_FONTSIZE1' => $theme['fontsize1'],
	'T_FONTSIZE2' => $theme['fontsize2'],
	'T_FONTSIZE3' => $theme['fontsize3'],
	'T_FONTCOLOR1' => '#'.$theme['fontcolor1'],
	'T_FONTCOLOR2' => '#'.$theme['fontcolor2'],
	'T_FONTCOLOR3' => '#'.$theme['fontcolor3'],
	'T_SPAN_CLASS1' => $theme['span_class1'],
	'T_SPAN_CLASS2' => $theme['span_class2'],
	'T_SPAN_CLASS3' => $theme['span_class3'],
        // Counter MOD 
   'VISIT_COUNTER' => sprintf($lang['Visit_counter'], $visit_counter), 

# 
# You completed the PHP part. To put the counter on your board you could 
# place {VISIT_COUNTER} anywhere you want in any template files. For example: 
// Google Counter MOD 
   'GOOGLE_VISIT_COUNTER' => sprintf($lang['Google_Visit_counter'], $google_visit_counter), 

	'NAV_LINKS' => $nav_links_html)
);

//
// Login box?
//
if ( !$userdata['session_logged_in'] )
{
	$template->assign_block_vars('switch_user_logged_out', array());
	//
	// Allow autologin?
	//
	if (!isset($board_config['allow_autologin']) || $board_config['allow_autologin'] )
	{
		$template->assign_block_vars('switch_allow_autologin', array());
		$template->assign_block_vars('switch_user_logged_out.switch_allow_autologin', array());
	}
}
else
{
	$template->assign_block_vars('switch_user_logged_in', array());

	if ( !empty($userdata['user_popup_pm']) )
	{
		$template->assign_block_vars('switch_enable_pm_popup', array());
	}
}

// Add no-cache control for cookies if they are set
//$c_no_cache = (isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data'])) ? 'no-cache="set-cookie", ' : '';

// Work around for "current" Apache 2 + PHP module which seems to not
// cope with private cache control setting
if (!empty($HTTP_SERVER_VARS['SERVER_SOFTWARE']) && strstr($HTTP_SERVER_VARS['SERVER_SOFTWARE'], 'Apache/2'))
{
	header ('Cache-Control: no-cache, pre-check=0, post-check=0');
}
else
{
	header ('Cache-Control: private, pre-check=0, post-check=0, max-age=0');
}
header ('Expires: 0');
header ('Pragma: no-cache');

$template->pparse('overall_header');

?>









arkadaşlar ben bu ay en çok mesaj gönderen modu yüklemek istiyorum..mod yüklendi ama benim temanın index_body dosyasinda değişiklikleri pek yapamadim..kimler online bölümü felaket hal aldı.. :cry:

yardım ederseniz sevinirim

Kod: Tümünü seç

#
#-----[ AÇ ]------------------------------------------------
#

templates/subSilver/index_body.tpl

#
#-----[ BUL ]----------------------------------------
# burasi daha uzun...
#

	<td class="row1" align="center" valign="middle" rowspan="2">

#
#-----[ ÇIZGININ IÇERISINDE BUL ]----------------------------------------
#

rowspan="2"

#
#-----[ ÇIZGININ IÇERISINDE BUNUNLA DEGISTIR ]--------------------------------
#

rowspan="3"

#
#-----[ FIND ]----------------------------------------
# burasi daha uzun...
#

	<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}

#
#-----[ BUL ]----------------------------------------
#

  </tr>

#
#-----[ SONRASINA EKLE ]----------------------------------
#

  <tr> 
<td class="row1" align="left"><span class="gensmall">{TOPM_UN}{L_TOPM_UPO_L}{L_TOPM_POSTS_L}</span>
	</td>
  </tr>

[/code]
En son RSNBK tarafından 11.09.2006, 22:51 tarihinde düzenlendi, toplamda 2 kere düzenlendi.
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

yapacak bi babayiğit yok mu ya :lol:
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

arkadasım editlemediin orjinal index_body.tpl dosyasını koyar mısın?bunda hangi rowspan ı 3 yaptıın belli deil editlemeleri yapıp koymussun.olmaz ki
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

Kod: Tümünü seç

<table width="100%" cellspacing="2" cellpadding="2" border="0"> 
<tr> 
   <td colspan="2" class="maintitle">{L_INDEX}</td> 
   </tr> 
<tr> 
<td valign="bottom" class="gensmall"> 
<!-- BEGIN switch_user_logged_in --> 
{LAST_VISIT_DATE}<br /> 
<!-- END switch_user_logged_in --> 
{CURRENT_TIME}<br /> 
<a href="{U_INDEX}" class="nav">{L_INDEX}</a></td> 
<td align="right" valign="bottom" class="gensmall"> 
<a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><br /> 
<!-- BEGIN switch_enable_global_marquee --> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center"> 
  <tr> 
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td> 
  </tr> 
  <tr> 
     <td class="row1" align="left" height="40" valign="middle"><div align="center"class="dmarquee"><div><div><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></div></div></td> 
  </tr> 
</table> 

<br> 
<!-- END switch_enable_global_marquee --> 

<!-- BEGIN switch_disable_global_marquee --> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center"> 
  <tr> 
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td> 
  </tr> 
  <tr> 
     <td class="row1" align="left" height="40" valign="middle"><div align="center"><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></td> 
  </tr> 
</table> 

<br> 
<!-- END switch_disable_global_marquee --> 

<!-- BEGIN switch_user_logged_in --> 
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br /> 
<a href="{U_SEARCH_NEW_TOPICS}" class="gensmall">{L_SEARCH_NEW_TOPICS}</a><br /> 
<a href="{U_MARK_READ}"><strong>{L_MARK_FORUMS_READ}</strong></a> 
<!-- END switch_user_logged_in --> 
</td> 
</tr> 

<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
<tr> 
<th colspan="2">{L_FORUM}</th> 
<th>{L_TOPICS}</th> 
<th>{L_POSTS}</th> 
<th>{L_LASTPOST}</th> 
</tr> 
<!-- BEGIN catrow --> 
<tr> 
<td class="cat" colspan="2"><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></td> 
<td class="rowpic" colspan="3"><img src="images/spacer.gif" alt="" width="280" height="12" /></td> 
</tr> 
<!-- BEGIN forumrow --> 
<tr> 
<td class="row1" height="45"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td> 

<td class="row1" width="100%"><a href="{catrow.forumrow.U_VIEWFORUM}" class="nav"><b>{catrow.forumrow.FORUM_NAME}</b>&nbsp;{catrow.forumrow.ACTIVE_TOTAL} {catrow.forumrow.ACTIVE}</a><br /> 
<span class="genmed">{catrow.forumrow.FORUM_DESC}<br /> 
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td> 
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td> 
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.POSTS}</span></td> 
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}{catrow.forumrow.NUM_NEW_TOPICS}<br>{catrow.forumrow.NUM_NEW_POSTS}</span></td> 
</tr> 
<!-- END forumrow --> 
<!-- END catrow --> 
</table> 
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table> 
<br /> 
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
<tr> 
<td class="cat" colspan="2"><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></td> 
</tr> 
<tr> 
<td class="row1" rowspan="4"><img src="templates/fisubsilversh/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" width="25" height="25" class="imgfolder" title="{L_WHO_IS_ONLINE}" /> 
</td> 
<td class="row1" width="100%"><span class="gensmall">{TOTAL_POSTS}<br /> 
{TOTAL_USERS}<br /> 
{NEWEST_USER}<br />{GOOGLE_VISIT_COUNTER} 
<br />{VISIT_COUNTER} </span></td> 
</tr> 
<tr> 
<td class="row1"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ <strong>{L_WHOSONLINE_ADMIN}</strong> 
]   [ <strong>{L_WHOSONLINE_MOD}</strong> ]<br /> 
{RECORD_USERS}<br /> 
{LOGGED_IN_USER_LIST}</span></td></tr> 
  <tr> 
   <td class="row1" align="left"><span class="gensmall">{USERS_OF_THE_DAY_LIST}</span></td> 

</tr> 
<tr> 
<td height="20" class="row1"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td> 
</tr> 
<tr> 
   <td class="cat" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}">{L_TOP_POSTERS}</a></span></td> 
  </tr> 
  <tr> 
   <td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/fisubsilversh/images/top_users.gif" alt="{L_TOP_POSTERS}" /></td> 
   <td class="row1" align="left" width="100%"><span class="gensmall">{TOP_POSTERS}</span></td> 
  </tr> 
</table> 
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table> 
<!-- BEGIN switch_user_logged_out --> 
<br /> 
<form method="post" action="{S_LOGIN_ACTION}"> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> 
<tr> 
<td class="cat">{L_LOGIN_LOGOUT}</td> 
</tr> 
<tr> 
<td class="row1" align="center"> 
<table border="0" cellspacing="0" cellpadding="2"> 
<tr> 
<td class="gensmall">{L_USERNAME}: </td> 
<td><input class="post" type="text" name="username" size="10" /></td> 
<td class="gensmall">   {L_PASSWORD}:</td> 
<td><input class="post" type="password" name="password" size="10" maxlength="32" /></td> 
<td class="gensmall">   {L_AUTO_LOGIN}</td> 
<td><input class="text" type="checkbox" name="autologin" /></td> 
<td>  <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /></td> 
</tr> 
</table></td> 
</tr> 
</table> 
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table> 
</form> 
<!-- END switch_user_logged_out --> 
<table width="100%" cellspacing="2" cellpadding="2" border="0"> 
<tr> 
<td class="nav"><a href="{U_INDEX}">{L_INDEX}</a></td> 
</tr> 
</table> 
<br /> 
<table border="0" align="center" cellpadding="0" cellspacing="3"> 
<tr> 
<td><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" title="{L_NEW_POSTS}" /></td> 
<td class="gensmall">{L_NEW_POSTS}</td> 
<td>&nbsp;</td> 
<td><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" title="{L_NO_NEW_POSTS}" /></td> 
<td class="gensmall">{L_NO_NEW_POSTS}</td> 
<td>&nbsp;</td> 
<td><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" title="{L_FORUM_LOCKED}" /></td> 
<td class="gensmall">{L_FORUM_LOCKED}</td> 
</tr> 
</table> 
En son RSNBK tarafından 11.09.2006, 11:02 tarihinde düzenlendi, toplamda 1 kere düzenlendi.
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

buyur dene bakalım

Kod: Tümünü seç

<table width="100%" cellspacing="2" cellpadding="2" border="0">
<tr>
   <td colspan="2" class="maintitle">{L_INDEX}</td>
   </tr>
<tr>
<td valign="bottom" class="gensmall">
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}<br />
<!-- END switch_user_logged_in -->
{CURRENT_TIME}<br />
<a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
<td align="right" valign="bottom" class="gensmall">
<a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><br />
<!-- BEGIN switch_enable_global_marquee -->
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center">
  <tr>
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td>
  </tr>
  <tr>
     <td class="row1" align="left" height="40" valign="middle"><div align="center"class="dmarquee"><div><div><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></div></div></td>
  </tr>
</table>

<br>
<!-- END switch_enable_global_marquee -->

<!-- BEGIN switch_disable_global_marquee -->
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center">
  <tr>
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td>
  </tr>
  <tr>
     <td class="row1" align="left" height="40" valign="middle"><div align="center"><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></td>
  </tr>
</table>

<br>
<!-- END switch_disable_global_marquee -->

<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
<a href="{U_MARK_READ}"><strong>{L_MARK_FORUMS_READ}</strong></a>
<!-- END switch_user_logged_in -->
</td>
</tr>

<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2">{L_FORUM}</th>
<th>{L_TOPICS}</th>
<th>{L_POSTS}</th>
<th>{L_LASTPOST}</th>
</tr>
<!-- BEGIN catrow -->
<tr>
<td class="cat" colspan="2"><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></td>
<td class="rowpic" colspan="3"><img src="images/spacer.gif" alt="" width="280" height="12" /></td>
</tr>
<!-- BEGIN forumrow -->
<tr>
<td class="row1" height="45"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>

<td class="row1" width="100%"><a href="{catrow.forumrow.U_VIEWFORUM}" class="nav"><b>{catrow.forumrow.FORUM_NAME}</b>&nbsp;{catrow.forumrow.ACTIVE_TOTAL} {catrow.forumrow.ACTIVE}</a><br />
<span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td class="row2" align="center" nowrap="nowrap"><span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
<!-- END forumrow -->
<!-- END catrow -->
</table>
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table>
<br />
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="cat" colspan="2"><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></td>
</tr>
<tr>
<td class="row1" rowspan="4"><img src="templates/fisubsilversh/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" width="25" height="25" class="imgfolder" title="{L_WHO_IS_ONLINE}" />
</td>
<td class="row1" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />
{TOTAL_USERS}<br />
{NEWEST_USER}<br />{GOOGLE_VISIT_COUNTER}
<br />{VISIT_COUNTER} </span></td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOPM_UN}{L_TOPM_UPO_L}{L_TOPM_POSTS_L}</span>
   </td>
  </tr> 
<tr>
<td class="row1"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ <strong>{L_WHOSONLINE_ADMIN}</strong>
]   [ <strong>{L_WHOSONLINE_MOD}</strong> ]<br />
{RECORD_USERS}<br />
{LOGGED_IN_USER_LIST}</span></td></tr>
  <tr>
   <td class="row1" align="left"><span class="gensmall">{USERS_OF_THE_DAY_LIST}</span></td>

</tr>
<tr>
<td height="20" class="row1"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
<tr>
   <td class="cat" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}">{L_TOP_POSTERS}</a></span></td>
  </tr>
  <tr>
   <td class="row1" align="center" valign="middle" rowspan="3"><img src="templates/fisubsilversh/images/top_users.gif" alt="{L_TOP_POSTERS}" /></td>
   <td class="row1" align="left" width="100%"><span class="gensmall">{TOP_POSTERS}</span></td>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table>
<!-- BEGIN switch_user_logged_out -->
<br />
<form method="post" action="{S_LOGIN_ACTION}">
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="cat">{L_LOGIN_LOGOUT}</td>
</tr>
<tr>
<td class="row1" align="center">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td class="gensmall">{L_USERNAME}: </td>
<td><input class="post" type="text" name="username" size="10" /></td>
<td class="gensmall">   {L_PASSWORD}:</td>
<td><input class="post" type="password" name="password" size="10" maxlength="32" /></td>
<td class="gensmall">   {L_AUTO_LOGIN}</td>
<td><input class="text" type="checkbox" name="autologin" /></td>
<td>  <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /></td>
</tr>
</table></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table>
</form>
<!-- END switch_user_logged_out -->
<table width="100%" cellspacing="2" cellpadding="2" border="0">
<tr>
<td class="nav"><a href="{U_INDEX}">{L_INDEX}</a></td>
</tr>
</table>
<br />
<table border="0" align="center" cellpadding="0" cellspacing="3">
<tr>
<td><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" title="{L_NEW_POSTS}" /></td>
<td class="gensmall">{L_NEW_POSTS}</td>
<td>&nbsp;</td>
<td><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" title="{L_NO_NEW_POSTS}" /></td>
<td class="gensmall">{L_NO_NEW_POSTS}</td>
<td>&nbsp;</td>
<td><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" title="{L_FORUM_LOCKED}" /></td>
<td class="gensmall">{L_FORUM_LOCKED}</td>
</tr>
</table>
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

Kod: Tümünü seç

<table width="100%" cellspacing="2" cellpadding="2" border="0">
<tr>
	<td colspan="2" class="maintitle">{L_INDEX}</td>
	</tr>
<tr>
<td valign="bottom" class="gensmall">
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}<br />
<!-- END switch_user_logged_in -->
{CURRENT_TIME}<br />
<a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
<td align="right" valign="bottom" class="gensmall">
<a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><br />
<!-- BEGIN switch_enable_global_marquee --> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center"> 
  <tr> 
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td> 
  </tr> 
  <tr> 
     <td class="row1" align="left" height="40" valign="middle"><div align="center"class="dmarquee"><div><div><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></div></div></td> 
  </tr> 
</table> 

<br> 
<!-- END switch_enable_global_marquee --> 

<!-- BEGIN switch_disable_global_marquee --> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center"> 
  <tr> 
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td> 
  </tr> 
  <tr> 
     <td class="row1" align="left" height="40" valign="middle"><div align="center"><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></td> 
  </tr> 
</table> 

<br> 
<!-- END switch_disable_global_marquee --> 

<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
<a href="{U_SEARCH_NEW_TOPICS}" class="gensmall">{L_SEARCH_NEW_TOPICS}</a><br /> 
<a href="{U_MARK_READ}"><strong>{L_MARK_FORUMS_READ}</strong></a>
<!-- END switch_user_logged_in -->
</td>
</tr>

<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2">{L_FORUM}</th>
<th>{L_TOPICS}</th>
<th>{L_POSTS}</th>
<th>{L_LASTPOST}</th>
</tr>
<!-- BEGIN catrow -->
<tr>
<td class="cat" colspan="2"><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></td>
<td class="rowpic" colspan="3"><img src="images/spacer.gif" alt="" width="280" height="12" /></td>
</tr>
<!-- BEGIN forumrow -->
<tr>
<td class="row1" height="45"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>

<td class="row1" width="100%"><a href="{catrow.forumrow.U_VIEWFORUM}" class="nav"><b>{catrow.forumrow.FORUM_NAME}</b>&nbsp;{catrow.forumrow.ACTIVE_TOTAL} {catrow.forumrow.ACTIVE}</a><br />
<span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}{catrow.forumrow.NUM_NEW_TOPICS}<br>{catrow.forumrow.NUM_NEW_POSTS}</span></td>
</tr>
<!-- END forumrow -->
<!-- END catrow -->
</table>
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table>
<br />
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="cat" colspan="2"><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></td>
</tr>
<tr>
<td class="row1" rowspan="4"><img src="templates/fisubsilversh/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" width="25" height="25" class="imgfolder" title="{L_WHO_IS_ONLINE}" />
</td>
<td class="row1" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />
{TOTAL_USERS}<br />
{NEWEST_USER}<br />{GOOGLE_VISIT_COUNTER} 
<br />{VISIT_COUNTER} </span></td>
</tr>
<tr>
<td class="row1"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ <strong>{L_WHOSONLINE_ADMIN}</strong> 
]   [ <strong>{L_WHOSONLINE_MOD}</strong> ]<br />
{RECORD_USERS}<br />
{LOGGED_IN_USER_LIST}</span></td></tr> 
  <tr> 
   <td class="row1" align="left"><span class="gensmall">{USERS_OF_THE_DAY_LIST}</span></td> 

</tr>
<tr>
<td height="20" class="row1"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
<tr> 
	<td class="cat" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}">{L_TOP_POSTERS}</a></span></td>
  </tr>
  <tr> 
	<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/fisubsilversh/images/top_users.gif" alt="{L_TOP_POSTERS}" /></td>
	<td class="row1" align="left" width="100%"><span class="gensmall">{TOP_POSTERS}</span></td>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table>
<!-- BEGIN switch_user_logged_out -->
<br />
<form method="post" action="{S_LOGIN_ACTION}">
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="cat">{L_LOGIN_LOGOUT}</td>
</tr>
<tr>
<td class="row1" align="center">
<table border="0" cellspacing="0" cellpadding="2">
<tr> 
<td class="gensmall">{L_USERNAME}: </td>
<td><input class="post" type="text" name="username" size="10" /></td>
<td class="gensmall">   {L_PASSWORD}:</td>
<td><input class="post" type="password" name="password" size="10" maxlength="32" /></td>
<td class="gensmall">   {L_AUTO_LOGIN}</td>
<td><input class="text" type="checkbox" name="autologin" /></td>
<td>  <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /></td>
</tr>
</table></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table>
</form>
<!-- END switch_user_logged_out -->
<table width="100%" cellspacing="2" cellpadding="2" border="0">
<tr>
<td class="nav"><a href="{U_INDEX}">{L_INDEX}</a></td>
</tr>
</table>
<br />
<table border="0" align="center" cellpadding="0" cellspacing="3">
<tr>
<td><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" title="{L_NEW_POSTS}" /></td>
<td class="gensmall">{L_NEW_POSTS}</td>
<td>&nbsp;</td>
<td><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" title="{L_NO_NEW_POSTS}" /></td>
<td class="gensmall">{L_NO_NEW_POSTS}</td>
<td>&nbsp;</td>
<td><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" title="{L_FORUM_LOCKED}" /></td>
<td class="gensmall">{L_FORUM_LOCKED}</td>
</tr>
</table>
Bu bilgi son 5 dakika içinde aktif olan kullanıcılara dayanmaktadırda
bi sorun çıktı..yantarafta boşluk oluştu..üstteki editlenmemiş hali
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

siteni profiline koy da bakalım bi
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

imzamda var zaten..düzeltirsen son verdiğim dosyada düzeltebilirmisn :wink:
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

Kod: Tümünü seç

<td class="row1" align="center" valign="middle" rowspan="2"> 
kodunu bul rowspan değerini 3 yap
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

zaten o dosyada o kodu bulamadığım için yardım istedim.. :lol: neyse yinede sağol uğraştığın için.. :wink:
Kullanıcı avatarı
AlleRGy
Kayıtlı Kullanıcı
Mesajlar: 885
Kayıt: 16.05.2006, 19:14
Konum: denizli
İletişim:

Mesaj gönderen AlleRGy »

ben nasıl buldum o zaman ?????? :evil: :evil: :evil: senin koyduun kodların içinden buldum sen nasıl bulamıyorsun?
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

hala yapamadım anlayan biri yardım etsin :cry:
Kullanıcı avatarı
Ares
Kayıtlı Kullanıcı
Mesajlar: 390
Kayıt: 22.06.2006, 23:05
Konum: Mars
İletişim:

Mesaj gönderen Ares »

Kod: Tümünü seç

<table width="100%" cellspacing="2" cellpadding="2" border="0"> 
<tr> 
   <td colspan="2" class="maintitle">{L_INDEX}</td> 
   </tr> 
<tr> 
<td valign="bottom" class="gensmall"> 
<!-- BEGIN switch_user_logged_in --> 
{LAST_VISIT_DATE}<br /> 
<!-- END switch_user_logged_in --> 
{CURRENT_TIME}<br /> 
<a href="{U_INDEX}" class="nav">{L_INDEX}</a></td> 
<td align="right" valign="bottom" class="gensmall"> 
<a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><br /> 
<!-- BEGIN switch_enable_global_marquee --> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center"> 
  <tr> 
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td> 
  </tr> 
  <tr> 
     <td class="row1" align="left" height="40" valign="middle"><div align="center"class="dmarquee"><div><div><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></div></div></td> 
  </tr> 
</table> 

<br> 
<!-- END switch_enable_global_marquee --> 

<!-- BEGIN switch_disable_global_marquee --> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center"> 
  <tr> 
     <td class="catHead" height="28"><span class="cattitle">{GLOBAL_TITLE}</span></td> 
  </tr> 
  <tr> 
     <td class="row1" align="left" height="40" valign="middle"><div align="center"><span class="genmed">&nbsp;<b>{GLOBAL_ANNOUNCEMENT}</b>&nbsp;</span></div></td> 
  </tr> 
</table> 

<br> 
<!-- END switch_disable_global_marquee --> 

<!-- BEGIN switch_user_logged_in --> 
<a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br /> 
<a href="{U_SEARCH_NEW_TOPICS}" class="gensmall">{L_SEARCH_NEW_TOPICS}</a><br /> 
<a href="{U_MARK_READ}"><strong>{L_MARK_FORUMS_READ}</strong></a> 
<!-- END switch_user_logged_in --> 
</td> 
</tr> 

<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
<tr> 
<th colspan="2">{L_FORUM}</th> 
<th>{L_TOPICS}</th> 
<th>{L_POSTS}</th> 
<th>{L_LASTPOST}</th> 
</tr> 
<!-- BEGIN catrow --> 
<tr> 
<td class="cat" colspan="2"><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></td> 
<td class="rowpic" colspan="3"><img src="images/spacer.gif" alt="" width="280" height="12" /></td> 
</tr> 
<!-- BEGIN forumrow --> 
<tr> 
<td class="row1" height="45"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td> 

<td class="row1" width="100%"><a href="{catrow.forumrow.U_VIEWFORUM}" class="nav"><b>{catrow.forumrow.FORUM_NAME}</b>&nbsp;{catrow.forumrow.ACTIVE_TOTAL} {catrow.forumrow.ACTIVE}</a><br /> 
<span class="genmed">{catrow.forumrow.FORUM_DESC}<br /> 
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td> 
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td> 
<td class="row2" align="center"><span class="gensmall">{catrow.forumrow.POSTS}</span></td> 
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}{catrow.forumrow.NUM_NEW_TOPICS}<br>{catrow.forumrow.NUM_NEW_POSTS}</span></td> 
</tr> 
<!-- END forumrow --> 
<!-- END catrow --> 
</table> 
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table> 
<br /> 
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
<tr> 
<td class="cat" colspan="2"><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></td> 
</tr> 
<tr> 
<td class="row1" rowspan="5"><img src="templates/fisubsilversh/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" width="25" height="25" class="imgfolder" title="{L_WHO_IS_ONLINE}" /> 
</td> 
<td class="row1" width="100%"><span class="gensmall">{TOTAL_POSTS}<br /> 
{TOTAL_USERS}<br /> 
{NEWEST_USER}<br />{GOOGLE_VISIT_COUNTER} 
<br />{VISIT_COUNTER} </span></td> 
</tr> 
<tr> 
<td class="row1"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ <strong>{L_WHOSONLINE_ADMIN}</strong> 
]   [ <strong>{L_WHOSONLINE_MOD}</strong> ]<br /> 
{RECORD_USERS}<br /> 
{LOGGED_IN_USER_LIST}</span></td></tr> 
  <tr> 
   <td class="row1" align="left"><span class="gensmall">{USERS_OF_THE_DAY_LIST}</span></td> 

</tr> 
<tr> 
<td height="20" class="row1"><span class="gensmall">{TOPM_UN}{L_TOPM_UPO_L}{L_TOPM_POSTS_L}</span></td> 
</tr> 
<tr> 
<td height="20" class="row1"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td> 
</tr> 
<tr> 
   <td class="cat" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}">{L_TOP_POSTERS}</a></span></td> 
  </tr> 
  <tr> 
   <td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/fisubsilversh/images/top_users.gif" alt="{L_TOP_POSTERS}" /></td> 
   <td class="row1" align="left" width="100%"><span class="gensmall">{TOP_POSTERS}</span></td> 
  </tr> 
</table> 
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table> 
<!-- BEGIN switch_user_logged_out --> 
<br /> 
<form method="post" action="{S_LOGIN_ACTION}"> 
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> 
<tr> 
<td class="cat">{L_LOGIN_LOGOUT}</td> 
</tr> 
<tr> 
<td class="row1" align="center"> 
<table border="0" cellspacing="0" cellpadding="2"> 
<tr> 
<td class="gensmall">{L_USERNAME}: </td> 
<td><input class="post" type="text" name="username" size="10" /></td> 
<td class="gensmall">   {L_PASSWORD}:</td> 
<td><input class="post" type="password" name="password" size="10" maxlength="32" /></td> 
<td class="gensmall">   {L_AUTO_LOGIN}</td> 
<td><input class="text" type="checkbox" name="autologin" /></td> 
<td>  <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" /></td> 
</tr> 
</table></td> 
</tr> 
</table> 
<table border="0" cellpadding="0" cellspacing="0" class="tbl"><tr><td class="tbll"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblbot"><img src="images/spacer.gif" alt="" width="8" height="4" /></td><td class="tblr"><img src="images/spacer.gif" alt="" width="8" height="4" /></td></tr></table> 
</form> 
<!-- END switch_user_logged_out --> 
<table width="100%" cellspacing="2" cellpadding="2" border="0"> 
<tr> 
<td class="nav"><a href="{U_INDEX}">{L_INDEX}</a></td> 
</tr> 
</table> 
<br /> 
<table border="0" align="center" cellpadding="0" cellspacing="3"> 
<tr> 
<td><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" title="{L_NEW_POSTS}" /></td> 
<td class="gensmall">{L_NEW_POSTS}</td> 
<td>&nbsp;</td> 
<td><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" title="{L_NO_NEW_POSTS}" /></td> 
<td class="gensmall">{L_NO_NEW_POSTS}</td> 
<td>&nbsp;</td> 
<td><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" title="{L_FORUM_LOCKED}" /></td> 
<td class="gensmall">{L_FORUM_LOCKED}</td> 
</tr> 
</table>  
al bunu dene.
Kullanıcı avatarı
RSNBK
Kayıtlı Kullanıcı
Mesajlar: 311
Kayıt: 11.05.2006, 22:08
Konum: zonguldak/Bartın
İletişim:

Mesaj gönderen RSNBK »

sağol :)
Kilitli

“2.0.x MOD Destek” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Ahrefs [Bot] ve 3 misafir