Sitemap.xml Hatası - Google Fan Webmaster Forum
Google Fan Webmaster Forum  
herşeyi sana yazdım

Geri git   Google Fan Webmaster Forum > Google & Msn-Yahoo kardeşler > Google Optimizasyon > Sitemap
KEY
Kayıt ol Articles Sosyal Gruplar Forumları Okundu Kabul Et

Sitemap Google sitemap soru(n)lar

Cevapla
 
LinkBack Seçenekler
  1  
Alt 24-03-2011, 20:32:39
Üyeliği durduruldu
 
Standart Sitemap.xml Hatası

Arkadaşlar Smf Forum Siteme Smf Seo Yükledim Herşey Tam Yüklendi Fakat Sitemap.xml Dosyasını Açamıyorum... :S Açmak İstediğimde Bu Hatayı Veriyor:

<?xml version="1.0" encoding="UTF-8"?>
^


Buda Linki: www.futboltaraftar.com/sitemap.xml

Arkadaşlar Lütfen Yardım Edin Googlede Sitem Bile Çıkmıyo Bunun Yüzünden Konu Açıyorum İndexlenmiyo Bunun Yararı Oluyo Lütfen Bilenler Yazsın...

Konu FatalRhymeR tarafından (24-03-2011 Saat 20:41:54 ) değiştirilmiştir..
Alıntı ile Cevapla
  2  
Alt 25-03-2011, 11:42:24
Üyeliği durduruldu
 
Standart

Yokmu Bilen Arkadaşlar...
Alıntı ile Cevapla
  3  
Alt 27-03-2011, 11:13:50
 
Standart

"^" bu işareti kaldırınca düzeleceğini umuyorum bu arada sitenin çıkmaması sitemap ile ilgli değil millet öyle bi anlatıyor ki sitemap olmazsa site indexlenmez yok alt sayfaları indexlenmez gibi....

sitemap sadece googlea yardımcı olmak için sayfaların düzene sokulması haritalanması vs.. yoksa sitemap olmazsada google 2 günde 1 gelip indexler
__________________
Bismillâhirrahmânirrahîm
Alıntı ile Cevapla
  4  
Alt 28-03-2011, 18:40:33
 
Standart

Çok garip, hata verdiği satırda herhangi bir hata yok gibi görünüyor ama galiba hatayı buldum.

sitemap.php dosyasını açın

Kod:
<?xml version="1.0" encoding="UTF-8"?>
Burada bir sütun kayması var gibi. Yaklaşık 3 sütun sağa kaymış.
__________________
Pinglet! - Kim Bu Topçu? - SitemapChecker

Konu netster tarafından (28-03-2011 Saat 19:53:04 ) değiştirilmiştir.. Sebep: hatalı yazmışım..
Alıntı ile Cevapla
  5  
Alt 01-04-2011, 17:35:32
Üyeliği durduruldu
 
Standart

Malesef Kardeş Dediğin Teknikte Olmadı :S Ben Vereyim İstiyorsanız sitemaps.php dosyasını..

www.futboltaraftar.com/sitemaps.zip
Alıntı ile Cevapla
  6  
Alt 01-04-2011, 17:40:36
Üyeliği durduruldu
 
Standart

Konuyla alakasız belkide ama imzamda bulunan sitem google'de görünmüyor 10 günlük site. Herşeyi yaptım ama nedendir bilinmez halen görünmüyor Acaba neden çıkmıyor veya en geç ne zamana çıkar arkadaşlar ?
Alıntı ile Cevapla
  7  
Alt 01-04-2011, 17:51:44
Üyeliği durduruldu
 
Standart

Alıntı:
FatalRhymeR Nickli Üyeden Alıntı Mesajı göster
Arkadaşlar Smf Forum Siteme Smf Seo Yükledim Herşey Tam Yüklendi Fakat Sitemap.xml Dosyasını Açamıyorum... :S Açmak İstediğimde Bu Hatayı Veriyor:

<?xml version="1.0" encoding="UTF-8"?>
^


Buda Linki: www.futboltaraftar.com/sitemap.xml

Arkadaşlar Lütfen Yardım Edin Googlede Sitem Bile Çıkmıyo Bunun Yüzünden Konu Açıyorum İndexlenmiyo Bunun Yararı Oluyo Lütfen Bilenler Yazsın...
SMF forumunda bununla ilgili 3-5 başlık var istersen bi bak oraya
yada;

Kod:
<?php

require_once('SSI.php');

if ($modSettings['smfVersion'] < '1.1')
ob_start('ob_sessrewrite');

header('Content-Type: text/plain');

echo '<?xml version="1.0" encoding="UTF-8"?' . '>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">';

