Skip to main content.

CMSMS Quick E-Commerce How-To

11/12-08 at 10.09 by: Robert Campbell

Revised: April 25/2010 -- Add info for CGEcommerceBase

People have been asking about the e-commerce solutions available for CMS Made Simple, so I thought I would drop a note or two about the available solutions. There are currently two seperate and distinct solutions available for CMS Made Simple.

  • The solution created by Ted and myself.  Consisting of the Products, Cart and Orders module, along with different addon tax calculation, shipping calculation modules. and payment gateway modules.
  • The solution created by Duclet that I really don't know anything about.

This guide will be about the suite that was created by Ted and Myself.  It will illustrate how to setup a basic e-commerce system that is flexible, stylable, and extendable.  I will not delve too much into templating, or explaining each and every last option in each module, but will illustrate how to get a bare-bones basic site going.

So here goes:

First, Install the modules

At the very least, you will need the following modules:
  • CGExtensions (A toolkit I use to build all of my modules with)
  • FrontEndUsers (The module that handles users and the login process)
  • CGSimpleSmarty (A Set of smarty plugins)
  • CustomContent (A different set of smarty plugins for displaying different content to different users)
  • Products (The product management suite)
  • CGEcommerceBase (The core Ecommerce glue)
  • Cart (The basket management stuff)
  • Orders (Order processing and management)
You may also want some of these modules for shipping, taxes, and payment
  • FRShipping (Calculate shipping cost based on order weight)
  • FRTaxes (Calculate simple flat rate taxes)
  • DestinationBasedShipping (Calculate shipping cost based on destination state)
  • warehouse_taxes (Calculate taxes based on location of origin)
  • PriceBasedShipping (Calculate shipping price based on pre-tax order total)
  • PaypalGateway (Simple paypal payment processing)
A third set of optional modules:
  • SelfRegistration (Allow users to register themselves with your site)
  • GiftBaskets (A replacement for the Cart module that allows multiple different baskets with a different shipping address for each)
  • ManyBaskets (Similar to the GiftBaskets module this module allows maintaining multiple different baskets but stores basket information in the database for repeated retrieval)

The first question you're going to ask is: 'Why are there so many modules?'. The answer to this is quite simple, it allows for greater flexibility in the use of the modules (you can use some of the modules for different purposes or use a different combination of modules to achieve a different style of e-commerce site, etc), and of course it means less duplication of code, If you don't need payment processing then you don't have to install a payment gateway module.   If you require a different type of shipping or tax calculation, just plugin the appropriate module.  As well, there are now two cart modules to allow for different behaviour in the cart.

