I've set up a B2B site powered by Magento 1.4.2 community edition. Occasionally, customers are trying to checkout with a large number of items in their shopping cart - up to 250! My issues are twofold:

  1. When there are that many items in the cart, simple navigation through the site becomes extremely slow for the user.
  2. On the OnePage checkout, when they get around to submitting the order, they get a javascript popup simply stating "undefined" and they remain on the onepage checkout page.

Does anyone have any similar experience in dealing with this type of issue?

I've tried to implement memcached as well as full page caching hoping that it would help alleviate some of the stress off the server but it hasn't been effective in solving this issue.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

I've ran into similar issues with the Enterprise version of Magento. You might try disabling the shopping cart sidebar, if you have not already done so, that should help the site speed when browsing. We changed the sidebar so that if there was more than 25 items in it, it would not try to load the products, which helped a great deal.

For the second error, if you use Firebug and Firefox as you step through the order process, you should get more error information than "undefined" which would help figure out what is going on there.

You could also try bumping up the memory_limit for php.ini, we ended up setting ours to 256mb, which solved most of the memory errors for our site.

link|improve this answer
thanks! implementing these suggestions and will let you know how it goes... – VinnyD Mar 1 '11 at 20:51
apparently the "undefined" error was related to memory_limit & max_execution_time settings as I was just able to place an order. it did take a heck of a time to actually place the order and moving step to step in the checkout process. there is no sidebar on the checkout page so do you have additional suggestions to speed this up? – VinnyD Mar 1 '11 at 21:36
2  
At this point you're probably looking at tweaking my.cnf settings, using something like eAccelerator, etc. Magneto has a whtiepaper covering a lot of server optimizations you can do: magentocommerce.com/whitepaper It says it's for Enterprise, but most of the information is good for CE as well. – Josh Mar 1 '11 at 22:43
thanks, will give this a try! – VinnyD Mar 1 '11 at 23:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.