Ana Sayfa Reklam alanı
Gruplar  •  Site Yönetimi  •  Özel Mesajlarınız   •  Giriş   •  Kayıt
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

Google


phpBB forumunda phpbb 2.0.12 çıktı Sömürün konu başlığının kısa özeti; /*link silindi*/ adresinden indirebilirsiniz kolay gelsin

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
BuZuLL
New Friend
New Friend



Kayıt: 14 Temmuz 2004
Mesajlar: 3
Tema: Parthenos (30230)

Yaş: 26

turkey.gif

Cinsiyet:Erkek Kova Köpek

Puan: 7
Mesaj Tarih: 22 Şubat 2005, 02:04   Mesaj konusu: phpbb 2.0.12 çıktı Sömürün
Alıntıyla Cevap VerSonraki Mesaj



/*link silindi*/ adresinden indirebilirsiniz kolay gelsin

 Oylanmadı BuZuLL offlineKişisel Galeri - BuZuLLKullanıcı profilini görÖzel mesaj gönderKullanıcının web sitesini ziyaret et
taNGo
WebMaster
WebMaster



Kayıt: 23 Haziran 2003
Mesajlar: 2563
Tema: FI Subgrey (69)
Nerden: Geriden
Yaş: 28

turkey.gif

Cinsiyet:Erkek Terazi Maymun

Puan: 5273
Mesaj Tarih: 22 Şubat 2005, 02:37   Mesaj konusu:
Alıntıyla Cevap VerSonraki MesajÖnceki Mesaj

http://www.phpbb.com/downloads.php orjinal download adresi burasidir.reklam icerdigi ba$lik editlenmi$tir.


_________________
phpBB Turkish Support | http://www.esqare.com
 Oylanmadı taNGo offlineKişisel Galeri - taNGoKullanıcı profilini görÖzel mesaj gönderE-mail'i gönderKullanıcının web sitesini ziyaret etICQ Numarası
taNGo
WebMaster
WebMaster



Kayıt: 23 Haziran 2003
Mesajlar: 2563
Tema: FI Subgrey (69)
Nerden: Geriden
Yaş: 28

turkey.gif

Cinsiyet:Erkek Terazi Maymun

Puan: 5273
Mesaj Tarih: 22 Şubat 2005, 02:44   Mesaj konusu:
Alıntıyla Cevap VerÖnceki Mesaj

phpBB 2.0.11 den phpBB 2.0.12'e Kod Değişimleri



These are the Changes from phpBB 2.0.11 to phpBB 2.0.12 summed up into a little Mod. This might be very helpful if you want to update your Board and have installed a bunch of Mods. Then it's normally easier to apply the Code Changes than to install all Mods again.

When you find a 'AFTER, ADD'-Statement, the Code have to be added after the last line quoted in the 'FIND'-Statement.
When you find a 'BEFORE, ADD'-Statement, the Code have to be added before the first line quoted in the 'FIND'-Statement.
When you find a 'REPLACE WITH'-Statement, the Code quoted in the 'FIND'-Statement have to be replaced completely with the quoted Code in the 'REPLACE WITH'-Statement.
When you find a 'DELETE'-Statement, the Code have to be deleted.

After you have finished this tutorial, you have to upload the update_to_latest.php file, execute it and then delete it from your webspace.

