Arama butonu
Bu konudaki kullanıcılar: 1 misafir
0
Cevap
918
Tıklama
0
Öne Çıkarma
Mybb Dinamik Sitemap Oluşturma (Yardım)
T
7 yıl
Yüzbaşı
Konu Sahibi

Merhaba arkadaşlar.

Mybb bir forum sitesinde dinamik sitemap oluşturmak istiyorum. Yardımcı olur musunuz?

Nerede yanlış yapıyorum.




<?php
## Veritabanı bağlantısı yapalım.
@mysql_select_db("db", mysql_connect("localhost","kullanıcı adı","sifre"));
## Xml olarak göstermek için girilen komut
header("Content-Type: text/xml");
## Sitemap Bilgileri
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
';

## Site Menüleri
echo '
<url>
<loc>http://www.xxx.com/</loc>
<lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5000</priority>
</url>
<url>
<loc>http://www.xxx.com/portal.php</loc>
<lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8000</priority>
</url>
<url>
<loc>http://www.xxx.com/search.php</loc>
<lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8000</priority>
</url>
<url>
<loc>http://www.xxx.com/memberlist.php</loc>
<lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8000</priority>
</url>
<url>
<loc>http://www.xxx.com/misc.php?action=help</loc>
<lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8000</priority>
</url>
';

## Makaleleri Listele
$Makaleler = mysql_query("select * from makale where durum='0' order by id DESC");
while($Row = mysql_fetch_array($Makaleler)){

echo'
<url>
<loc>http://www.xxx.com/'.$Row["subject"].'.html</loc>
<lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5000</priority>
</url>
';
}

echo '</urlset>';
?>





< Bu mesaj bu kişi tarafından değiştirildi takalar1381 -- 23 Eylül 2017; 14:46:6 >

DH Mobil uygulaması ile devam edin. Mobil tarayıcınız ile mümkün olanların yanı sıra, birçok yeni ve faydalı özelliğe erişin. Gizle ve güncelleme çıkana kadar tekrar gösterme.