I am trying to setup the donations page for one of the sites I maintain. The instructions I am following are from this page
https://www.ecommercetemplates.com/help/donations.asp The instructions state to find this line
<?php include "vsadmin/inc/incproducts.php"?> but that line looks different in the page code for the template used, & change it to this
<?php
$explicitid="donation";
?>
<?php include "vsadmin/inc/incspecials.php" ?>Changing the line results in a page that the browser shows the following message - This page isn’t working - www.webdomanname.com is currently unable to handle this request. - HTTP ERROR 500
Exactly how does the replacement code need laying out for this to function?
This is the code on products.php
<?php
$GLOBALS['nobuyorcheckout']=TRUE; // Removes buy and checkout buttons
$GLOBALS['noproductoptions']=TRUE; // Removes product options
$GLOBALS['showquantonproduct']=FALSE; // Removes quantity box
$GLOBALS['showproductsku']=""; // Removes SKU field
$GLOBALS['manufacturerfield']=""; // Removes Manufacturer field
$GLOBALS['showinstock']=FALSE; // Hides out of stock products
$GLOBALS['showproductid']=FALSE; // Removes product ID
$GLOBALS['shortdescriptionlimit']=0; // Removes short description
$GLOBALS['noshowdiscounts']=TRUE; // Hides discount text
include "vsadmin/inc/incproducts.php";?>
Steve
The worlds safest web server is the one that is turned off