This PHP program reads your QuikStore 2.12 database and creates an HTML page for each category in your database. All products within the category are then listed as links. The full description from your database is also listed below the link for added SEO. The title for each page is site to: "Site Map for 'Category Name'" The created are a group of unique words derived from the product names within the category. By using the unique words, we won't be spamming any of the words in the keyword list. There are several variables listed at the top of the sitemaps.php file that need to be changed. Be sure to open this file and set the appropriate values at the top of the file. Put this sitemaps.php file into your document root folder (where the index.html is) on the server and run it from a browser to generate the pages. http://www.YOURSITE.com/sitemaps.php You should see a list of all the pages that were created and a link at the bottom that is a list of categories with links to the individual pages that were created. NOTE: The program will try to create a "links" sub directory under your document root. It may or may not be able to do that. If you see an error when you run the program, you may need to manually create this directory. You can change this directory name by changing this variable in the program: // A subdirectory to put the link pages. // Make sure that "/" is on the end if this variable is set. // Or, set it to "" if you want the pages in the same directory this is running from. $linkPageDirectory = "links/"; If you set it empty like this: $linkPageDirectory = ""; it will create the category html pages in the same directory that the sitemaps.php is running from.