Note: use caution when installing these modules.  Make sure you analyse the dependencies for each module (you can see them by clicking on the 'about' link beside the module when you're browsing modules in Module Manager. Make sure you are running the latest release of CMS Made Simple, and it would be wise to have a 'known good' backup before making changes of this magnitude.

Secondly, Configure the modules.

Most of these modules contain an admin panel with some preferences.  You will have to explore these on your own.  for now, I'll just go through the major steps:

FrontEndUsers (Users & Groups >> FrontEnd User Management):

You will need at least one user group in FrontEndUsers to manage your customers.  So you need to create a group in FrontEndUsers.  In order to do that, you will need to create at least one property.

I typically create a couple of properties... usually one called 'Full Name' of type text, and sometimes a dropdown called 'gender', with options "Male" and "Female".

Next in the groups tab create a new group called 'ecommerce', and associate those properties with that group, and mark each property as 'Optional'.

Next I think we should check the preferences for the FrontEndUsers module, as those preferences can effect the behaviour of the rest of the module.  I suggest you change the maximum username length to 40 or greater, the length of the username field to 40... and check the 'username is email' checkbox. You may also want to ensure that the default group is set, and that 'require membership in at least one group' is also set.  Then click submit at the bottom of the form.

Lastly, because in this tutorial we aren't allowing users to register themselves, we need to create a user.  This should see a link entitled 'Add User' on the users tab in FEU.  Creating a new user should be a straight forward process.

Products (Content >> Product Manager):

You will need to adjust some preferences in the products module.  They are fairly straight forward.

Orders (Content >> Order Manager):

You will need to adjust a few preferences in the Orders module.   At a minimum select the user group that users must be a member of.  You may also want to adjust some address handling preferences (note: these preferences may move to CGEcommerceBase at a future date).

CGEcommerceBase (Extensions >> Calguys Ecommerce Base):

Here you will need to specify some preferences,particularly chose your desired 'Supplier' modules (there is the potential for more than one), and your Cart modules.  Later you will use this interface to select shipping, tax, promotion, and payment modules.

That completes the minimal configuration that you will need to do to get e-commerce working.  You probably noticed that there are alot of other options in there, and you may play with them later.  In particular you will need to adjust the settings for any payment gateway you have chosen.

Then Create Products

Okay, in order to sell things, we need to create products.  Since this isn't an indepth tutorial on the products module (I may write this later).  I'll just briefly describe some steps:

Create a Product Hierarchy

In the Product Hierarchy tab click on 'Add Hierarchy Item', and add a hierarchy item called 'Clothing', and press submit.

Next click on 'Add Hierarchy Item' again, and add a hierarchy item called 'Shirts', and select 'Clothing' as the parent.

Create a hierarchy tree similar to this:

Clothing
Shirts
Jackets
Footwear
Shoes
Boots

Create some Product Categories:

In the 'Categories' tab create categories like this:

  • Suitable for Men
  • Suitable for Ladies
  • Suitable for Children

Create individual products

in the Products tab, you can click 'Add a Product' and add a product as follows:

Name:  Logo T-Shirt
Price: 19.95
Weight: 0.25
Status: Enabled
Details: A quality, well fitting T-shirt with our label emblazened on the front.... Support your team!
Hierarchy Position: Clothing >> Shirts
Categories: Suitable for Men, Suitable for Ladies

Once you have submitted that form, you'll be returned back to the products tab in the admin panel.  On the right side of each row are three icons.... one for product attributes, another for editing the product, and a third for deleting the product.  Click on the attributes button for our newly created Logo T-shirt

In the page that is displayed, click on the 'Add Attribute' link, to display the add/edit attribute set form.

Create an attribute called 'Size' with the following values

Petite (-1.00), Small, Medium, Large, XL (+1.00), XXL(+1.00), XXXL(+2.00), and click submit.

Next create another attribute set called 'Colour' and add the following options:

Red, Green, Blue, Black, White.

Now I suggest you create at least four or five more products with different hierarchy positions, prices, weights, descriptions, categories and attributes.   This is left as an excercise for you.

At the end of this you should have a suite of configured modules, and a selection of products to test with.

Call The Modules

Here we'll create numerous pages for our various modules.  We really don't need to do this, and there are other ways to setup your display, but this will be a simple way of demonstrating the functionality of the modules.

First create a page entitled 'Login', with the menu text 'Login'.  In the content area of that page add {FrontEndUsers}.  Click Submit.

Next create a page called 'Products', with the menu text 'Products by Hierarchy'.  In the content area of that page add {Products action=hierarchy}.  Click Submit;

Next create a page called 'View Cart' with the menu text 'View Cart'.  In the content area of that page add {Cart action=viewcart}.  Click Submit

Lastly create a page called 'Orders', with the menu text 'Orders'.  In the content area of that page add {Orders}.  Note: You should also unckeck the 'cachable' flag in the options tab for this page.   The Orders module requires users to be logged in to FrontEndusers, and checks this.  This means that the contents of this page could theoretically change for each request, and cannot be cached. Then click Submit.

That's it, that's the minimal amount of stuff you have to do to get an e-commerce site working with CMS Made Simple.    Now we need to try it out.

Try It!

Now, I suggest you click on the 'View site' icon in the top right of the page, and view the changes to your site.   You should see the four pages you created.

Without logging in, you should be able to visit your new Products page, and surf down to the products.   In the detail page for each product, you should see all of the product details (size, weight, description, price, etc)... and you should see a form at the bottom allowing you to add the product to your cart.  If your product has attributes such as Size and Color you will be able to select these attributes, enter a quantity, and then add the item to your cart.

Next, once you've browsed your product tree, and added a few items to your cart, browse to the 'View Cart' you created.  You should see another form that shows the current contents of your shopping cart.  Here you can edit quantities, and remove a particular item from your cart (just set the quantity to 0).

Next you need to login.  Browse to the 'Login' page, and enter the username and password for the user you created at the beginning of this guide.   Once you click 'Login' you should see a welcome message, and the option to sign out, or change settings.  You can explore this later.

Once you are logged in, you can browse to the Orders module.  You should see a form that asks you for billing and shipping information.  Fill that out with some information (it can be fake if you want)... and click 'Next'.  You will then see the Order confirmation page, showing you the details you just entered, and the contents of your cart.  If you have configured a shipping and/or tax module you should see the calculations for tax and shipping prices.

At this point, the behaviour may change depending upon what modules you have installed.  If you have selected a payment gateway, you may see an option to pay for your order via that gateway.  However, we didn't configure a payment gateway in this totorial, therefore If you click 'Next' on this page, you will see an invoice.

Profit!!!

if you return to your admin console, and select 'Content >> Order manager', you will now see the newly created order, and be able to edit it.   You're all set to process the order you just created, and ship yourself some footwear, and clothing!!!

All that is left is to style things up in a way that fits your site, and to do your search engine optimization, and watch the orders start rolling in.

I hope you enjoyed this quick and dirty guide to e-commerce in CMS Made Simple

16/7-10 at 22.50 by: replica handbags
luyopevv <a href=" http://www.replica-watches-wholesale.com"><b>replica watches wholesale</b></a> <a href=" http://www.replica-watches-wholesale.com"><b>replica watches</b></a> <a href=" http://www.replica-watches-wholesale.com"><b>replica rolex watches</b></a> <a href=" http://www.replica-watches-wholesale.com"><b>cartier replica watches</b></a> <a href=" http://www.replicahandbagsbox.com"><b>replica handbags</b></a> <a href=" http://www.replicahandbagsbox.com"><b>replica handbags</b></a> <a href=" http://www.replicahandbagsbox.com"><b>louis vuitton handbags</b></a> <a href=" http://www.replicahandbagsbox.com"><b>replica purses</b></a> <a href=" http://www.replicahandbagsbox.com/LOUIS-VUITTON.htm"><b>Replica LOUIS VUITTON</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/GUCCI-Gucci-Handbags-53-1.htm"><b>Gucci Handbags</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/PRADA-Prada-Handbags-65-1.htm"><b>Prada Handbags</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/BURBERRY-Burberry-Handbag-161-1.htm"><b>Burberry Handbag</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/Burberry-Handbags/"><b>Burberry Handbag</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/HERMES-Hermes-Handbags-71-1.htm"><b>Hermes Handbags</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/BELTS-Hermes-Belts-96-1.htm"><b>Hermes Belts</b></a> <a href=" http://www.replicahandbagsbox.com/Replica-Handbags/BELTS-Gucci-Belts-196-1.htm"><b>Gucci Belts</b></a> <a href=" http://www.replica-watches-wholesale.com/Iwc-Watch_25.html">Iwc replica watches</a> <a href=" http://www.replica-watches-wholesale.com/Cartier-Watches_12.html">Cartier replica watches</a> <a href=" http://www.replica-watches-wholesale.com/A-Lange---Sohne_4.html">A Lange & Sohne watches</a> <a href=" http://www.replica-watches-wholesale.com/Rolex-Watches_399.html">Rolex replica watches</a> <a href=" http://www.replica-watches-wholesale.com/Bell---Ross_8.html">Bell & Ross replica watches</a> <a href=" http://www.replica-watches-wholesale.com/Breguet-Watches_9.html">Breguet replica watches</a> <a href=" http://www.voguemobile.com"><b>Replica Mobile Phones</b></a> <a href=" http://www.honeyreplicas.com"><b>replica handbags</b></a> <a href=" http://www.exact-handbags.com"><b>replica bags</b></a> <a href=" http://www.ereplicawatches.net"><b>replica watches</b></a> <a href=" http://www.top-replica-handbags.net"><b>Replica Handbags</b></a>
08/7-10 at 11.33 by: Bob
Good tutorial, thanks. Are downloadable products handled by this cart?
05/7-10 at 13.18 by: Jack
Thanks for writing this tutorial. Can you tell me how to display product images and also how the user is supposed to checkout?
30/6-10 at 07.41 by: dfxcaduf
<a href=" http://ovuqivnz.com">wrcnmuxe</a> iseoruoh http://rmyttany.com mswznoqi dfinivqi [URL=http://xmlzrgrp.com]ivmrjoow[/URL]
24/6-10 at 04.16 by: Queer As Folk DVD
hi guys, try some wonderful medium? Yes! high quality life needs it,i am a new comer here, you may be a crazy movie lover like me,there are some hot DVD movies i really like and want to share to you<a href=http://www.buydvdezy.com/goods-322-Queer-As-Folk-Seasons-1-5-DVD-boxset.html>Queer As Folk DVD</a>, i believe you will love them! it really has amazing plot , wonderful screen, and also nice musics. Don't miss it!!! ___________ i am sure you will also be intrested in links as follows. <a href=http://www.buydvdezy.com/goods-322-Queer-As-Folk-Seasons-1-5-DVD-boxset.html>Queer As Folk DVD set</a> <a href=http://www.buydvdezy.com/goods-322-Queer-As-Folk-Seasons-1-5-DVD-boxset.html>Queer As Folk DVD boxset</a> <a href=http://www.buydvdezy.com/goods-322-Queer-As-Folk-Seasons-1-5-DVD-boxset.html>Queer As Folk DVD Seasons 1-5 DVD</a>
23/6-10 at 22.58 by: Queer As Folk DVD
hi guys,why not try some medium, high quality life needs it, i suppose you are a crazy movie lover like me:p, there are one wonderful DVD movie i really love and want to share with you. Queer As Folk DVD really has amazing plot , wonderful screen, and also nice musics. Don't miss it!!! if you want Queer As Folk DVD, Queer As Folk DVD set , Queer As Folk DVD boxset or Queer As Folk DVD Seasons 1-5 DVD boxset, just go to http://www.buydvdezy.com/goods-322-Queer-As-Folk-Seasons-1-5-DVD-boxset.html i found. it is very helpful~~~ http://www.buydvdezy.com/goods-322-Queer-As-Folk-Seasons-1-5-DVD-boxset.html Don't miss it!
20/6-10 at 12.43 by: kilo
http://free-flash-player.narod2.ru/
02/6-10 at 02.17 by: authentic mauer jersey
Effiicient service - authentic mauer jersey arrived within specified delivery time. Unfortunately cheap minnesota twins jerseys were damaged in transit, but Customer Service was very helpful and a replacement arrived within a week.Shipping took a bit of time but well worth the wait. Very happy to have some fine cheap pittsburgh penguins jersey that aren't identical to the Brooks Brothers clothing that everyone wears around here!great quality jerseys I will order again. delivery really quick. can charles tyrwhitt confirm that their staff and the delivery firm that they use in north shields have special powers as the nhl pittsburgh penguins jerseys arrived so quick.So I love your company. You do everything you say. They also offered pittsburgh penguins jerseys for sale and hot sale 09-10 Olympique Lyon 3Rd and football jerseys cheap barcelona jerseys they are always with the largest merchandise time. They should be proud of themself ! http://www.alihello.com/
07/5-10 at 22.06 by: discount golf equipment
hi guys, let's do some sports . healthy life and keeping one good boy needs it, the following links will do good to you: http://www.golfclubs365.com http://www.golfequipment18.com there are two <a href=" http://www.golfclubs365.com">Golf Clubs</a> stores,include kinds of <a href=" http://www.golfequipment18.com">golf equipment</a>, <a href=" http://www.buyinggolfonline.com/">wholesale golf clubs</a>.
05/5-10 at 07.34 by: olugg
Regardless of the trend of the times and social fashion balenciaga handbags, people always can with noble quality, beyond time and society, walk oneself the ugg classic tall bootscorrect road. now, everybody to refrigerators, automobiles and houses and rush, chase, competition. this mulberry handbags is the characteristic of our age. but also have many people, they ghd hair straightener don't pursue these material things, they pursue and truth, the hermes handbags inner freedom and peace. http://www.olugg.com/specials.html
01/4-10 at 20.57 by: omega watches sale
100402SLCHF Jovons saw the kettle boil and omega classic for sale cried out with the delighted voice of discount omega casino royale a child; Marshal too had seen the omega watches sale kettle boil and sat down silently to build an engine. Man errs so long as he rolex watches sale strives. Johann Wolfgang Goethe, German poet and dramatist Man errs so long as he rolex air-king sale strives. Johann Wolfgang Goethe, German poet and dramatist Miracles sometimes occur, but one has to work terribly for rolex daytona sale them. http://www.belovewrist.com/
18/3-10 at 23.46 by: ugg classic
Regardless of the trend of the times and social fashion balenciaga handbags, people always can with noble quality, beyond time and society, walk oneself the ugg classic tall bootscorrect road. now, everybody to refrigerators, automobiles and houses and rush, chase, competition. this mulberry handbags is the characteristic of our age. but also have many people, they ghd hair straightener don't pursue these material things, they pursue and truth, the hermes handbags inner freedom and peace. http://www.olugg.com/specials.html
18/3-10 at 23.46 by: ugg classic
Regardless of the trend of the times and social fashion balenciaga handbags, people always can with noble quality, beyond time and society, walk oneself the ugg classic tall bootscorrect road. now, everybody to refrigerators, automobiles and houses and rush, chase, competition. this mulberry handbags is the characteristic of our age. but also have many people, they ghd hair straightener don't pursue these material things, they pursue and truth, the hermes handbags inner freedom and peace. http://www.olugg.com/specials.html
12/3-10 at 05.56 by: Pedes
i tried this, but i got trouble with the module manager and different installed modules after installing the orders module ... anyone aware of this issue ? On the forum i asked already for this in the module section. regards, Peter
05/12-09 at 01.51 by: cliej7865880
"Hello, lets discuss about ecommerce usa.In the U.S, every city, county and state has their own separate sales tax with differing rates, limits and deadlines. This mean ecommerce merchants who sell their products or services in the U.S. could therefore be subject to all of these taxing districts. So how are online merchants able to collect their payments of sales tax with the varying sales taxes? regards hazz.hazz"
05/12-09 at 01.06 by: clie78787878
"Hello, lets discuss about ecommerce usa.In the U.S, every city, county and state has their own separate sales tax with differing rates, limits and deadlines. This mean ecommerce merchants who sell their products or services in the U.S. could therefore be subject to all of these taxing districts. So how are online merchants able to collect their payments of sales tax with the varying sales taxes? regards hazz.hazz"
10/8-09 at 13.10 by: Jennifer Rose
This is excellent and I had no trouble following your instructions and found no errors. I live in Australia and as this allows adding Country for orders out of the USA, such as Australia, there is no state providence for NON USA countries. How do I add States for Australia as its important for filling out the order form. Thank you.......Jennifer Rose jennifer@lesbrisbane.com.au
06/8-09 at 19.38 by: Michael
I only installed the first set of modules and it works great. Had to create a config.php file, but other than that it is great. I want to know if the customers are able to check their orders once they logon.
13/7-09 at 11.42 by: Kirsty
Can the shop be made multilingual too?... I have just installed all the modules and was starting the process of configuration, but it occurred to me that there is no functionality for the shop in more than one language...
03/7-09 at 10.47 by: Fat Lizard
No &amp;#39;Checkout&amp;#39; button/option ....
29/5-09 at 20.08 by: Kenny
Thanks for this guide. I got it working just fine and look forward to tweaking and styling it.
19/5-09 at 16.17 by: Tom
Hi, Have you wrote a more comprehensive guide. I think some features from the modules have changed since this guide. Plus I'm not sure if I'm doing things correctly. :)
16/4-09 at 16.05 by: Peter Lorimer
Cant get orders to work Get this DEBUG: insert order failed... dying Using Postgres V8.3
14/4-09 at 08.15 by: jose
is there an easy way to bypass FEU module use if we don't require the user to login to shop? thank you
07/4-09 at 08.04 by: WebForm
Very nice - Just one question: Is it possible to use the same attribute sets on several products without inserting all the info over and over again?
26/3-09 at 16.37 by: Robert Campbell
@bob: Sorry, state is currently a required field... and it'd be a software modification to remove that. @andrew_syd: Yeah, Tax is calculated in the orders module, and only shown then.... this is because some places need to calculate tax on shipping, etc. As well, this allows me to later add things like coupons, and sales, etc.... and have the tax applied and calculated properly.
17/3-09 at 03.07 by: Bob Basli
Great module, unfortunately I can't seem to alter the template. I want to remove required field state (did so in my own template and calling it in the module) but after entering my billing info and clicking next I get the error message that state is not entered???? Now what to do? Regards, Bob
12/3-09 at 16.25 by: andrew_syd
How do you display the tax total in View Cart? Taxes seem to only show up AFTER the user sends through the order (i.e. in the Invoice). Am I missing something?? Thanks :)
06/3-09 at 10.26 by: Alby
As always very good job
02/3-09 at 09.38 by: njmeyer
You might want to add the Lightbox module to the list of modules to download because I was tearing my hair out trying to get rid of the smarty errors I was getting when I started using the e-commerce suite.
23/2-09 at 12.39 by: blackhawk
Love the post man! Good stuff. It'll help me out for a new online store I'm working on...
02/2-09 at 14.56 by: henry
how do you change the currency symbol in orders from $ to £ ... for some reason I can't do it. Thanks Henry
12/1-09 at 15.13 by: John Botte
Excellent :)
06/1-09 at 13.39 by: mark
Very Nice. Will be setting up one of these very soon. Only thing you said at first and didn&amp;#39;t talk about later was Custom Content. Is this not needed, if it is how would/could it be used?
26/12-08 at 10.13 by: Nuno Costa
Well Done
Written by:
Comment:
Write the chars you see in the square
This is a captcha-picture. It is used to prevent mass-access by robots. (see: www.captcha.net)
 
 

