AlwaysNewbie, on Aug 18 2008, 09:57 PM, said:
What kind of changes STS users should do?
I just installed version v3.5.6 and everything looks fine, no problem at all, .xml files are getting updated
Posted 07 November 2008, 12:19
AlwaysNewbie, on Aug 18 2008, 09:57 PM, said:
Posted 12 November 2008, 17:25
... http://www.edn.czindex.php --> 2008-11-12T16:07:48-08:00 http://www.edn.czproducts_new.php --> 2007-06-14T00:52:00-08:00 http://www.edn.czprivacy.php --> 2006-03-27T19:49:00-08:00 ...
Edited by qwasha, 12 November 2008, 17:30.
Posted 13 November 2008, 09:25
... http://www.edn.cz/ --> http://www.edn.cz/ --> http://www.edn.cz/ --> ...
Edited by qwasha, 13 November 2008, 09:27.
Posted 16 November 2008, 16:21
<?xml version="1.0" encoding="UTF-8"?> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <sitemap><loc>smmain.xml</loc><lastmod>2008-11-14T18:36:25+00:00</lastmod></sitemap> <sitemap><loc>smcats.xml</loc><lastmod>2008-11-14T18:36:25+00:00</lastmod></sitemap> <sitemap><loc>smproducts.xml</loc><lastmod>2008-11-14T18:36:25+00:00</lastmod></sitemap> <sitemap><loc>smmfg.xml</loc><lastmod>2008-11-14T18:36:25+00:00</lastmod></sitemap> <sitemap><loc>smspecials.xml</loc><lastmod>2008-11-14T18:36:25+00:00</lastmod></sitemap> </sitemapindex>For some weird reason my xml files come out like this without path....
Posted 19 November 2008, 17:31
Posted 19 November 2008, 22:23
arrowmodels, on Nov 19 2008, 05:31 PM, said:
Posted 21 November 2008, 17:40
the bookworm, on Aug 5 2008, 01:57 PM, said:
// Box Files
for ($b = 0; $b < count($boxHeading); ++$B)
{
echo '<li>'.$boxHeading[$b]['heading'][$b];
$nb_elements = count($boxHeading[$b]['filename']);
if($nb_elements > 0)
{
if (tep_not_null($boxHeading[$b]['filename'][0]))
{
echo '<ul>';
for ($f = 0; $f < $nb_elements ; ++$f)
if (tep_not_null($boxHeading[$b]['filename'][$f]))
echo '<li><a title="'. $boxHeading[$b]['boxtext'][$f] .'" href="' . tep_href_link($boxHeading[$b]['filename'][$f]) . '">' . $boxHeading[$b]['boxtext'][$f] . '</a></li>';
echo '</ul>';
}
}
echo '</li>';
}
// Box Files
for ($b = 0; $b < count($files['name']); ++$B)
{
echo '<li><a title="'. $files['name'][$b] .'" href="' . tep_href_link($files['path'][$b]) . '">' . $files['name'][$b] . '</a></li>';
}
// Box Files
for ($b = 0; $b < count($boxHeading); ++$B)
{
$nb_elements = count($boxHeading[$b]['filename']);
if($nb_elements > 0)
{
echo '<li>'.$boxHeading[$b]['heading'][$b];
if (tep_not_null($boxHeading[$b]['filename'][0]))
{
echo '<ul>';
for ($f = 0; $f < $nb_elements ; ++$f)
if (tep_not_null($boxHeading[$b]['filename'][$f]))
echo '<li><a title="'. $boxHeading[$b]['boxtext'][$f] .'" href="' . tep_href_link($boxHeading[$b]['filename'][$f]) . '">' . $boxHeading[$b]['boxtext'][$f] . '</a></li>';
echo '</ul>';
}
echo '</li>';
}
}Posted 23 November 2008, 17:31
Posted 23 November 2008, 17:42
arrowmodels, on Nov 23 2008, 12:31 PM, said:
Posted 23 November 2008, 18:11
Posted 27 November 2008, 20:42
azbrat3, on Oct 13 2008, 05:42 AM, said:
fwrite($fh, utf8_encode('<url><loc>' . smspecialchars($fPath . $files[$b]['path']) . '</loc><lastmod>' . $files[$b]['modified'] . '</lastmod></url>'."\n"));
fwrite($fh, utf8_encode('<url><loc>' . tep_href_link($files[$b]['path'],'','NONSSL',false) . '</loc><lastmod>' . $files[$b]['modified'] . '</lastmod></url>'."\n"));Posted 03 December 2008, 08:29
To make all products work with Dynamic sitemap:
[b]in customer service:[/b]
***FIND:
//BOF allprods modification
$info_box_contents[] = array('align' => 'center',
'text' => '<font size=-2><a href="' . tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL') . '">' . BOX_INFORMATION_ALLPRODS . '</a></font>');
//EOF allprods modification
***REPLACE WITH:
//BOF allprods modification
'<a href="' . tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL') . '">' . BOX_INFORMATION_ALLPRODS . '</a>');
//EOF allprods modification
Posted 03 December 2008, 10:29
Posted 03 December 2008, 19:01
Tom-, on Dec 3 2008, 12:29 AM, said:
To make all products work with Dynamic sitemap:
[b]in customer service:[/b]
***FIND:
//BOF allprods modification
$info_box_contents[] = array('align' => 'center',
'text' => '<font size=-2><a href="' . tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL') . '">' . BOX_INFORMATION_ALLPRODS . '</a></font>');
//EOF allprods modification
***REPLACE WITH:
//BOF allprods modification
'<a href="' . tep_href_link(FILENAME_ALLPRODS, '', 'NONSSL') . '">' . BOX_INFORMATION_ALLPRODS . '</a>');
//EOF allprods modification
Posted 03 December 2008, 19:55
Posted 08 December 2008, 15:10
Posted 08 December 2008, 15:33
maxemus, on Dec 8 2008, 07:10 AM, said:
Posted 15 December 2008, 00:56
lildog, on Dec 3 2008, 02:55 PM, said:
Posted 15 December 2008, 16:31
turquoi1, on Dec 14 2008, 04:56 PM, said:
Posted 16 December 2008, 15:44