Jump to content
xt:Commerce Community Forum

Sitemap splitten


sijandi

Recommended Posts

Hallo miteinander,

folgender Code exportiert mir ganz brav die Kategorien und Produkte. Leider bemängelt dann aber Google, dass die Sitemap zu gross (>50'000) ist.

Weiss jemand wie ich den Code anpassen muss, damit ein Split der Sitemap möglich ist?

{php}

$added = false;

if (!$added) {

global $db;

$rs = $db->Execute("SELECT * FROM xt_seo_url WHERE link_type=2");

while (!$rs->EOF) {

echo '<url>

<loc>'._SYSTEM_BASE_HTTP._SRV_WEB.$rs->fields['url_text'].'</loc>

<lastmod>'.date('c', time()).'</lastmod>

<changefreq>monthly</changefreq>

<priority>0.9</priority>

</url>'."\n";

$rs->MoveNext();

}

$added=true;

}

{/php}

<url>

        <loc>{$data.products_link}</loc>                

    <lastmod>{$smarty.now|date_format:"%Y-%m-%d"}</lastmod>    

    <changefreq>monthly</changefreq>

    <priority>0.8</priority>

</url>

Vielen Dank für Eure Hilfe

Sijandi

Link to comment
Share on other sites

  • 5 months later...

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...