CMS Made Simple - Modules/Add-Ons

Re: Custom JQuery Image Rotation?

- Thu, 29 Jul 2010 21:23:39 GMT

I ment the CMSms Gallery module... of course  Cool

but you asked:

Is there another module you'd prefer that makes it easier for the end user?

Re: Announcement: New plug-in SuperSizer

- Thu, 29 Jul 2010 20:40:15 GMT

ok.. here is it.. all fixed and should be ready now to release..

@NikNak please test but here is my test on your images..
http://www.corbensproducts.com/blog/experimental/supersizer.html#NikNakcrop4



Please let me know.. cheers -Jeremy

PS.. I'm headed...

Re: How do I get the latest version of a file

- Thu, 29 Jul 2010 20:28:47 GMT

Hi
Many thanks for your prompt reply, its a great help to a newbe like me. I will try and sort it from hear.

Re: Custom JQuery Image Rotation?

- Thu, 29 Jul 2010 20:21:31 GMT

wait.... i AM using the gallery module...

is there something i'm missing here?

or is gallery a .js you like to use?

Re: CGBlog - A several of things

- Thu, 29 Jul 2010 20:17:22 GMT

never mind fixed it.  there was some google analytics that were not liberalized.  My mistake.

CMS Made Simple Blog

Announcing CMS Made Simple 1.8.1 - Mankara

