Respuesta: Smline - crea tu weeb warez en alguno host el sitemap.php sabe traer problema y no logra visualizarse
bien en este script para eso mismo les traigo este fix solo remplazen el codigo del sitemap.php por el siguiente
[code]
<?php
header ("content-type: text/xml");
$sistemapx = true;
require('SM_start.php');
$query_posts = $mysqli->query('SELECT c.c_seo, p.p_id, p.p_title FROM posts AS p LEFT JOIN posts_cats AS c ON p.p_cat = c.c_id WHERE p.p_status = \'1\' ORDER BY p.p_id DESC');
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php
while($row = $query_posts->fetch_assoc()){
?>
<url>
<loc><?=$web['url']?>/posts/<?=$row['c_seo']?>/<?=$row['p_id']?>/<?=seo($row['p_title'])?>.html</loc>
<changefreq>daily</changefreq>
</url>
<?php
}
?>
</urlset>
[/code]
|