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.14 Çıktı (2.0.13 ten 2.0.14 e değişecek dosyalar) konu başlığının kısa özeti; phpBB 2.0.13 to phpBB 2.0.14 Code Changes These are the Changes from phpBB 2.0.13 to phpBB 2.0.14 summed up into a little Mod. This might be very helpful if you want to update your Board and have...

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
taNGo
WebMaster
WebMaster



Kayıt: 23 Haziran 2003
Mesajlar: 2530
Tema: FI Subgrey (52)
Nerden: Geriden
Yaş: 27

turkey.gif

Cinsiyet:Erkek Terazi Maymun

Puan: 5252
Mesaj Tarih: 16 Nisan 2005, 02:44   Mesaj konusu: phpBB 2.0.14 Çıktı (2.0.13 ten 2.0.14 e değişecek dosyalar)
Alıntıyla Cevap VerSonraki Mesaj


phpBB 2.0.13 to phpBB 2.0.14 Code Changes


These are the Changes from phpBB 2.0.13 to phpBB 2.0.14 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.

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


Furthermore, please remove the file db/oracle.php from your webspace.

  • admin/admin_styles.php



  1. FIND - Line 78


             include($phpbb_root_path. "templates/" . $install_to . "/theme_info.cfg");


    REPLACE WITH


             include($phpbb_root_path. "templates/" . basename($install_to) . "/theme_info.cfg");



  2. FIND - Line 742


             $fp = @fopen($phpbb_root_path . 'templates/' . $template_name . '/theme_info.cfg', 'w');


    REPLACE WITH


             $fp = @fopen($phpbb_root_path . 'templates/' . basename($template_name) . '/theme_info.cfg', 'w');



  • admin/page_header_admin.php



  1. FIND - Line 38


       $useragent = (isset($_SERVER["HTTP_USER_AGENT"]) ) ? $_SERVER["HTTP_USER_AGENT"] : $HTTP_USER_AGENT;


    REPLACE WITH


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



  • admin/page_footer_admin.php



  1. FIND - Line 36


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


    REPLACE WITH


       'PHPBB_VERSION' => ($userdata['user_level'] == ADMIN && $userdata['user_id'] != ANONYMOUS) ? '2' . $board_config['version'] : '',



  • db/postgres7.php



  1. FIND - Line 125


             $query = preg_replace("/LIMIT ([0-9]+),([ 0-9]+)/", "LIMIT \\2 OFFSET \\1", $query);


    AFTER, ADD


             $query = preg_replace('#(.*WHERE.*)(username|user_email|ban_email) = \'(.*)\'#ise', "\"\\1LOWER(\\2) = '\" . strtolower('\\3') . \"'\"", $query);



  • includes/page_header.php



  1. FIND - Line 38


       $useragent = (isset($_SERVER["HTTP_USER_AGENT"]) ) ? $_SERVER["HTTP_USER_AGENT"] : $HTTP_USER_AGENT;


    REPLACE WITH


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



  2. FIND - Line 469


    if (!empty($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache/2'))


    REPLACE WITH


    if (!empty($HTTP_SERVER_VARS['SERVER_SOFTWARE']) && strstr($HTTP_SERVER_VARS['SERVER_SOFTWARE'], 'Apache/2'))



  • includes/sessions.php



  1. FIND - Line 53


          $session_id = '';
       }



    AFTER, ADD


       $page_id = (int) $page_id;




  2. FIND - Line 92


                   // No match; don't login, set as anonymous user
                   $login = 0;
                   $enable_autologin = 0;
                   $user_id = $userdata['user_id'] = ANONYMOUS;


    AFTER, ADD


                
                   $sql = 'SELECT * FROM ' . USERS_TABLE . ' WHERE user_id = ' . ANONYMOUS;
                   $result = $db->sql_query($sql);
                   $userdata = $db->sql_fetchrow($result);
                   $db->sql_freeresult($result);



  3. FIND - Line 105


                // Autologin is not set. Don't login, set as anonymous user
                $login = 0;
                $enable_autologin = 0;
                $user_id = $userdata['user_id'] = ANONYMOUS;


    AFTER, ADD



                $sql = 'SELECT * FROM ' . USERS_TABLE . ' WHERE user_id = ' . ANONYMOUS;
                $result = $db->sql_query($sql);
                $userdata = $db->sql_fetchrow($result);
                $db->sql_freeresult($result);



  4. FIND - Line 244


       //
       // Does a session exist?
       //


    BEFORE, ADD


       $thispage_id = (int) $thispage_id;




  • modcp.php



  1. FIND - Line 130


          message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
       }
       $topic_row = $db->sql_fetchrow($result);



    AFTER, ADD


       if (!$topic_row)
       {
          message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
       }




  2. FIND - Line 150


          message_die(GENERAL_MESSAGE, 'Forum_not_exist');
       }
       $topic_row = $db->sql_fetchrow($result);


    AFTER, ADD



       if (!$topic_row)
       {
          message_die(GENERAL_MESSAGE, 'Forum_not_exist');
       }



  • privmsg.php



  1. FIND - Line 566


       if ( !$board_config['allow_html'] )
        {
          if ( $user_sig != '' && $privmsg['privmsgs_enable_sig'] && $userdata['user_allowhtml'] )


    REPLACE WITH


       if ( !$board_config['allow_html'] || !$userdata['user_allowhtml'])
       {
          if ( $user_sig != '')



  2. FIND - Line 1531


          if ( !$html_on )
          {
             if ( $user_sig != '' || !$userdata['user_allowhtml'] )


    REPLACE WITH


          if ( !$html_on || !$board_config['allow_html'] || !$userdata['user_allowhtml'] )
          {
             if ( $user_sig != '' )



  • search.html



  1. FIND - Line 200


                $search_author = str_replace('*', '%', trim($search_author));


    BEFORE, ADD


                if (preg_match('#^[\*%]+$#', trim($search_author)) || preg_match('#^[^\*]{1,2}$#', str_replace(array('*', '%'), '', trim($search_author))))
                {
                   $search_author = '';
                }




  2. FIND - Line 269



             for($i = 0; $i < count($split_search); $i++)
             {


    AFTER, ADD


                if (preg_match('#^[\*%]+$#', trim($split_search[$i])) || preg_match('#^[^\*]{1,2}$#', str_replace(array('*', '%'), '', trim($split_search[$i]))))
                {
                   $split_search[$i] = '';
                   continue;
                }




  3. FIND - Line 416


          // Author name search
          //
          if ( $search_author != '' )
          {


    AFTER, ADD


              if (preg_match('#^[\*%]+$#', trim($search_author)) || preg_match('#^[^\*]{1,2}$#', str_replace(array('*', '%'), '', trim($search_author))))
             {
                $search_author = '';
             }




  • viewtopic.php



  1. FIND - Line 1052


       if ( !$board_config['allow_html'] )
       {
          if ( $user_sig != '' && $userdata['user_allowhtml'] )


    REPLACE WITH


       if ( !$board_config['allow_html'] || !$userdata['user_allowhtml'])
       {
          if ( $user_sig != '' )



  2. FIND - Line 1122


             $user_sig = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace(\$orig_word, \$replacement_word, '\\0')", '>' . $user_sig . '<'), 1, -1));
          }

          $message = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace(\$orig_word, \$replacement_word, '\\0')", '>' . $message . '<'), 1, -1));


    REPLACE WITH


             $user_sig = str_replace('\"', '"', substr(@preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "@preg_replace(\$orig_word, \$replacement_word, '\\0')", '>' . $user_sig . '<'), 1, -1));
          }

          $message = str_replace('\"', '"', substr(@preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "@preg_replace(\$orig_word, \$replacement_word, '\\0')", '>' . $message . '<'), 1, -1));





_________________
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ı
BLacK
Quick Friend
Quick Friend



Kayıt: 12 Mart 2005
Mesajlar: 71
Tema: Parthenos (28829)
Nerden: orion takım yıldızı 17. bölge ana holografik üst , titan
Yaş: 25

usa.gif

Cinsiyet:Erkek Oğlak Köpek

Puan: 96
Mesaj Tarih: 16 Nisan 2005, 12:54   Mesaj konusu:
Alıntıyla Cevap VerSonraki MesajÖnceki Mesaj

En son sürüm en güvenilir ve en iyisidir diye bir felsefe var.
Olympus'a giderken hala devam ediyorlar yeni sürümleri cıkarmaya
bu mesajı görünce şaşırıp kaldım, araştırmaya fırsatım olmadı yaptıgım eklentilerle bir problem oluşturacakmı bir bakayım.@taNGo çok hızlı ilerliyor phpBB hızına yetişemicez mi üstad Smile


_________________
SCARFACE
"In this country, you gotta make the money first.
Then when you get the money, you get the power.
Then when you get the power, then you get the woman."

Tony Montana a.k.a Al Paçino
 Oylanmadı BLacK offlineKişisel Galeri - BLacKKullanıcı profilini görÖzel mesaj gönderE-mail'i gönderKullanıcının web sitesini ziyaret et
taNGo
WebMaster
WebMaster



Kayıt: 23 Haziran 2003
Mesajlar: 2530
Tema: FI Subgrey (52)
Nerden: Geriden
Yaş: 27

turkey.gif

Cinsiyet:Erkek Terazi Maymun

Puan: 5252
Mesaj Tarih: 16 Nisan 2005, 15:19   Mesaj konusu:
Alıntıyla Cevap VerSonraki MesajÖnceki Mesaj

eh sanırım bir yerde birleşecek tüm sürümler bende pek anlayamadım o çıkacak bu update olacak felan Smile


_________________
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ı
BLacK
Quick Friend
Quick Friend



Kayıt: 12 Mart 2005
Mesajlar: 71
Tema: Parthenos (28829)
Nerden: orion takım yıldızı 17. bölge ana holografik üst , titan
Yaş: 25

usa.gif

Cinsiyet:Erkek Oğlak Köpek

Puan: 96
Mesaj Tarih: 16 Nisan 2005, 15:36   Mesaj konusu:
Alıntıyla Cevap VerÖnceki Mesaj

eheh Smile
Bu ara ben değiştirdim sürümü
Forum eklediğiniz modlardan sürüm değişikliğinde oluşabilecek bir hata gözükMüyor.
Bence en çok problem yaratabilecek olan Categories hierarchie Mod ve File Attachment Mod vardı . update_to_latest.php'ye baktım da birkaç drop table vardı ama zararı olmadı Smile
Çekinenler olur diye böyle söyleyelim istedim sonuçta bir drop table'la neler olabilir Smile

phpbbstyles.com da CyberAlien açıklamış daha doğrusu birisi sormuş admin_styles.php değiştiriyoruz bir zararı varmıdır eXtreme Style için diye. yok demiş oda Smile



pardon eksik yazmışım


_________________
SCARFACE
"In this country, you gotta make the money first.
Then when you get the money, you get the power.
Then when you get the power, then you get the woman."

Tony Montana a.k.a Al Paçino
 Oylanmadı BLacK offlineKişisel Galeri - BLacKKullanıcı profilini görÖzel mesaj gönderE-mail'i 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: add, added, addstatement, admin, adminstyles, after, again,

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



Google



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

Reklam alanı  

CBACK CrackerTracker tarafından korunuyor
23190 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