Ana Sayfa
Gruplar  •  Site Yönetimi  •  Özel Mesajlarınız   •  Giriş   •  Kayıt
Reklam alanı
Ana Sayfa
Ana Sayfa
Forumlar
Forumlar
Yardım
Yardım
Arama
Arama
Albüm
Albüm
Kurallar
Kurallar
Linkler
Linkler
Makaleler
Makaleler
Oyunlar
Oyunlar
Sohbet
Sohbet
Üyeler
Üyeler
İstatistikler
İstatistikler






phpBB forumunda Links.js.php Hata Yardım Lutfen konu başlığının kısa özeti; phpBB Plus 1.52 kullaNıyorum. Forumların en altında bulunan linkler bölümü görüntülenemiyor ve o kısım hata veriyor. hata mesajı aşağıda. Acaba nedendir ? Bilen arkadaşlar yardımcı olabilirmi... şimd...

Bu başlığı gezen kullanıcılar:0 Kayıtlı, 0 Gizli, 0 Misafir ve 0 Bot
Kayıtlı Kullanıcılar: Yok



 
Bu forum kilitlenmiştir, yeni bir başlık açamazsınız, cevap gönderemez ya da mesajları değiştiremezsinizBu başlık kilitlenmiştir, cevap yazamaz ya da mesajları değiştiremezsiniz Digg it Stumble it Submit to Del.icio.us Diigo it Prefound it Reddit it Facebook it Blink it Slashdot it Linkagogo it 
Önceki başlık Arkadaşına GönderYazdırÖzel Mesajlarınız Sonraki başlık
Yazar Mesaj
SHERiF
New Friend
New Friend



Kayıt: 22 Eylül 2003
Mesajlar: 9
Tema: Parthenos (31669)

Yaş: 38

turkey.gif

 Oğlak Horoz

Puan: 12
Mesaj Tarih: 04 Ağustos 2004, 17:05   Mesaj konusu: Links.js.php Hata Yardım Lutfen
Alıntıyla Cevap Ver



phpBB Plus 1.52 kullaNıyorum. Forumların en altında bulunan linkler bölümü görüntülenemiyor ve o kısım hata veriyor. hata mesajı aşağıda. Acaba nedendir ? Bilen arkadaşlar yardımcı olabilirmi... şimdiden teşekkürler.

