Bu makalede benden olsun
Temel 10 SMF Seo Sorunu ve Çözümleri

۰۪۪۫۫●۪۫۰Seo kurdum linklerim html olmadı۰۪۪۫۫●۪۫۰
Seo kurmakla iş bitmiyor.Gerekli ayarları yapmanız gerek.Admin paneli seo ayarları şöyle olmalıdır;

۰۪۪۫۫●۪۫۰ Konulara ve Mesajlara girilmiyor۰۪۪۫۫●۪۫۰
SMF Seo'yu kuranların genellikle karşılaştığı sorun.Sorunun nedeni ise htaccess dosyasının düzenlenmemesi veya yanlış düzenlenmesi..İlk önce htaccess dosyamızı açalım.
#If your forum is something like http://www.forum-example.com/forum then modify your
#RewriteBase in this way: RewriteBase /forum
RewriteBase /
"RewriteBase / " yazan yerin yanına forum dizinimizi yazalım.Eğer forumumuz /forum dizininde ise RewriteBase /forum , root(ana dizin)de ise RewriteBase / olarak kalması yeterli..
۰۪۪۫۫●۪۫۰ Türkçe Karakter Sorunu۰۪۪۫۫●۪۫۰
Admin panelinde ki seo ayarlarından Remove accented characters from url's ? işaretleyin.
Eğer hata devam ederse
Subs-Seo4SMF.php açın ve şunu bulun
                $chars['out'] = "EfSZszYcYuAAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy";
üst satırına bunu ekleyin
                        $name = strtr($name, 'İıĞğÜüÖöŞşÇç', 'IiGgUuOoSsCc' ;
۰۪۪۫۫●۪۫۰Ayarlar Kaydedilmiyor۰۪۪۫۫●۪۫۰
Manuel kuranlar bu sorun ile karşılaşır.Seo nun install.php si çalışmadığı için ; Phpmyadmine girip sql'a tıklayın ve bunu sorgulatın
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_beautify_profiles', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_beautify_actions', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_board_topic', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_accented_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_split_char', '_' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sql_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_keywords', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_description', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_description_length', 175);
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_description_content_index', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_description_content_topics', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_description_content_boards', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_keywords_content_topics', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_keywords_content_boards', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_digg_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_slashdot_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_furl_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_delicious_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_technorati_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_google_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_yahoo_enable', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sb_postgroups', 1);
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sitemaps_box', '' ;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_sitemaps_links', 1);
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('seo4smf_utf8_language', 0);
۰۪۪۫۫●۪۫۰Beautifying url for forum actions Sorunu۰۪۪۫۫●۪۫۰
Beautifying url for forum actions ? yanlışlıkla işaretleyenler seo yu kaldırıp yeniden kurmanıza gerek yok.Yapmanız gereken Beautifying url for forum actions işaretleyin ve htaccess dosyasını açın;
.htaccess dosyasını aç ve bul ;
#uncomment if you use beautifying url actions 
#RewriteCond %{REQUEST_METHOD} =GET
#RewriteCond %{QUERY_STRING} ^action=(.*)$
#RewriteRule  ^(.*)$ seo4smf-redirect.php?a=%1 [R=301,L]
Değiştir ;
#uncomment if you use beautifying url actions 
RewriteCond %{REQUEST_METHOD} =GET
RewriteCond %{QUERY_STRING} ^action=(.*)$
RewriteRule  ^(.*)$ seo4smf-redirect.php?a=%1 [R=301,L]
Yine bul ;
#New action Url's - uncomment if you use beautifying url actions 
#RewriteRule ^(.*)\.html(.*)$ index.php?dummy=1;action=$1;$2 [L]
#RewriteRule ^(.*)\.html$ index.php?dummy=1;action=$1 [L]
Değiştir..
#New action Url's - uncomment if you use beautifying url actions 
RewriteRule ^(.*)\.html(.*)$ index.php?dummy=1;action=$1;$2 [L]
RewriteRule ^(.*)\.html$ index.php?dummy=1;action=$1 [L]
Kaydedip kapatın..

۰۪۪۫۫●۪۫۰ Sayfa geçiş sorunu۰۪۪۫۫●۪۫۰

.htaccess aç:
bul
RewriteCond %{QUERY_STRING} ^topic=([0-9]*).([0-9]*)
değiştir
RewriteCond %{QUERY_STRING} ^topic=([0-9]*.[0-9]*)
çok sayfalı forumlarda diğer sayfala geçme
seo4smf-redirect.phpdosyasını aç ve bul
$uri = $board_name.'-b'.$board.'.0/';
değiştir
$uri = $board_name.'-b'.$board.'.'.$brest.'/';
۰۪۪۫۫●۪۫۰Seo4smf-redirect Sorunu۰۪۪۫۫●۪۫۰
Warning: require_once(forum/SSI.php) [function.require-once]: failed to open stream: No such file or directory in /home/smfgrup/public_html/forum/seo4smf-redirect.php on line 2
Fatal error: require_once() [function.require]: Failed opening required 'forum/SSI.php' (include_path='.:/usr/lib/php:/usr/local/lib/php' in /home/smfgrup/public_html/forum/seo4smf-redirect.php on line 2
Tek çözüm seo4smf-redirect.php dosyasının chmodunu 644 yapmak.
۰۪۪۫۫●۪۫۰Internal Server Error۰۪۪۫۫●۪۫۰
Not defterini açın ve içi boş kalsın.Kaydedin ismini .htaccess yapın.Ve forum dizininizde bulunan htaccess ile değiştirin.Seo ile ilgili dosyaların chmodunu 644 yapın ve Eğer sunucunuz windows ise seo çalışmaz.
۰۪۪۫۫●۪۫۰Arama sonuçlarında ki empty.html sorunu۰۪۪۫۫●۪۫۰
Arama sonuçlarında konularınız empty-t1.html şeklinde görünür.Bunu düzeltmek için Seo4SMF Admin'e girip Enable SQL Query when we don't find url in SMF Context ? yanındaki kutucuğu işaretleyip kaydetmek