Skip to content

highburyeye/sitemapxml

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

132 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SitemapXML

Version

v4.0.4 12.Mar.2025

Authors

Andrew Berezin http://eCommerce-Service.com, @mc12345678 https://github.com/mc12345678, @lat9 https://github.com/lat9

Thanks Special thanks to DivaVocals for the quality of the readme.

Description

This Script generates a Sitemap as described here:

It can be downloaded from the Zen Cart Plugins repository here: https://www.zen-cart.com/downloads.php?do=file&id=367

Note: Version 3.9.9 and later require that the store have a CHARSET that specifies utf-8 encoding and a database using a DB_CHARSET of either utf8 or utf8mb4.

Zen-Cart Versions Supported

1.5.8[a], 2.0.x, 2.1.0

Support thread

https://www.zen-cart.com/showthread.php?126810-SitemapXML-v-2

Affected files

None

Affects DB

Yes (creates new records into configuration_group, configuration and admin_pages tables).

DISCLAIMER

Installation of this contribution is done at your own risk. Backup your Zen Cart database and any and all applicable files before proceeding.

Features:

If the products, categories, reviews have not changed since the last generation (time creation corresponding xml-sitemap file), a new xml-sitemap file not created (using existing xml-sitemap).

Priority is calculated on the basis of the positions in the selection from the database, ie the operator ORDER BY in the sql query. First item have priority=1.00, last=0.10. So can no longer be situations where all items in the file have the same priority.

  • Products - ORDER BY p.products_sort_order ASC, last_date DESC
  • Categories - ORDER BY c.sort_order ASC, last_date DESC
  • Reviews - ORDER BY r.reviews_rating ASC, last_date DESC
  • EZ-pages - ORDER BY p.sidebox_sort_order ASC, last_date DESC
  • Testimonials - ORDER BY last_date DESC
  • Box News - ORDER BY last_date DESC

$_GET parameters:

  • inline=yes. Output file sitemapindex.xml. In Google Webmaster Tools you can define your "Sitemap URL": https://your_domain/index.php?main_page=sitemapxml&inline=yes ... and every time Google will receive a fresh sitemapindex.xml.
  • genxml=no. Don't generate xml-files.
  • rebuild=yes. Force rebuild all sitemap*.xml files.
  • token=xxx. If the site uses a non-blank "Execution Token", that token must be included for the sitemaps to be generated.

Comments and suggestions are welcome. If you need any more sitemaps (faq, news, etc) you may ask me, but I will do only if it matches with my interests.

Install:

  1. BACK UP your database & store.
  2. Unzip the SitemapXML package to your local hard drive, retaining the folder structure.
  3. Rename the YOUR_Admin folder in the sitemapXMLolder to match the name of your admin folder.
  4. Upload the files from sitemapXML to the root of your store. Do not upload the sitemapXML folder, just the contents of this folder and be sure to copy all of the files to your store!! Most issues are caused by store owners who decide to not load all of the module files).
  5. Set permissions on the directory /sitemap/ to 777.
  6. Go to Admin :: Configuration :: Sitemap XML and setup all parameters.
  7. Go to Admin :: Tools :: Sitemap XML (If error messages occur, change permissions on the XML files to 777).
  8. To have the site's sitemap files automatically update, you will need to set up a Cron job via your host's control panel. Refer to the admin tool's tips for additional information.

Upgrade:

Note: If you are upgrading from a version prior to v4.0.0 to v4.0.0 or later, there are files to be removed from your site. See this Wiki article for additional information.

  1. BACK UP your database & store.
  2. Unzip the SitemapXML package to your local hard drive, retaining the folder structure.
  3. Rename the YOUR_Admin folder in the sitemapXML folder to match the name of your admin folder.
  4. Upload the files from sitemapXML to the root of your store. Do not upload the sitemapXML folder, just the contents of this folder and be sure to copy all of the files to your store!! Most issues are caused by store owners who decide to not load all of the module files).

Un-Install:

See this Wiki article for additional information.