<?php
/***************************************************************************
*                     links.js.php
*                            -------------------
*  MOD add-on page. Contains GPL code copyright of phpBB group.
*  Author: OOHOO < webdev@phpbb-tw.net >
*  Author: Stefan2k1 and ddonker from www.portedmods.com
*  Demo: http://phpbb-tw.net/
*  Version: 1.0.X - 2002/03/22 - for phpBB RC serial, and was named Related_Links_MOD
*  Version: 1.1.0 - 2002/04/25 - Re-packed for phpBB 2.0.0, and renamed to Links_MOD
*  Version: 1.2.0 - 2003/06/15 - Enhanced and Re-packed for phpBB 2.0.4
*  Version: 1.2.1 - 2003/10/15 - Enhanced by CRLin
***************************************************************************/
/***************************************************************************
*
*   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");

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

   if($phpver >= "4.0.4pl1")
   {
      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");
         }
      }
   }
}

header ("Cache-Control: no-store, no-cache, must-revalidate");
header ("Cache-Control: pre-check=0, post-check=0, max-age=0", false);
header ("Pragma: no-cache");
header ("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");

//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//

$template->set_filenames(array(
   'body' => "links_js_body.tpl"
));

//
// Grab data
//
$sql = "SELECT *
      FROM ". LINK_CONFIG_TABLE;
   if(!$result = $db->sql_query($sql))
   {
      message_die(GENERAL_ERROR, "Could not query Link config information", "", __LINE__, __FILE__, $sql);
   }
   
   while( $row = $db->sql_fetchrow($result) )
   {
      $link_config_name = $row['config_name'];
      $link_config_value = $row['config_value'];
      $link_config[$link_config_name] = $link_config_value;
      $link_self_img = $link_config['site_logo'];
      $site_logo_height = $link_config['height'];
      $site_logo_width = $link_config['width'];
      $display_interval = $link_config['display_interval'];
      $display_logo_num = $link_config['display_logo_num'];
   }

$sql = "SELECT link_id, link_title, link_logo_src
   FROM " . LINKS_TABLE . "
   WHERE link_active = 1
   ORDER BY link_hits DESC";

// If failed just ignore
if( $result = $db->sql_query($sql) )
{
   $links_logo = "";
   while($row = $db->sql_fetchrow($result))
   {
      //if (empty($row['link_logo_src'])) $row['link_logo_src'] = 'images/links/no_logo88a.gif';
      if ($row['link_logo_src']) {
         $links_logo .= ('\'<a href="' . append_sid("links.$phpEx?action=go&link_id=" . $row['link_id']) . '" target="_blank"><img src="' . $row['link_logo_src'] . '" alt="' . $row['link_title'] . '" width="' . $site_logo_width . '" height="' . $site_logo_height . '" border="0" hspace="1" /></a>\',' . "\n");
      }
   }

   if ($links_logo) {
      $links_logo = substr($links_logo, 0, -2);

      $template->assign_vars(array(
         'S_CONTENT_ENCODING' => $lang['ENCODING'],
         'T_BODY_BGCOLOR' => '#'.$theme['td_color1'],

         'DISPLAY_INTERVAL' => $display_interval,
         'DISPLAY_LOGO_NUM' => $display_logo_num,
         'LINKS_LOGO' => $links_logo
      ));
   }
}

$template->pparse("body");

$db->sql_close();
//
// Compress buffered output if required
// and send to browser
//
if($do_gzip_compress)
{
   //
   // Borrowed from php.net!
   //
   $gzip_contents = ob_get_contents();
   ob_end_clean();

   $gzip_size = strlen($gzip_contents);
   $gzip_crc = crc32($gzip_contents);

   $gzip_contents = gzcompress($gzip_contents, 9);
   $gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);

   echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
   echo $gzip_contents;
   echo pack("V", $gzip_crc);
   echo pack("V", $gzip_size);
}

exit;
?>

 Oylanmadı SHERiF offlineKişisel Galeri - SHERiFKullanıcı profilini görÖzel mesaj gönderKullanıcının web sitesini ziyaret et
Mesajları göster:      
Bu forum kilitlenmiştir, yeni bir başlık açamazsınız, cevap gönderemez ya da mesajları değiştiremezsinizBu başlık kilitlenmiştir, cevap yazamaz ya da mesajları değiştiremezsiniz
Önceki başlık Arkadaşına GönderYazdırÖzel Mesajlarınız Sonraki başlık


Bu başlığı gezen kullanıcılar:0 Kayıtlı, 0 Gizli, 0 Misafir ve 0 Bot
Kayıtlı Kullanıcılar: Yok

Bu forumda yeni konular açamazsınız
Bu forumdaki mesajlara cevap veremezsiniz
Bu forumdaki mesajlarınızı değiştiremezsiniz
Bu forumdaki mesajlarınızı silemezsiniz
Bu forumdaki anketlerde oy kullanamazsınız
Bu foruma eklenti dosyaları gönderemezsiniz
Bu forumdaki dosyaları indiremezsiniz
Bu forumda eklenti önizlemelerini/linklerini görebilirsiniz
Etiketler: a, acaba, action, addon, alt, altında, and,

Benzer Başlıklar
Başlık Yazar Forumlar Cevaplar Son Gönderilen
Yeni mesaj yok Sabit: Yardım edebilmek size bir click uzakta ... dJ4 Paylaşmak İstiyorum 14 25 Nisan 2006, 19:22 Son Mesajları Gör
Misafir
Yeni mesaj yok acil yardım gereklı lutfen sevgisiz_63 Webmaster Genel 1 27 Eylül 2005, 18:08 Son Mesajları Gör
maXimuS
Yeni mesaj yok cLock tower 3 lutfen yardım!! nienna isilra Bilgisayar Oyunları 0 04 Temmuz 2006, 17:28 Son Mesajları Gör
nienna isilra
Yeni mesaj yok usb de sorun (sehir dışındayım lutfen yardım) selimbic Windows İşletim Sistemleri 2 07 Ocak 2008, 10:54 Son Mesajları Gör
sfslm
Yeni mesaj yok ==Çokk ACilL YarDİm LuTfen..==(DCR DT 9001 Eutelsat w3) DarkHell Şifreli Uydu Yayınları 0 16 Kasım 2008, 23:49 Son Mesajları Gör
DarkHell


Bu Siteye Ait Çerezleri Sil

© 2003, 2049 Türkiye Forum :: Powered by phpBB © 2001, 2005 phpBB Group :: FI Theme
Tüm saatler GMT +2 Saat :: :: Forum Arşivleri
Hata: sayfa oluşturma = 0.73932 saniye, sql sorguları = 37
Türkiye Forum başlık özet akışları

Reklam alanı

CBACK CrackerTracker tarafından korunuyor
25131 Girişim engellendi.


phpBB Türkiye

Forum Haritası: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133