I’ve just installed the quickstart installation. I also installed one of my own products. However, every product is returning a 404 error. Is there a setting that I missed in doing the quickstart?
http://www.islandwatersports.com/shop/
The product that I added is: http://www.islandwatersports.com/sho…ateboards.html
Thanks,
Mike
1 answer
Hi Mike,
Please try with following way:
-- Reindex your data in Backend > System > Index Management
-- Take a look at the Catalog -> Url Rewrtie Section in admin to see if a rewrite is added for that product.
-- You may also want to check report_event_types table to see if the values below exist, if not then insert them (Always BACKUP your database before making changes):
INSERT INTO `report_event_types` (`event_type_id`, `event_name`, `customer_login`) VALUES
(1, ‘catalog_product_view’, 1),
(2, ‘sendfriend_product’, 1),
(3, ‘catalog_product_compare_add_product’, 1),
(4, ‘checkout_cart_add_product’, 1),
(5, ‘wishlist_add_product’, 1),
(6, ‘wishlist_share’, 1);
Once again, BACKUP your database befor making changes.
Regards.