Ok, lets start:


  • admin/admin_db_utilities.php



  1. FIND - Line 696


             $tables = array('auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words');


    REPLACE WITH


             $tables = array('auth_access', 'banlist', 'categories', 'config', 'disallow', 'forums', 'forum_prune', 'groups', 'posts', 'posts_text', 'privmsgs', 'privmsgs_text', 'ranks', 'search_results', 'search_wordlist', 'search_wordmatch', 'sessions', 'smilies', 'themes', 'themes_name', 'topics', 'topics_watch', 'user_group', 'users', 'vote_desc', 'vote_results', 'vote_voters', 'words', 'confirm');



  • admin/index.php



  1. FIND - Line 562


             "L_NO_GUESTS_BROWSING" => $lang['No_users_browsing'])
          );
       }


    AFTER, ADD



       // Check for new version
       $current_version = explode('.', '2' . $board_config['version']);
       $minor_revision = (int) $current_version[2];

       $errno = 0;
       $errstr = $version_info = '';

       if ($fsock = @fsockopen('www.phpbb.com', 80, $errno, $errstr))
       {
          @fputs($fsock, "GET /updatecheck/20x.txt HTTP/1.1\r\n");
          @fputs($fsock, "HOST: www.phpbb.com\r\n");
          @fputs($fsock, "Connection: close\r\n\r\n");

          $get_info = false;
          while (!@feof($fsock))
          {
             if ($get_info)
             {
                $version_info .= @fread($fsock, 1024);
             }
             else
             {
                if (@fgets($fsock, 1024) == "\r\n")
                {
                   $get_info = true;
                }
             }
          }
          @fclose($fsock);

          $version_info = explode("\n", $version_info);
          $latest_head_revision = (int) $version_info[0];
          $latest_minor_revision = (int) $version_info[2];
          $latest_version = (int) $version_info[0] . '.' . (int) $version_info[1] . '.' . (int) $version_info[2];

          if ($latest_head_revision == 2 && $minor_revision == $latest_minor_revision)
          {
             $version_info = '<p style="color:green">' . $lang['Version_up_to_date'] . '</p>';
          }
          else
          {
             $version_info = '<p style="color:red">' . $lang['Version_not_up_to_date'];
             $version_info .= '<br />' . sprintf($lang['Latest_version_info'], $latest_version) . sprintf($lang['Current_version_info'], '2' . $board_config['version']) . '</p>';
          }
       }
       else
       {
          if ($errstr)
          {
             $version_info = '<p style="color:red">' . sprintf($lang['Connect_socket_error'], $errstr) . '</p>';
          }
          else
          {
             $version_info = '<p>' . $lang['Socket_functions_disabled'] . '</p>';
          }
       }
       
       $version_info .= '<p>' . $lang['Mailing_list_subscribe_reminder'] . '</p>';
       

       $template->assign_vars(array(
          'VERSION_INFO'   => $version_info,
          'L_VERSION_INFORMATION'   => $lang['Version_information'])
       );



  • common.php



  1. FIND - Line 56


       $test = array('HTTP_GET_VARS' => NULL, 'HTTP_POST_VARS' => NULL, 'HTTP_COOKIE_VARS' => NULL, 'HTTP_SERVER_VARS' => NULL, 'HTTP_ENV_VARS' => NULL, 'HTTP_POST_FILES' => NULL);


    REPLACE WITH


       $test = array('HTTP_GET_VARS' => NULL, 'HTTP_POST_VARS' => NULL, 'HTTP_COOKIE_VARS' => NULL, 'HTTP_SERVER_VARS' => NULL, 'HTTP_ENV_VARS' => NULL, 'HTTP_POST_FILES' => NULL, 'phpEx' => NULL, 'phpbb_root_path' => NULL);



  2. FIND - Line 75


    else if (@ini_get('register_globals') == '1' || strtolower(@ini_get('register_globals')) == 'on')
    {
       // PHP4+ path


    AFTER, ADD


       $not_unset = array('HTTP_GET_VARS', 'HTTP_POST_VARS', 'HTTP_COOKIE_VARS', 'HTTP_SERVER_VARS', 'HTTP_SESSION_VARS', 'HTTP_ENV_VARS', 'HTTP_POST_FILES', 'phpEx', 'phpbb_root_path');



  3. FIND - Line 92


       unset($input['input']);
       
       while (list($var,) = @each($input))
       {
          unset($$var);
       }


    REPLACE WITH


       unset($input['input']);
       unset($input['not_unset']);

       while (list($var,) = @each($input))
       {
          if (!in_array($var, $not_unset))
          {
             unset($$var);
          }
       }



  4. FIND - Line 207


    $client_ip = ( !empty($HTTP_SERVER_VARS['REMOTE_ADDR']) ) ? $HTTP_SERVER_VARS['REMOTE_ADDR'] : ( ( !empty($HTTP_ENV_VARS['REMOTE_ADDR']) ) ? $HTTP_ENV_VARS['REMOTE_ADDR'] : $REMOTE_ADDR );


    REPLACE WITH


    $client_ip = ( !empty($HTTP_SERVER_VARS['REMOTE_ADDR']) ) ? $HTTP_SERVER_VARS['REMOTE_ADDR'] : ( ( !empty($HTTP_ENV_VARS['REMOTE_ADDR']) ) ? $HTTP_ENV_VARS['REMOTE_ADDR'] : getenv('REMOTE_ADDR') );



  • includes/functions.php



  1. FIND - Line 80


       $username = htmlspecialchars(rtrim(trim($username), "\\"));
       $username = substr(str_replace("\\'", "'", $username), 0, 25);
       $username = str_replace("'", "\\'", $username);


    REPLACE WITH


       $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25);
       $username = phpbb_rtrim($username, "\\");   
       $username = str_replace("'", "\'", $username);



  2. FIND - Line 83



       return $username;
    }


    AFTER, ADD



    // added at phpBB 2.0.12 to fix a bug in PHP 4.3.10 (only supporting charlist in php >= 4.1.0)
    function phpbb_rtrim($str, $charlist = false)
    {
       if ($charlist === false)
       {
          return rtrim($str);
       }
       
       $php_version = explode('.', PHP_VERSION);

       // php version < 4.1.0
       if ((int) $php_version[0] < 4 || ((int) $php_version[0] == 4 && (int) $php_version[1] < 1))
       {
          while ($str{strlen($str)-1} == $charlist)
          {
             $str = substr($str, 0, strlen($str)-1);
          }
       }
       else
       {
          $str = rtrim($str, $charlist);
       }

       return $str;
    }




  3. FIND - Line 608


             $debug_text .= '</br /><br />Line : ' . $err_line . '<br />File : ' . $err_file;


    REPLACE WITH


             $debug_text .= '</br /><br />Line : ' . $err_line . '<br />File : ' . basename($err_file);



  • includes/page_tail.php



  1. FIND - Line 38


       'PHPBB_VERSION' => '2' . $board_config['version'],


    REPLACE WITH


    //   'PHPBB_VERSION' => '2' . $board_config['version'],



  • includes/template.php



  1. FIND - Line 233


                 $filename = phpbb_realpath($this->root . '/' . $filename);


    REPLACE WITH


                 $filename = ($rp_filename = phpbb_realpath($this->root . '/' . $filename)) ? $rp_filename : $filename;



  • includes/usercp_avatar.php



  1. FIND - Line 54


    {
       global $board_config, $userdata;



    AFTER, ADD


       $avatar_file = basename($avatar_file);



  2. FIND - Line 69


    function user_avatar_gallery($mode, &$error, &$error_msg, $avatar_filename)
    {
       global $board_config;


    AFTER, ADD



       $avatar_filename = str_replace(array('../', '..\\', './', '.\\'), '', $avatar_filename);
       if ($avatar_filename{0} == '/' || $avatar_filename{0} == "\\")
       {
          return '';
       }




  3. FIND - Line 235


                $move_file = 'copy';
             }



    AFTER, ADD


             if (!is_uploaded_file($avatar_filename))
             {
                message_die(GENERAL_ERROR, 'Unable to upload file', '', __LINE__, __FILE__);
             }



  • includes/usercp_register.php



  1. FIND - Line 462


             $avatar_mode = ( !empty($user_avatar_name) ) ? 'local' : 'remote';


    REPLACE WITH


             $avatar_mode = (empty($user_avatar_name)) ? 'remote' : 'local';



  • language/lang_english/lang_admin.php



  1. FIND


    //
    // That's all Folks!
    // -------------------------------------------------


    BEFORE, ADD


    //
    // Version Check
    //
    $lang['Version_up_to_date'] = 'Your installation is up to date, no updates are available for your version of phpBB.';
    $lang['Version_not_up_to_date'] = 'Your installation does <b>not</b> seem to be up to date. Updates are available for your version of phpBB, please visit <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a> to obtain the latest version.';
    $lang['Latest_version_info'] = 'The latest available version is <b>phpBB %s</b>.';
    $lang['Current_version_info'] = 'You are running <b>phpBB %s</b>.';
    $lang['Connect_socket_error'] = 'Unable to open connection to phpBB Server, reported error is:<br />%s';
    $lang['Socket_functions_disabled'] = 'Unable to use socket functions.';
    $lang['Mailing_list_subscribe_reminder'] = 'For the latest information on updates to phpBB, why not <a href="http://www.phpbb.com/support/" target="_new">subscribe to our mailing list</a>.';
    $lang['Version_information'] = 'Version Information';



  • templates/subSilver/admin/index_body.tpl



  1. FIND - Line 80


    </table>

    <br />


    AFTER, ADD



    <h1>{L_VERSION_INFORMATION}</h1>

    {VERSION_INFO}

    <br />



  • templates/subSilver/overall_footer.tpl



  1. FIND - Line 8


       Powered by phpBB {PHPBB_VERSION} line, with phpBB linked to www.phpbb.com. If you refuse
       to include even this then support on our forums may be affected.

       The phpBB Group : 2002
    // -->
    Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} &copy; 2001, 2002 phpBB Group<br />{TRANSLATION_INFO}</span></div>


    REPLACE WITH


       Powered by phpBB line, with phpBB linked to www.phpbb.com. If you refuse
       to include even this then support on our forums may be affected.

       The phpBB Group : 2002
    // -->
    Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> &copy; 2001, 2005 phpBB Group<br />{TRANSLATION_INFO}</span></div>



  • templates/subSilver/simple_footer.tpl



  1. FIND - Line 8


       Powered by phpBB {PHPBB_VERSION} line, with phpBB linked to www.phpbb.com. If you refuse
       to include even this then support on our forums may be affected.

       The phpBB Group : 2002
    // -->
    Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} &copy; 2001,2002 phpBB Group</span></div>


    REPLACE WITH


       Powered by phpBB line, with phpBB linked to www.phpbb.com. If you refuse
       to include even this then support on our forums may be affected.

       The phpBB Group : 2002
    // -->
    Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> &copy; 2001, 2005 phpBB Group</span></div>



  • viewtopic.php



  1. FIND - Line 498


       unset($words);

       $highlight = urlencode($HTTP_GET_VARS['highlight']);


    AFTER, ADD


       $highlight_match = phpbb_rtrim($highlight_match, "\\");




