Share

YAMS

File Release Notes and Changelog

Release Name: 0.6.1

Notes: <H2>About Search</H2> It is possible to search for keywords in either the product's name or description. The current search is case insensitive and performs an AND on all search terms. It is currently present only in the front page of the store but can easily be incorporated into the template as it a simple form. <HR> <H2>Upgrading</H2> <H3>From 0.6.0 to 0.6.1</H3> <PRE> The following tables need to be added to the database CREATE TABLE product_description_search ( sku varchar(15) NOT NULL, descriptions BLOB, PRIMARY KEY(sku)); CREATE TABLE related_product_data ( id integer NOT NULL DEFAULT 0 AUTO_INCREMENT, sku varchar(15) NOT NULL, related_sku varchar(15) NOT NULL, PRIMARY KEY(id)); </PRE> Be sure to use the updated shop/index.html and shop/cart.pl.


Changes: <H3>0.6.1</H3> 10 March 2000 <UL> <LI> introduced simple product search mechanism -user can search for keywords in name of product or in the product description. <LI> introducted related products - at product creation time, related products can be chosen for the new product and these products will be soft sold to the user after the product is placed in the cart <LI> fixed problem with printLabels in Reports.pm where bundle products with shippable products would not show up in the label list. </UL>