I did find one small error in the code. It does
not cause an error, but it doesn't update your items sold. I fixed it in the zip file, but if you alrady downloaded it, in store.php, find
PHP Code:
$changestorenow = $DB_site->query("UPDATE store SET sold=sold+1 WHERE action='kick'");
and replace with
PHP Code:
$changestorenow = $DB_site->query("UPDATE store SET sold=sold+1 WHERE action='$storeaction'");
This will correctly update how many of that product has been sold.