Panonun tam adresi:www.statforum.net
Soru/hata tanımlamaları:
Arkadaşlar saolsun alexis in başka bir topicte verdiği http://downloads.phpbb-seo.com/phpbb3-s ... te-38.html adresindeki
url leri html yapan phppbb seo eklentisini kurdum.Altta verdiği türkçe paketini de kurdum.
Eklentiler url oldu ama sayfalar gelmiyor.Haftalarca uğraştığım ortada forum falan kalmadı,
sorunu çözemedim allah rızası için bi el atarmısınız.
ALEXIS yazdı:Yeni mesaj ikonundaki bağlantı olmamış, ona da bir fix yazmak lazım.
Eklenti burada: http://downloads.phpbb-seo.com/phpbb3-s ... te-38.html
Bu da Türkçe karakter yamam:
- Kod: Tümünü seç
[ OPEN ]
phpbb_seo/phpbb_seo_class.php
[ FIND ]
$this->seo_path['phpbb_script'] = $script_path;
AFTER ADD
//-- [+] Turkish fix ----------------------------------------------------
//-- add
//
// --> Custom str_Replace arrays, to handle special cases properly
$this->seo_opt['url_find'] = array(
utf8_chr(286),utf8_chr(287), // g
utf8_chr(304),utf8_chr(305), // i
utf8_chr(350),utf8_chr(351), // s
);
$this->seo_opt['url_replace'] = array('g', 'g', 'i', 'i','s', 's');
//
//-- [-] Turkish fix ----------------------------------------------------
[ FIND ]
$url = preg_replace('`\[.*\]`U','',$url);
[ AFTER ADD ]
//-- [+] Turkish fix ----------------------------------------------------
//-- add
//
$url = str_replace( $this->seo_opt['url_find'], $this->seo_opt['url_replace'], $url );
//
//-- [-] Turkish fix ----------------------------------------------------