- Tue, 13 Jul 2010 14:06:34 -0400

This release fixes an important security vulnerability, we recommend that ALL users upgrade as soon as possible. The local inclusion vulnerability fixed is old and affects many previous versions of CMSMS. Therefore it is important for ALL...

Announcing CMS Made Simple 1.8 - Madagascar

- Sat, 03 Jul 2010 20:26:55 -0400

Onwards and upwards we go. The dev team is proud to announce the latest version of your favorite content management system. This version is primarily aimed at rounding out some of the rough edges that our primary audience...

New Site Launch

- Mon, 28 Jun 2010 00:29:44 -0400

After weeks of blood, sweat and tears, we've finally launched our long awaited redesign. It's taken approximately two months from design to implementation to launch, but we're finally here. Along with our main site, we've also reskinned the...

Announcing Geek Moot 2010

- Mon, 21 Jun 2010 10:19:21 -0400

It's that time again. The developers of CMS Made Simple have finalized plans for our yearly user conference. This year, we're thinking much bigger, so join us. On 16-17 September, CMS Made Simple will host the second public Geek...

Announcing CMS Made Simple 1.7.1 - Escade

- Sat, 01 May 2010 09:47:13 -0400

Woot! CMSMS keeps getting better and better. Even though it's only a point release, this version of CMSMS fixes numerous minor bugs and adds some important features. We didn't feel that the list of changes were extensive enough to...