$request = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_MSG >= " . ($modSettings['maxMsgID'] - 30) . "
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$latest_post_times = array(time());
while ($row = mysql_fetch_assoc($request))
$latest_post_times[] = $row['posterTime'];
mysql_free_result($request);

$request = db_query("
SELECT ID_BOARD
FROM {$db_prefix}boards", __FILE__, __LINE__);
$boards = array();
while ($row = mysql_fetch_assoc($request))
{
$request2 = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_BOARD = $row[ID_BOARD]" . ($modSettings['totalMessages'] > 100000 ? "
AND ID_MSG >= " . ($modSettings['maxMsgID'] * 0.5) : '') . "
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$board_post_times = array(time());
while ($row2 = mysql_fetch_assoc($request2))
$board_post_times[] = $row2['posterTime'];
mysql_free_result($request2);

$boards[] = array(
'id' => $row['ID_BOARD'],
'times' => $board_post_times,
);
}
mysql_free_result($request);

$request = db_query("
SELECT ID_TOPIC
FROM {$db_prefix}topics
ORDER BY numViews + numReplies DESC
LIMIT 1000", __FILE__, __LINE__);
$topics = array();
while ($row = mysql_fetch_assoc($request))
{
$request2 = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_TOPIC = $row[ID_TOPIC]
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$topic_post_times = array(time());
while ($row2 = mysql_fetch_assoc($request2))
$topic_post_times[] = $row2['posterTime'];
mysql_free_result($request2);

$topics[] = array(
'id' => $row['ID_TOPIC'],
'times' => $topic_post_times,
);
}
mysql_free_result($request);

$request = db_query("
SELECT ID_MEMBER
FROM {$db_prefix}members
ORDER BY totalTimeLoggedIn DESC
LIMIT 20", __FILE__, __LINE__);
$members = array();
while ($row = mysql_fetch_assoc($request))
{
$request2 = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_MEMBER = $row[ID_MEMBER]" . ($modSettings['totalMessages'] > 100000 ? "
AND ID_MSG >= " . ($modSettings['maxMsgID'] * 0.5) : '') . "
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$member_post_times = array(time());
while ($row2 = mysql_fetch_assoc($request2))
$member_post_times[] = $row2['posterTime'];
mysql_free_result($request2);

$members[] = array(
'id' => $row['ID_MEMBER'],
'times' => $member_post_times,
);
}
mysql_free_result($request);

// First, the forum URL. Highest priority!
echo '
<url>
<loc>', $scripturl, '</loc>
<lastmod>', posts_max_time($latest_post_times), '</lastmod>
<changefreq>', posts_to_freq($latest_post_times), '</changefreq>
<priority>1.0</priority>
</url>';

// Now the boards!
foreach ($boards as $board)
{
echo '
<url>
<loc>', $scripturl, '?board=', $board['id'], '.0</loc>
<lastmod>', posts_max_time($board['times']), '</lastmod>
<changefreq>', posts_to_freq($board['times']), '</changefreq>
<priority>', posts_to_priority(0.8, $board['times']), '</priority>
</url>';
}

// Popular topics too...
foreach ($topics as $topic)
{
echo '
<url>
<loc>', $scripturl, '?topic=', $topic['id'], '.0</loc>
<lastmod>', posts_max_time($topic['times']), '</lastmod>
<changefreq>', posts_to_freq($topic['times']), '</changefreq>
<priority>', posts_to_priority(0.7, $board['times']), '</priority>
</url>';
}

// Most active members?
foreach ($members as $member)
{
echo '
<url>
<loc>', $scripturl, '?action=profile;u=', $member['id'], '</loc>
<lastmod>', posts_max_time($member['times']), '</lastmod>
<changefreq>', posts_to_freq($member['times']), '</changefreq>
<priority>', posts_to_priority(0.5, $board['times']), '</priority>
</url>';
}

echo '
</urlset>';

function posts_max_time($post_times)
{
if (empty($post_times) || count($post_times) == 1)
return gmstrftime('%Y-%m-%dT%H:%M:%S+00:00', time() - 3600 * 24 * 10);

return gmstrftime('%Y-%m-%dT%H:%M:%S+00:00', max($post_times));
}

function posts_to_priority($base, $post_times)
{
if (empty($post_times) || count($post_times) == 1)
return sprintf('%1.1f', $base);

$s = (max($post_times) - min($post_times)) / count($post_times);

if ($s < 3600 * 24)
$mod = 0.1;
else
$mod = 0;

return sprintf('%1.1f', $base + $mod);
}

function posts_to_freq($post_times)
{
if (empty($post_times) || count($post_times) == 1)
return 'yearly';

$s = (max($post_times) - min($post_times)) / count($post_times);

// Changes more often than every hour.
if ($s < 3600)
return 'always';
elseif ($s < 3600 * 12)
return 'hourly';
elseif ($s < 3600 * 24 * 4)
return 'daily';
else
return 'monthly';
}

?>
bu kodları sitemapgoogle.php olarak kaydedip forum anadizine atıp, daha sonra www.domain.com/sitemapgoogle.php explorer ile giriş yap, çıkan yazıları kopyala ve yeni bi txt dosyasına atıp farklı kaydet seçeneğiyle sitemap.xml olarak kaydet forum ana dizine at sorun olmayacaktır.

Konu amathus tarafından (01-04-2011 Saat 17:59:19 ) değiştirilmiştir..
Alıntı ile Cevapla
  8  
Alt 01-04-2011, 21:46:44
Üyeliği durduruldu
 
Standart

Alıntı:
amathus Nickli Üyeden Alıntı Mesajı göster
SMF forumunda bununla ilgili 3-5 başlık var istersen bi bak oraya
yada;

Kod:
<?php

require_once('SSI.php');

if ($modSettings['smfVersion'] < '1.1')
ob_start('ob_sessrewrite');

header('Content-Type: text/plain');

echo '<?xml version="1.0" encoding="UTF-8"?' . '>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">';

$request = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_MSG >= " . ($modSettings['maxMsgID'] - 30) . "
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$latest_post_times = array(time());
while ($row = mysql_fetch_assoc($request))
$latest_post_times[] = $row['posterTime'];
mysql_free_result($request);

$request = db_query("
SELECT ID_BOARD
FROM {$db_prefix}boards", __FILE__, __LINE__);
$boards = array();
while ($row = mysql_fetch_assoc($request))
{
$request2 = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_BOARD = $row[ID_BOARD]" . ($modSettings['totalMessages'] > 100000 ? "
AND ID_MSG >= " . ($modSettings['maxMsgID'] * 0.5) : '') . "
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$board_post_times = array(time());
while ($row2 = mysql_fetch_assoc($request2))
$board_post_times[] = $row2['posterTime'];
mysql_free_result($request2);

$boards[] = array(
'id' => $row['ID_BOARD'],
'times' => $board_post_times,
);
}
mysql_free_result($request);

$request = db_query("
SELECT ID_TOPIC
FROM {$db_prefix}topics
ORDER BY numViews + numReplies DESC
LIMIT 1000", __FILE__, __LINE__);
$topics = array();
while ($row = mysql_fetch_assoc($request))
{
$request2 = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_TOPIC = $row[ID_TOPIC]
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$topic_post_times = array(time());
while ($row2 = mysql_fetch_assoc($request2))
$topic_post_times[] = $row2['posterTime'];
mysql_free_result($request2);

$topics[] = array(
'id' => $row['ID_TOPIC'],
'times' => $topic_post_times,
);
}
mysql_free_result($request);

$request = db_query("
SELECT ID_MEMBER
FROM {$db_prefix}members
ORDER BY totalTimeLoggedIn DESC
LIMIT 20", __FILE__, __LINE__);
$members = array();
while ($row = mysql_fetch_assoc($request))
{
$request2 = db_query("
SELECT posterTime
FROM {$db_prefix}messages
WHERE ID_MEMBER = $row[ID_MEMBER]" . ($modSettings['totalMessages'] > 100000 ? "
AND ID_MSG >= " . ($modSettings['maxMsgID'] * 0.5) : '') . "
ORDER BY ID_MSG DESC
LIMIT 10", __FILE__, __LINE__);
$member_post_times = array(time());
while ($row2 = mysql_fetch_assoc($request2))
$member_post_times[] = $row2['posterTime'];
mysql_free_result($request2);

$members[] = array(
'id' => $row['ID_MEMBER'],
'times' => $member_post_times,
);
}
mysql_free_result($request);

// First, the forum URL. Highest priority!
echo '
<url>
<loc>', $scripturl, '</loc>
<lastmod>', posts_max_time($latest_post_times), '</lastmod>
<changefreq>', posts_to_freq($latest_post_times), '</changefreq>
<priority>1.0</priority>
</url>';

// Now the boards!
foreach ($boards as $board)
{
echo '
<url>
<loc>', $scripturl, '?board=', $board['id'], '.0</loc>
<lastmod>', posts_max_time($board['times']), '</lastmod>
<changefreq>', posts_to_freq($board['times']), '</changefreq>
<priority>', posts_to_priority(0.8, $board['times']), '</priority>
</url>';
}

// Popular topics too...
foreach ($topics as $topic)
{
echo '
<url>
<loc>', $scripturl, '?topic=', $topic['id'], '.0</loc>
<lastmod>', posts_max_time($topic['times']), '</lastmod>
<changefreq>', posts_to_freq($topic['times']), '</changefreq>
<priority>', posts_to_priority(0.7, $board['times']), '</priority>
</url>';
}

// Most active members?
foreach ($members as $member)
{
echo '
<url>
<loc>', $scripturl, '?action=profile;u=', $member['id'], '</loc>
<lastmod>', posts_max_time($member['times']), '</lastmod>
<changefreq>', posts_to_freq($member['times']), '</changefreq>
<priority>', posts_to_priority(0.5, $board['times']), '</priority>
</url>';
}

echo '
</urlset>';

function posts_max_time($post_times)
{
if (empty($post_times) || count($post_times) == 1)
return gmstrftime('%Y-%m-%dT%H:%M:%S+00:00', time() - 3600 * 24 * 10);

return gmstrftime('%Y-%m-%dT%H:%M:%S+00:00', max($post_times));
}

function posts_to_priority($base, $post_times)
{
if (empty($post_times) || count($post_times) == 1)
return sprintf('%1.1f', $base);

$s = (max($post_times) - min($post_times)) / count($post_times);

if ($s < 3600 * 24)
$mod = 0.1;
else
$mod = 0;

return sprintf('%1.1f', $base + $mod);
}

function posts_to_freq($post_times)
{
if (empty($post_times) || count($post_times) == 1)
return 'yearly';

$s = (max($post_times) - min($post_times)) / count($post_times);

// Changes more often than every hour.
if ($s < 3600)
return 'always';
elseif ($s < 3600 * 12)
return 'hourly';
elseif ($s < 3600 * 24 * 4)
return 'daily';
else
return 'monthly';
}

?>
bu kodları sitemapgoogle.php olarak kaydedip forum anadizine atıp, daha sonra www.domain.com/sitemapgoogle.php explorer ile giriş yap, çıkan yazıları kopyala ve yeni bi txt dosyasına atıp farklı kaydet seçeneğiyle sitemap.xml olarak kaydet forum ana dizine at sorun olmayacaktır.
Hocam Aslında Ben Seonunkini Kullanmak İstiyorum O Güncel Ya O Yüzden.
Alıntı ile Cevapla
  9  
Alt 01-04-2011, 21:49:55
 
Standart

dostum sitemap üzerinde değişiklik yaptıysan. orjinal halini gelişmiş bir editörde düzeltmeni tavsiye ederim. aynı sorun ben notepad ile düzenleme yaptığımda oluyordu.
__________________
Aydınlık yolu herkes bulur, mesele karanlık yolda ışık aramak.
Alıntı ile Cevapla
  10  
Alt 01-04-2011, 21:52:14
Üyeliği durduruldu
 
Standart

Alıntı:
aeon Nickli Üyeden Alıntı Mesajı göster
dostum sitemap üzerinde değişiklik yaptıysan. orjinal halini gelişmiş bir editörde düzeltmeni tavsiye ederim. aynı sorun ben notepad ile düzenleme yaptığımda oluyordu.
Dostum Sitemap Üzerinde Hİçbir Değişiklik Yapmadım Sadece Seo Yükledim O Kadar Eğer Yapabilirsen Kardeş korkmaz_serhat@hot... Eklermisin Belki Yaparsın Lütfen..
Alıntı ile Cevapla
Cevapla


Bookmarks

Seçenekler

Yetkileriniz
Konu Acma Yetkiniz Yok
Cevap Yazma Yetkiniz Yok
Eklenti Yükleme Yetkiniz Yok
Mesajınızı Değiştirme Yetkiniz Yok

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-Kodu Kapalı
Trackbacks are Kapalı
Pingbacks are Kapalı
Refbacks are Açık



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 04:56:19.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

“İnsanların en hayırlısı, insanlara faydalı olandır”. H.Ş

Hosting by Radore Hosting

İçerik sağlayacı paylaşım sitelerinden biri olan R10.net WebMaster Forum Adresimizde 5651 Sayılı Kanun’un 8. Maddesine ve T.C.K’nın 125. Maddesine göre TÜM ÜYELERİMİZ yaptıkları paylaşımlardan sorumludur. R10.net hakkında yapılacak tüm hukuksal Şikayetler adresi ile iletişime geçilmesi halinde ilgili kanunlar ve yönetmelikler çerçevesinde en geç 1 (Bir) Hafta içerisinde R10.net yönetimi olarak tarafımızdan gereken işlemler yapılacak ve Avukatlarımız size dönüş yapacaktır.
ARGUS_OK

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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252