Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
752 views
in Technique[技术] by (71.8m points)

debugging - Error : Not all products are available in the requested quantity !! what does this mean?

i get this error when trying to submit the order in the shopping cart : Not all products are available in the requested quantity

I have set the quantity to 1000 and made it in stock ... I have just installed magento and some other extensions , , so what i did wrong ,,

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

OK, I thought I'd better add a new answer so that I can add links and format code, etc. Apologies for the duplicate.

Well, learning to debug your code is definitely a big step up, but one that will provide a huge amount of insight into what the code is actually doing rather than relying on echo and print_r! :) Particularly for complex and genuinely object-oriented code where you jump around between objects all the time.

Firstly, make sure you're using a proper IDE. Again, I recommend Netbeans, but Eclipse will work. All links from here on will assume Netbeans.

There's a great tutorial on what debugging is with an example here on the Netbeans wiki. There are also setup guides for OSX, Windows and Ubuntu, so choose your poison!

The reason why I suggested the CartController.php and updatePostAction is because you can read from Magento's URL structure what module, controller and action are being called. So, if you inspect the form in the cart page (/checkout/cart), you'll see that the form submits to /checkout/cart/updatePost/, which means Mage_Checkout is the module, CartController is the controller and updatePostAction is the method. So when the user hits the "Update Shopping Cart" button, control (and the contents of the cart) will be passed to that method, hitting your breakpoint. You could also choose addAction in the same class to catch it as it is added from the product page.

Once you're in the active debugging session, inspect the variables and add watches (if necessary) to observe what's going on. Use your F8 key to move through and F7 to dive to interesting calls.

Debugging will definitely take you at least a day to get your head around the process, but the investment is definitely worthwhile, it will make you a much better developer.

Good luck! JD


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

Just Browsing Browsing

[2] html - How to create even cell spacing within a

1.4m articles

1.4m replys

5 comments

56.7k users

...