Jump to content

eriknv

Member
  • Posts

    74
  • Joined

  • Last visited

Everything posted by eriknv

  1. Thanks for all the comments! This is some debug info: First I added 2 the same products (91,90), after that I updated the products to 3. 'id' => 7930 'quantity' => '3' 'digital' => '0' 'options' => '1' => '29106' 'options_identifier' => 'd41d8cd98f00b204e9800998ecf8427e' 'option_line_price' => 0 'total_price_each' => '45.95' 'description' => ' Blablabla' 'product_code' => '82438916' 'product_weight' => 0 'tax_each' => false 'By_Category_Shipping' => 3.95 'weight' => '0.000' 'discount' => '0.00' 'subtotal' => '137.85' 'total_tax' => '0.00' 'total' => '141.80' As you can see I use decimal points for every value. This is debug when I was logged in and add the same products in 2 times (first 2 and later update to to 3) 'id' => 7930 'quantity' => '3' 'digital' => '0' 'options' => '1' => '29106' 'options_identifier' => 'd41d8cd98f00b204e9800998ecf8427e' 'option_line_price' => 0 'total_price_each' => '45.95' 'description' => ' Blablabla' 'product_code' => '82438916' 'product_weight' => 0 'tax_each' => false 'By_Category_Shipping' => 3.95 'weight' => '0.000' 'discount' => '0.00' 'subtotal' => '137.85' 'total_tax' => '0.00' 'total' => '137.85' 'shipping' => 'offset' => 1 'name' => 'Gratis verzending (Bij besteding vanaf €100)' 'value' => 0 'tax_id' => 0 The bold values (From 'shipping' =>) ​​were missing in the debug before I logged in. Maybe that is causing the problem?
  2. I added this in my cart.class.php file and it looks like it works. if ($this->basket['subtotal'] > 100) { $this->basket['By_Category_Shipping'] = 0; $this->basket['shipping']['offset'] = 1; $this->basket['shipping']['name'] = 'Gratis verzending bij besteding vanaf €100,-'; $this->basket['shipping']['value'] = 0; $this->basket['shipping']['tax_id'] = 0; $this->_shipping = 0; } The code above bellow this line: if (isset($this->basket[$tax_on]['state_id']) && isset($this->basket['shipping'])) { $GLOBALS['tax']->productTax($this->_shipping, $this->basket['shipping']['tax_id'], false, $this->basket[$tax_on]['state_id'], 'shipping'); } Can somebody give some feedback on this? Even if this code is really terrible.
  3. Good suggestion Dirty Butter. Unfortunately, upgrading to the latest version did not solve the problem. Hopefully there is a quick solution for the problem bsmither. Maybe somebody knows a temporary solution. Something hard coded in the cart class like this: if ($this->basket['subtotal'] > 100) { $this->basket['shipping'] = 0; } Thanx in advance.
  4. Hello, I have a problem with the shipping value. I am using 2 shipping methods for my webshop: 1. Free Shipping (minimum order value $100,-) 2. Per Category (some categories are $2.95 and some categories are $3.95) When I put 2 products of $60 directly from the product page in my basket there is no problem. The shipping cost is 0.00, that's exactly right. There is only a problem when i first put one product in the basket from $60,- and change the quantity to 2 on the basket page. The shipping cost is still $3,95 where it needs to be 0,00 (subtotal is $120).. This problem only appears on the 'shopping-cart' page before the user is logged in. On the 'index.php?_a=confirm' page everything works fine (When a user is logged in). I am using Cubecart 5.2.2. Can somebody help me with this problem? Thanx in advance. Erik
  5. I have applied the changes. Unfortunately, it has not solved the problem. Now I get the server error when I view the orders page (/admin.php?_g=orders).
  6. Thank you Brian, the pagination problem is solved! Unfortunately, there is a new problem emerged after the execution of the adjustments. When you click on the "Save button" (left button) after changing a status of an order, I get a server error. This problem does not occur when you click the "Save & Refresh" button (right button). After clicking the "Save & Refresh" button, I will redirected to mysite.com/admin.php?_g=orders&page=all&sort[order_date]=DESC#order_summary. I think the page=all makes the problem. I have to many orders to show all on one page. Any idea how to solve this problem?
  7. Thank for your answer! I discoverd that what you said is true. The problem is again happening on this moment. I changed the skin to Classic (Normal cubecart skin) and then the shoppingcart and the login are working fine! The problem is in the skin that I'm ussing. Not in Cubecart! (What I thought)
  8. Now you can see the problem is still on my site. Check: http://www.parfumwebshop.nl .....
  9. Thanx for your answer Ausy. I just fixed that problem. Do you think that's the mainproblem of the shopping cart problems in my store?
  10. Sorry for my late response. I tried to fix this problem by myself whitout any result. Hereby, I provide you with a more detailed description of the problem. On certain moments (frequently more than 3 times a day), the shopping basket does not function at all (for about 30 min till 2 hours). On these moments, nobody can use it and no orders are placed. In these cases, it is sometimes possible to get products in the shopping basket. However, if the customer selects ‘show shopping basket’, the shopping basket page shows an empty shopping basket. At the top of the page, it says there are products inside though. The problem still is there on this moment. I didn't receive any order the last 4 hours. So the problem is for everyone.... I just recorded the screen during the problem. I'm not certain if the problem is only when the site is busy. That's what I thought. And here you can see the shopping cart problem: (choose for HD quality) http://www.youtube.com/watch?v=ijn95fWlR-U
  11. I had the same problem and changed the settings in the ini.inc.php to ## Brute Force Protection $ini['bfattempts'] = 155; ## Allowed number of login attempts $ini['bftime'] = 0; ## Number of seconds to prevent login for Now the problem is solved.... ;)
  12. Hi everyone, Since my website has been upgraded from cubecart 4.2.1 to the newest version (4.3.7) the shopping basket does not work, in case the website is busy (many clients at the same time). It does not depend on the browser one uses (Firefox, Internet explorer 6, 7, 8 all don't work). The shopping basket shows that there are no products inside, while one has placed 1 or several products in the shopping basket. Is there anyone who can solve this problem? I know there are many topics about this issue, however I read all these topics but no one can help me out. At this moment, this problem still occurs while I'm writing. However, sometimes there is no problem at all (when it is not busy). Click on the link below to see it yourself: http://www.parfumwebshop.nl I will offer a reward for a solution to this problem. Erik
  13. I had the same problem. I skipped the changes in jslibary.js and that solved the problem....
  14. I've also the same problem. I'm running cubecart 4.3.3. Does anyone know if this problem is fixed in cubecart 4.3.4? It's a hell of a job to upgrade to te latest version (4.4.6)
  15. I've the same problem since I'm running with 4.3.3..... Does anyone know if this problem is solved in version 4.3.4 ? My shop uses many mods so it's a hell of a job for me to upgrade to the newest version (4.3.6).
  16. You can find it here: http://forums.cubecart.com/index.php?showtopic=35499
  17. Thanx for this Wonderful explaination! Is it also possible to make a different tpl for every category? I want te show my subbrands in a catogory on the left side en some sales in the content when you view a category page.
  18. Hello, Where can I change the Cubecart Favicon? I want my own Favicon.
  19. I want for every category a different template. Is that possible?
  20. I tried to replace: ## Build SQL for product options $query = sprintf("SELECT B.*, T.option_name, T.option_type, M.value_name FROM %1\$sCubeCart_options_bot AS B LEFT JOIN %1\$sCubeCart_options_mid AS M ON B.value_id = M.value_id, %1\$sCubeCart_options_top AS T WHERE B.option_id = T.option_id AND B.product = %2\$d ORDER BY T.option_name ASC", $glob['dbprefix'], $_GET['productId']); for ## Build SQL for product options $query = sprintf("SELECT B.*, T.option_name, T.option_type, M.value_name FROM %1\$sCubeCart_options_bot AS B LEFT JOIN %1\$sCubeCart_options_mid AS M ON B.value_id = M.value_id, %1\$sCubeCart_options_top AS T WHERE B.option_id = T.option_id AND B.product = %2\$d ORDER BY T.option_[b]id[/b] ASC", $glob['dbprefix'], $_GET['productId']); But it don't work. I want to order my product options alphabeticly. Can somebody help me? I use Cubecart 4.2.0.
×
×
  • Create New...