• 21-06-2006, 02:30:34
    #1
    Üyeliği durduruldu
    phpbb forum sitem var,bu forum icerigini üye olmayanlarda okuyabiliyor ancak ben hem üye sayimi arttirmak icin hemde foruma katilimi costurmak icin forum icerigindeki download linklerini sadece üyelerin görmelerini istiyorum,phpbb forum icin bildiginiz bu veya buna benzer bir sistem varsa paylasirsaniz sevinirim....
  • 21-06-2006, 03:56:30
    #2
    http://www.google.com.tr/search?hl=t...a=lr%3Dlang_tr
    hide mod die aratırsan sonuca ulaşabilirsin.
  • 21-06-2006, 08:32:38
    #3
    Kimlik doğrulama veya yönetimden onay bekliyor.
    canver.net te de üyelik istemiyoruz yaw.
    http://canver.net/phpbb-de-gizli-lin...highlight=hide
  • 21-06-2006, 12:51:30
    #4
    Üyeliği durduruldu
    http://turkphpbb.org/dload.php?action=file&file_id=54

    istedigin mod bu : Forumdaki linkleri ziyaretçilerden gizler.

    linkten indirip kur...
  • 21-06-2006, 13:56:28
    #5
    Üyeliği durduruldu
    simdi tamamdir hepinize ayri ayri cok tesekkür ederim.süpersiniz...

    http://turkphpbb.org/dload.php?action=file&file_id=54 indire basiyorum sonra kabul ediyorum a Bu dosyayı bir başka siteden indiremezsiniz! yaziyor komik
  • 21-06-2006, 15:22:52
    #6
    Üyeliği durduruldu
    alttaki modu kur linkteki mod bu ..

    ##############################################################
    ## MOD Ismi TR: Gizli Linkler
    ## MOD Ismi EN: Hide Links
    ## MOD Sürümü: v2.1.0
    ## MOD Yazari: Nome < nome@bk.ru > 162783614
    ##
    ## MOD Açiklamasi: Bu MOD forumunuzdaki linkleri ziyaretçilerden gizler. 
    ##                                  Siteye giris yapilmasi ya da üye olunmasi için uyarida bulunur.
    ##                                  türkphpbb tarafindan bbcode.php dosyasi phpbb 2.0.20 sürümüne 
    ##                                  için yeniden düzenlenmistir.
    ##
    ## MOD Çeviri ve Düzenleme: türkphpbb < admin@turkphpbb.org > http://www.turkphpbb.org
    ##
    ## Kurulum Seviyesi: Çok Kolay
    ## Kurulum Süresi:	  3 Dakika
    ##
    ## Degisecek Dosyalar: 2
    ##                                          includes/bbcode.php
    ##	                          language/lang_turkish/lang_main.php
    ##
    ## Eklenecek Dosyalar: Yok
    ##
    ################################################################# 
    ## Lütfen güvenlik açisindan ve MOD'un son sürümüne sahip olmak için, devamli 
    ## http://www.phpbb.com/mods/ adresini takip edin. Bu MOD'u baska sitelerden indirdiginizde 
    ## çok dikkatli olun, içerisinde phpBB forumunuza zarar verebilecek kodlar bulunabilir.
    ## http://www.phpbb.com/mods/ arsivinde bulunmayan MOD'lar phpBB tarafindan desteklenmez.
    ############################################################## 
    ## Bu MOD'u kurmadan önce, degisecek tüm dosyalarin yedegini almanizi tavsiye ederiz.
    ##############################################################
    #
    #-----[ AÇ ]------------------------------------------
    #
    
    includes/bbcode.php
    
    #
    #-----[ BUL ]------------------------------------------
    #
    
    function bbencode_second_pass($text, $uid)
    {
    	global $lang, $bbcode_tpl;
    
    #
    #-----[ BUNUNLA DEGISTIR ]------------------------------------
    #
    
    function bbencode_second_pass($text, $uid)
    {
    	global $lang, $bbcode_tpl, $userdata, $phpEx, $u_login_logout;
    
    	// The thing we replace links with. I like using a quote like box
    	$replacer = '<table width="40%" cellspacing="1" cellpadding="3" border="0"><tr><td class="quote">';
    	$replacer .= $lang['Links_Allowed_For_Registered_Only'] . '<br />';
    	$replacer .= sprintf($lang['Get_Registered'], "<a href=\"" . append_sid('profile.' . $phpEx . '?mode=register') . "\">", "</a>");
    	$replacer .= sprintf($lang['Enter_Forum'], "<a href=\"" . append_sid($u_login_logout) . "\">", "</a>");
    	$replacer .= '</td></tr></table>';
    
    #
    #-----[ BUL ]------------------------------------------
    #
    
    	// matches a xxxx://www.phpbb.com code..
    	$patterns[] = "#\[url\]([\w]+?://([\w\#$%&~/.\-;:=,?@\]+]+|\[(?!url=))*?)\[/url\]#is";
    	$replacements[] = $bbcode_tpl['url1'];
    
    	// www.phpbb.com code.. (no xxxx:// prefix).
    	$patterns[] = "#\[url\]((www|ftp)\.([\w\#$%&~/.\-;:=,?@\]+]+|\[(?!url=))*?)\[/url\]#is";
    	$replacements[] = $bbcode_tpl['url2'];
    
    	// phpBB code..
    	$patterns[] = "#\[url=([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*?)\]([^?\n\r\t].*?)\[/url\]#is";
    	$replacements[] = $bbcode_tpl['url3'];
    
    	// phpBB code.. (no xxxx:// prefix).
    	$patterns[] = "#\[url=((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*?)\]([^?\n\r\t].*?)\[/url\]#is";
    	$replacements[] = $bbcode_tpl['url4'];
    
    	// user@domain.tld code..
    	$patterns[] = "#\[email\]([a-z0-9&\-_.]+?@[\w\-]+\.([\w\-\.]+\.)?[\w]+)\[/email\]#si";
    	$replacements[] = $bbcode_tpl['email'];
    
    #
    #-----[ BUNUNLA DEGISTIR ]------------------------------------
    #
    
    	// matches a xxxx://www.phpbb.com code..
    	$patterns[] = "#\[url\]([\w]+?://([\w\#$%&~/.\-;:=,?@\]+]+|\[(?!url=))*?)\[/url\]#is";
    	if ( !$userdata['session_logged_in'] )
    	{
    		$replacements[] = $replacer;
    	}
    	else
    	{
    		$replacements[] = $bbcode_tpl['url1'];
    	}
    
    	// www.phpbb.com code.. (no xxxx:// prefix).
    	$patterns[] = "#\[url\]((www|ftp)\.([\w\#$%&~/.\-;:=,?@\]+]+|\[(?!url=))*?)\[/url\]#is";
    	if ( !$userdata['session_logged_in'] )
    	{
    		$replacements[] = $replacer;
    	}
    	else
    	{
    		$replacements[] = $bbcode_tpl['url2'];
    	}
    
    	// phpBB code..
    	$patterns[] = "#\[url=([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*?)\]([^?\n\r\t].*?)\[/url\]#is";
    	if ( !$userdata['session_logged_in'] )
    	{
    		$replacements[] = $replacer;
    	}
    	else
    	{
    		$replacements[] = $bbcode_tpl['url3'];
    	}
    
    	// phpBB code.. (no xxxx:// prefix).
    	$patterns[] = "#\[url=((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*?)\]([^?\n\r\t].*?)\[/url\]#is";
    	if ( !$userdata['session_logged_in'] )
    	{
    		$replacements[] = $replacer;
    	}
    	else
    	{
    		$replacements[] = $bbcode_tpl['url4'];
    	}
    
    	// user@domain.tld code..
    	$patterns[] = "#\[email\]([a-z0-9&\-_.]+?@[\w\-]+\.([\w\-\.]+\.)?[\w]+)\[/email\]#si";
    	if ( !$userdata['session_logged_in'] )
    	{
    		$replacements[] = $replacer;
    	}
    	else
    	{
    		$replacements[] = $bbcode_tpl['email'];
    	}
    
    #
    #-----[ BUL ]------------------------------------------
    #
    
    function make_clickable($text)
    {
    
    #
    #-----[ SONRASINA EKLE ]------------------------------------
    #
    
    	global $userdata, $lang, $phpEx, $u_login_logout;
    
    #
    #-----[ BUL ]------------------------------------------
    #
    
    	// matches an "xxxx://yyyy" URL at the start of a line, or after a space.
    	// xxxx can only be alpha characters.
    	// yyyy is anything up to the first space, newline, comma, double quote or <
    	$ret = preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);
    
    	// matches a "www|ftp.xxxx.yyyy[/zzzz]" kinda lazy URL thing
    	// Must contain at least 2 dots. xxxx contains either alphanum, or "-"
    	// zzzz is optional.. will contain everything up to the first space, newline, 
    	// comma, double quote or <.
    	$ret = preg_replace("#(^|[\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);
    
    	// matches an email@domain type address at the start of a line, or after a space.
    	// Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
    	$ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);
    
    #
    #-----[ BUNUNLA DEGISTIR ]------------------------------------
    #
    
    //
    // Hide links from unregistered users mod
    //
    	if ( !$userdata['session_logged_in'] )
    	{
    	// The thing we replace links with. I like using a quote like box
    	$replacer = '<table width="40%" cellspacing="1" cellpadding="3" border="0"><tr><td class="quote">';
    	$replacer .= $lang['Links_Allowed_For_Registered_Only'] . '<br />';
    	$replacer .= sprintf($lang['Get_Registered'], "<a href=\"" . append_sid('profile.' . $phpEx . '?mode=register') . "\">", "</a>");
    	$replacer .= sprintf($lang['Enter_Forum'], "<a href=\"" . append_sid($u_login_logout) . "\">", "</a>");
    	$replacer .= '</td></tr></table>';
    
    	// matches an "xxxx://yyyy" URL at the start of a line, or after a space.
    	// xxxx can only be alpha characters.
    	// yyyy is anything up to the first space, newline, comma, double quote or <
    	$ret = preg_replace("#(^|[\n ])([\w]+?://[^ \"\n\r\t<]*)#is", $replacer, $ret);
    
    	// matches a "www|ftp.xxxx.yyyy[/zzzz]" kinda lazy URL thing
    	// Must contain at least 2 dots. xxxx contains either alphanum, or "-"
    	// zzzz is optional.. will contain everything up to the first space, newline, 
    	// comma, double quote or <.
    	$ret = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r<]*)#is", $replacer, $ret);
    
    	// matches an email@domain type address at the start of a line, or after a space.
    	// Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
    	$ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", $replacer, $ret);
    
    	}
    	else
    	{
    	// matches an "xxxx://yyyy" URL at the start of a line, or after a space.
    	// xxxx can only be alpha characters.
    	// yyyy is anything up to the first space, newline, comma, double quote or <
                        $ret = preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);
    
    	// matches a "www|ftp.xxxx.yyyy[/zzzz]" kinda lazy URL thing
    	// Must contain at least 2 dots. xxxx contains either alphanum, or "-"
    	// zzzz is optional.. will contain everything up to the first space, newline, 
    	// comma, double quote or <.
    	$ret = preg_replace("#(^|[\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);
    
    	// matches an email@domain type address at the start of a line, or after a space.
    	// Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
    	$ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);
    	}
    //
    // Hide links from unregistered users mod
    //
    
    #
    #-----[ AÇ ]------------------------------------------
    #
    
    language/lang_turkish/lang_main.php
    
    #
    #-----[ BUL ]------------------------------------------
    #
    
    //
    // That's all Folks!
    // -------------------------------------------------
    
    ?>
    
    #
    #-----[ ÖNCESINE EKLE ]------------------------------------
    #
    
    //
    // Hide links from unregistered users mod
    //
    $lang['Links_Allowed_For_Registered_Only'] = 'Bu forumdaki linkleri sadece kayıtlı kullanıcılar görebilir!';
    $lang['Get_Registered'] = 'Kayıt olmak için %sburaya%s ya da ';
    $lang['Enter_Forum'] = 'foruma giriş için %sburaya%s tıklayınız!';
    
    #
    #-----[ TÜM DOSYALARI KAPAT/KAYDET ]------------------------------------------ 
    # 
    #SoN
  • 22-06-2006, 04:42:54
    #7
    Üyeliği durduruldu
    tesekkür ederim ama sorun sanirim benim bilgi eksikligimde bugün bütün gün denedim ama beceremedim,yinede cok tesekkür ederim.
  • 22-06-2006, 10:58:44
    #8
    Üyeliği durduruldu
    modda zaten şu an sorun yok bende sorunsuz ..
  • 27-06-2006, 02:45:05
    #9
    Üyeliği durduruldu
    konualrı misafirlerden gizlemek istiyorsan bunu admin panelinde "izinler" sekmesinden yapabilirsin. eğer konuya cevap yazmayan üye dahi olsa linkleri göremesin diyorsan hide mod kullanman lazım. onu da www.phpbbhacks.com da bulabilirsin.