Im not sure what caused it, and have tried rolling back changes for as long as i remember. This is a 1.3.5 cart that worked fine until I installed latest GCO module ( it think this is what broek it , bit reversing out change has not fixed it)
Problem as follows
..... in shopping cart when productlist is displayed, when product list has form fields for quantity of product enabled example
http://www.scanpancookware.com/featured-products/
http://www.scanpancookware.com/products-all/
when selecting one or more products and submitting
the selected products are not being passed to the cart.
======================================================
i created inserts into error_log to highlight status
function actionMultipleAddProduct($goto, $parameters) {
global $messageStack;
if (isset($_POST['products_id'])) {
error_log("DEBUG - POST of products id is set. Values are as follows :".join(',',$_POST['products_id']));
and when I add values to form fields in product list and submit the log displays
[28-Sep-2007 11:04:15] DEBUG - POST of products id is set. Values are as follows :1,0,0,0,0,0,0,0,0,0
so as a result we never reach
while ( list( $key, $val ) = each($_POST['products_id']) ) {
so products are not added to cart.
I have traced this to death, can anyone suggest what may interfere with the contents of a POST between the form submission and the arrival at the action ?
This system uses magicSEO... i have tried with it enabled and disabled.
drByte looked at this and a few others experts, no luck yet.... please help ...mostly suggestions on what conditions may interfere with the POST data en route to the action ?
By the way ..i dont think its a PHP core config as I have another site on the same server www.swissdiamondstore.com that works fine.
Any help is HUGELY appreciated ...