_________________
phpBB Turkish Support | http://www.esqare.com
 Oylanmadı taNGo offlineKişisel Galeri - taNGoKullanıcı profilini görÖzel mesaj gönderE-mail'i gönderKullanıcının web sitesini ziyaret etICQ Numarası
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: adresinden, gelsin, indirebilirsiniz, kolay, link, phpbb, silindi,

Benzer Başlıklar
Başlık Yazar Forumlar Cevaplar Son Gönderilen
Bu başlık kilitlenmiştir, cevap yazamaz ya da mesajları değiştiremezsiniz Duyuru: phpBB forum kullanan site sahipleri taNGo phpBB 0 14 Ağustos 2003, 05:26 Son Mesajları Gör
taNGo
Yeni mesaj yok Sabit: phpBB 2.0.7 Çıktı (2.0.6 dan 2.0.7 ye değişecek dosyalar) taNGo phpBB 8 04 May 2004, 21:15 Son Mesajları Gör
Romulus
Yeni mesaj yok Sabit: phpBB 2.0.8 Çıktı (2.0.7 dan 2.0.8 e değişecek dosyalar) taNGo phpBB 3 06 Nisan 2004, 13:41 Son Mesajları Gör
DeJaVu
Yeni mesaj yok Sabit: phpBB 2.0.9 Çıktı (2.0.8 den 2.0.9 a değişecek dosyalar) taNGo phpBB 0 19 Temmuz 2004, 23:42 Son Mesajları Gör
taNGo
Yeni mesaj yok Sabit: phpBB 2.0.10 Çıktı (2.0.9 dan 2.0.10 a değişecek dosyalar) taNGo phpBB 0 19 Temmuz 2004, 23:45 Son Mesajları Gör
taNGo


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.87508 saniye, sql sorguları = 39
Türkiye Forum başlık özet akışları

Reklam alanı  

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


AdslDigiturk

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