Hi, David.
I have errors in the log file which are really important.
Here it is:
{code saved}
How can we solve?
I have edited the products.php file but nothing to do.
I copied the tapestry.php file but nothing. The mistakes are always the same:
{code saved}
Hi Tobix,
They appear to be related to the percentage / average discount mods but indicating that html/product.php is being included without any product results (e.g. and old product that has gone from the database) however that should be handled as it stands in the distribution. What I would suggest to cover any modifications, edit products.php and look for the following code towards the end of the script (beginning at line 160 in the distribution)
if (isset($product)) require("html/product.php");
if (isset($prices)) require("html/prices.php");
...and REPLACE with:
if (isset($product["products"]) && count($product["products"]))
{
require("html/product.php");
require("html/prices.php");
}
Cheers,
David.
--
PriceTapestry.com