we added cache cleaning in v1.0.3.
thank you
thank you
AbanteCart v1.4.3 is released.

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: bs135 on June 23, 2012, 05:40:57 AM
My quantity in product option is not decreased after order confirm.
I view my database, table 'ac_products', value of field 'subtract' is '1' for all products.
But in table 'ac_order_products', value of field 'subtract' is '0' for all products.
And in file \storefront\model\checkout\order.php - line 150:
Why hasn't it update 'subtract' value for 'ac_order_products'.
foreach ($data['products'] as $product) {
$this->db->query("INSERT INTO " . DB_PREFIX . "order_products
SET order_id = '" . (int)$order_id . "',
product_id = '" . (int)$product['product_id'] . "',
name = '" . $this->db->escape($product['name']) . "',
model = '" . $this->db->escape($product['model']) . "',
price = '" . (float)$product['price'] . "',
total = '" . (float)$product['total'] . "',
tax = '" . (float)$product['tax'] . "',
quantity = '" . (int)$product['quantity'] . "'");
Please help me.?
$order_option_query = $this->db->query("SELECT *
FROM " . DB_PREFIX . "order_options
WHERE order_id = '" . (int)$order_id . "'
AND order_product_id = '" . (int)$product['order_product_id'] . "'");
foreach ($order_option_query->rows as $option) {
$this->db->query("UPDATE " . DB_PREFIX . "product_option_values
SET quantity = (quantity - " . (int)$product['quantity'] . ")
WHERE product_option_value_id = '" . (int)$option['product_option_value_id'] . "'
AND subtract = '1'");
}
Quote from: Craig on June 20, 2012, 05:10:01 AM
when i throw a few items in the cart and get to checkout confirmation it will show me the contents and individual prices but no combined total and no postage. The postage and combined total is showing on the small shopping cart icon but not on the main checkout page before confirmation.
I'm also getting about 11 warnings for different language definitions "text_confirm" is absent for english, "text_apply" "text_save_edit" etc etc? Any thoughts would be appreciated. Thanks
if ($option_value_query['subtract'] && (!$option_value_query['quantity'] || ($option_value_query['quantity'] < $quantity))) {
$stock = FALSE;
}if (!$option_value_query['subtract'] && (!$option_value_query['quantity'] || ($option_value_query['quantity'] < $quantity))) {
$stock = FALSE;
}Quote from: epanagio on June 11, 2012, 02:03:58 PM
If I have selected/enabled the UPS and USPS shipping modules, what would the customer see when s/he tries to complete the sale?
The customer will choose to checkout and proceed. Which shipping company will the software show the shopper? USPS or UPS?
Should I have only one shipping company configured?
What if you have two companies configured?
Quote from: bs135 on June 05, 2012, 11:17:09 PM
I clicked on button "confirm order", but page have not redirect on success page.
I tried in other computer, other browser. But it not work.
I chose "Pickup From Store" and "Cash On Delivery"
Quote from: payamstudent on May 27, 2012, 05:34:29 PM
How can I make the website stay on center and not to adjust with browser changes? Like how you have it on *http://www.abantecart.com *
Quote from: payamstudent on May 27, 2012, 05:34:29 PMplease, try to check this with product having rating (stars) in lists. It it works well please post solution, help us:)
another issue is when it loads the products depends on the screen resolution it put blank spot in the middle on products pictures
i found out that blank spot does not happen for actual listing it happen only when you add some listing from layout like latest or manual product listing or popular.
I also added height to ".list .list_item" under boxes.css and it resolved the blank spot issue but i am not sure if this is the best way to resolve it
Quote from: payamstudent on May 27, 2012, 05:34:29 PM
Also i noticed the custom block does not have the options to change image size and it is defaulted to 54*54
Can we make the custom block image size to be same as Product List Width and Height or add new option under admin for it
Quote from: Dunweb on May 24, 2012, 11:05:48 PM
Just a note on this:
The download (v1.01) contains a php.ini file that may conflict with your server php.ini file if you install the store into a sub-directory. I use Godaddy and had this problem today. I removed the php.ini from the sub-directory and had no additional issues.
Chris
Quote from: bs135 on April 21, 2012, 04:11:57 AMdid you tried
I too,
I use SMTP Gmail,
but I don't find anywhere to config Use Authentication and SSL,
so it doesn't work.
I have installed Gmail SMTP on Joomla, it works normally.
Of course, have setup Use Authentication and SSL on Joomla.
Please help me..