History

  • v4.0.5-beta1 2025-03-13 (lat9)
    • Don't remove spaces from EZ-Pages' sort-order, results in MySQL error.
  • v4.0.4 2025-03-12 (lat9, proseLA)
    • Use !empty instead of direct comparison to an empty string, possible NULL values.
    • Don't include manufacturers with no products in the manufacturers' sitemap output.
    • Correct detection of plugin-supplied additional tables, e.g. TABLE_BOX_NEWS.
    • TABLE_BOX_NEWS, 'news_published_date' field can be null.
    • sitemapxml_ezpages.php: Ensure that all fields for TABLE_EZPAGES are prefixed with p.
  • v4.0.3 20241202 (lat9)
    • Correct PHP warnings when a review's or manufacturer's last-update date is NULL.
  • v4.0.2 20240621 (lat9, marco-pm)
    • Correct reverse-logic when determining if Sitemap 'Execution Token' is correct.
    • Issue warning message in admin tool if Configuration :: Sessions :: Force Cookie Use is found to be 'True'; search-engine crawlers won't be able to index the site.
    • Correct PHP short-code, e.g. <? , usage. Should be <?=.
  • v4.0.1 02/04/2024 (lat9, torvista)
    • Zen Cart v2.0.0+ deprecates language::catalog_languages property.

    • Correct PHP Warning/Error when creating a new Sitemap file number.

    • Correct PHP Warnings when /sitemap.xml doesn't exist.

  • v4.0.0 08/02/2024 (lat9)
    • Drops support for Zen Cart versions prior to 1.5.8; testing on PHP versions 7.4 through 8.3 and Zen Cart 1.5.8 through 2.0.0-alpha1.

    • Removes search-engine "ping", since the SE's no longer support that feature.

    • Restructure/simplify the installation, see this Wiki article for additional information.

    • Add messaging regarding a site's robots.txt file, since it's now important to identify the main XML sitemap there.

    • "Execution token" characters are limited due to storefront sanitization; messaging added to the admin tool.

    • Correct various issues when a site compresses, i.e. gzips, the sitemap files.

    • Main sitemap file didn't appear in the admin tool's file list if its name didn't begin with 'sitemap'.

  • v3.9.9 21/05/2023 (lat9)
    • Drops support for Zen Cart versions prior to 1.5.7; tested on PHP versions 7.3 through 8.2 and Zen Cart 1.5.7 through 1.5.8a.
    • Provide interoperability with PHP 8.2, defining all class variables and removing usage of the now-deprecated utf8_encode function.
    • Removes the automatic Zen Cart check for plugin updates as that can have adverse performance implications for a site's admin processing.
    • Corrects MySQL fatal errors when run with more strict (e.g. MySQL 8) SQL servers.
    • "Refreshed" the majority of the PHP files to use now-current PHP and Zen Cart programming styles and removing code that was required for Zen Cart versions prior to 1.5.7 and/or PHP versions less than 7.3.
    • Removed configuration multi-language support.
  • v3.9.8 03/05/2023 (highburyeye)
    • Additional support for PHP 8.1
  • v3.9.7 28/04/2023 (highburyeye)
    • Add support for Zen Cart 1.5.8
  • v3.9.6 06.07.2019 13:33
    • Arrange for PHP 7.3
    • Incorporate fixes posted to forum
    • Incorporate fix for responsive_classic
    • Refactored various code
    • Addressed strict php notifications
  • v3.9.5 17.04.2017 15:55
    • Add configuration multilanguage support
  • v3.9.4 17.04.2017 14:27
    • Another Auto installer Bug fixes
  • v3.9.3 16.04.2017 18:35
    • Auto installer Bug fixes
  • v3.9.2 09.11.2016 13:37
    • Bug fixes (Select plugins)
  • v3.9.1 29.08.2016 18:56
    • Add auto installer. Thanks to Frank Riegel aka frank18
  • v3.8.0 07.07.2016 12:39
    • Code Review. Thanks to steve aka torvista
  • v3.7.0 07.07.2016 11:25
    • Add configuration parameter for categories paging
  • v3.6.0 26.04.2016 10:33
    • Bug fixes
  • v3.3.1 31.01.2015 16:27
    • Bug fixes
    • Add Product reviews pages
    • Add plugin control
  • v3.2.12 19.09.2013 8:06
    • Replace absolute path to .xsl
  • v3.2.10 22.04.2013 8:15
    • Add confirm() to delete/truncate
  • v 3.2.9 24.02.2013 13:48
    • Bug fixes
    • Delete xml validations
    • Delete absolute path from information message
  • v3.2.8 24.01.2013 18:10
    • Add url encoded for RFC 3986 compatibility.
  • v3.2.7 24.09.2012 13:23
  • v 3.2.6 17.06.2012 16:13
    • Bug fixes
    • Rewrite gss.xls
  • v3.2.5 31.05.2012 14:52
    • Add parameter "Use cPath parameter in products url". Coordinate this value with the value of variable $includeCPath in file init_canonical.php
  • v3.2.4 28.05.2012 13:38
    • Bug fixes
    • Add parameter "Check Dublicates"
    • Add parameter "Sitemap directory"
  • v3.2.2 07.05.2012 19:12
    • Bug fixes
    • Traditional code cleaning
    • Correct MagicSeo Support
    • Truncate additional multi files
    • Add sitemapXML simple file manager
    • Add 'Start Security Token'
    • Rename sitemapxml_homepage.php to sitemapxml_mainpage.php
    • Add image sitemap support https://support.google.com/webmasters/bin/answer.py?answer=178636 for products, categories, manufacturers
  • v3.1.0 14.12.2011 13:32
    • Code cleaning, Readme corrected, Small bug fix
    • Replace Configuration parameter 'Generate language for default language' by 'Using parameter language in links'
    • Modified algorithm for processing multi-language links
    • Add Sitemap Files List to admin
  • v3.0.5 02.12.2011 02:11
    • Support Box News module, cleaning
  • v3.0.4 30.09.2011 14:58
    • Code cleaning
    • Readme corrected
    • Small bug fix
    • Zen-Cart 1.5.0 compliant
    • Replace admin $_GET by $_POST
  • v3.0.3 27.08.2011 13:11
    • Small bug fix, delete Zen-Cart 1.5.0 Autoinstall
  • v3.0.2 11.08.2011 16:14
    • Lot of changes and bug fixed, Zen-Cart 1.5.0 Support, MagicSeo Support
  • v2.1.0 30.04.2009 10:35
    • Lot of changes and bug fixed
  • v2.0.0 02.02.2009 19:21
    • Initial version

About

This Script generates an Sitemap as described sitemaps.org

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • PHP 93.3%
  • XSLT 6.7%