Friends of Virtuemart
Good Morning:
Continuing with my web settings, I created a test user and tried to make a purchase, but I have a step that has stopped me. Could anyone help?.
attached a screen shot
Joomla 2.5.6
Virtuemart 2.0.10
Thanks in advance.
[attachment cleanup by admin]
Hi Tamakom,
If you turn on VM debug in your configuration, this will help you get to the bottom of your issue.
You're trying to use the WEIGHT_COUNTRY shipping method, which takes into account 4 things:
- Weight
- Number of Products
- Order Amount
- Zip
The plugin looks for the 4 conditions. You'll always have a ZIP, Number of Products is nullable, Order Amount is nullable, but Weight is always required.
The plugin will spit out some debug info
QuoteInfo: weigth_countries _weightCond orderWeight:0.1 method->weight_start: method->weight_stop: 0 result:1
Info: weigth_countries _nbproductsCond nbproducts:1 method->nbproducts_start:1 method->nbproducts_stop:0 result:1
weigth_countries _orderamountCond cart_amount:34.99 method->orderamount_start:0 method->orderamount_stop:0 result:1
weigth_countries _zipCond zip:7157135
The thing is... all conditions must be
TRUE in order for the cart to process. If any of the results above is 0, then that's where your problem lies. It's a bit hard to find th fault in your system as everyone's shop is set up differently, but start with this.
Good luck.
Quote from: ivus on August 27, 2012, 02:34:30 AM
Hi Tamakom,
If you turn on VM debug in your configuration, this will help you get to the bottom of your issue.
You're trying to use the WEIGHT_COUNTRY shipping method, which takes into account 4 things:
- Weight
- Number of Products
- Order Amount
- Zip
The plugin looks for the 4 conditions. You'll always have a ZIP, Number of Products is nullable, Order Amount is nullable, but Weight is always required.
The plugin will spit out some debug info
QuoteInfo:
The thing is... all conditions must be TRUE in order for the cart to process. If any of the results above is 0, then that's where your problem lies. It's a bit hard to find th fault in your system as everyone's shop is set up differently, but start with this.
Good luck.
ivus
Thank you very much. Your guidance was very helpful. I managed to show the shipment.
However, I can not find a module or component free to test with calculation of rates from one city to another, or from one country to another.
Regards
Hi Tamakom,
QuoteHowever, I can not find a module or component free to test with calculation of rates from one city to another, or from one country to another.
-- yeah no you won't.
Usually it's specific to the service you're trying to use, like FedEx, UPS, UPSP etc.