************************************************** ************************************************** geeeekShop Instructions COPYRIGHT © 2003, John Hawkins ************************************************** ************************************************** Version 1.2.0 - 2003.05.21 - Changed database installation script to set up affiliates & stats tables automatically - Updated install instructions - Changed some files to make for easier installation of the tracking add-on. - Fixed bug with shipping_extra values Version 1.1.1 - 2003.05.03 - Added a script to install database tables from a browser. - Updated install instructions. - Fixed a bug with the "Pricing Info" box. Version 1.1.0 - 2003.04.25 - Added per-item shipping fees File Changes: /index.php Fixed issue with the query that writes orders to the database. /html_files/nav_right.html Added a statment to handle shipping on the featured item. /php_files/category_tools.php Added code to handle shipping feature. /php_files/product_tools.php Added code to handle shipping feature. /php_files/site.config.php Added a define statement on line 10 for handling shipping types. (add this line manually to your existing site.config.php to avoid overwriting your existing site.config.php file) /admin/html_files/add_products.html Added code to handle shipping feature. /admin/html_files/edit_products.html Added code to handle shipping feature. /admin/html_files/order_details.html Added code to display name of person ordering items. /admin/php_files/generic_tools.php Added code to display names of buyers even if they don't send a shipping address /admin/php_files/generic_actions.php Added code to display names of buyers even if they don't send a shipping address Database Changes: Added 2 fields to products table to handle shipping feature. ALTER TABLE products ADD shipping varchar(100); ALTER TABLE products ADD shipping_extra varchar(100); Added 2 fields to orders table to handle first_name / last_name for orders with no shipping address. ALTER TABLE orders ADD first_name varchar(100); ALTER TABLE orders ADD last_name varchar(100);