• How To, Magento

    Magento Multiple Stores Sharing One Cart

    Magento Multiple Stores Sharing One Cart

    Posted on January 2nd, 2010

    Written by CJ

    Tags

    Multiple Stores and One Checkout (One Cart).

    The reason I wrote this instructional tutorial, is that some other online forums, tutorials, and blogs, are not showing how to share the same cart with multiple Magento stores. Multiple stores with one checkout is an extremely important feature. This tutorial is also for people who search for titles like, "How to setup up Multiple Stores in Magento", but their article doesn’t show how to share the cart. For example, one tutorial says to create a new website scope in Magento; which unless you edit some expensive core magento files, is not the correct way for a multiple store shopping cart sharing solution. Another article, by someone who seems to be a convincing webmaster, says you can not share a cart with different domains; he’s crazy. You can share a cart with multiple stores, with any shopping cart web application, i.e. Zen Cart, osCommerce, CRE Loaded, X-Cart, Miva, and any web application. Magento, just facilitates this dream without having to buy any plugins, extensions, addons, or hire a programmer.

    Anyways, I hope my in-depth tutorial here gives you instructions and answers to those comments and helps you get the job done. The following tutorial is based on a tested and live environment with a shared shopping cart solution on two stores, on one IP address, two domains, and with one SSL certificate (optionally two or more certificates).

    The Environment

    Main store alias is magento-main.com, and the second store alias is magento-2nd.com.

    1 - Dedicated Server (you physically own it and can access it remotely or locally)
    1 - LAMP or WAMP (Linux or Windows)
    1 - IP address
    1 - magento-main.com - virtual host www root directory for main store
    1 - magento-2nd.com - virtual host www root directory for 2nd store
    1 - Magento Admin Control Panel which is your main store.
    1 - SSL certificate
    Option 1. Two SSL certificates on one IP Address, by adding another secure port of 444 to 2nd Store.
    Option 2. One SSL certificate, for your main store. Any secure request in your 2nd store will redirect to your secure main store.
    Option 3. No SSL certificates.

    A word of advice, "if possible" stop using hosting solutions which limit your admin powers in C-Panel, Plesk, etc.., and set up your own server, unless of course you are geographically limited. If you have gotten this far with ecommerce, I am pretty sure you can set up your own server.

    Preface

    You will not be installing another Magento installation for your 2nd Store. Your current installation of Magento is your Main Store. And you will be sharing everything needed for one checkout with multiple stores, including sessions with your current installation of Magento. All this with two or multiple domains, and with 1 and optionally with 2 or more secure domains. In this tutorial there is no instructions for multiple IP addresses. Although this is the case, I gather you can use my tutorial to write your own comment or tutorial on multiple IP addresses.

    Let’s get started.


    Help Links to AWStats and WAMP



    Until you are ready, always work on a development environment, when testing.

    Login into your main site magento-main.com Magento Admin.

    Step 1. Catalog Section

    • Set up a Root Catalog
      Magento Admin>Catalog>Add Root Category
      Name it, Root Second Store
    • Set up Subcategory
      Magento Admin>Catalog>Add Subcategory
      Name it, Second Store SubCategory
    • Apply a Product to the new Subcategory, Second Store SubCategory
      Magento Admin>Catalog>Select, Second Store SubCategory
      Select, Category Products Tab
      Click on drop down, and change from Yes to Any (if it’s not already set to any)- hit enter if it doesn’t fetch
      Check the radio button on the product you want to add to this category
      Click on, Save Category
      Do the same for, Root Second Store

    Step 2. Manage Stores Section

    • Add 2nd Store
      Magento Admin>System>Manage Stores
      Create Store
      For Name enter, Second Store
      For Root Category, select Root Second Store
      Save Store
    • Configure Language/Store View
      Magento Admin>System>Manage Stores
      Create Store View
      For Store, select Second Store
      For Name, enter English
      For Code, enter second_store_en
      For Status, enter enabled
      Leave sort order alone (optional)

    Step 3. System Configuration Section

    • Change Base URLS
      System>Configuration>Web
      Change Current Configuration Scope (top left) to Second Store > English
      Select Unsecure. For Unsecure Base URL and Base Link URL, uncheck radio button and change to http://magento-2nd.com/
      Select Secure. For Secure Base URL and Base Link URL, uncheck radio button and change to https://magento-2nd.com/
      • Option 1. Two or More Certificates and One IP address:
        You’ll be able to run two SSL certificates on one Ip Address, by changing the port. So, go to System>Configuration>Web choose Second Store scope and for Secure, instead of entering https://magento-2nd.com/ you would enter https://magento-2nd.com:444/ This way your main site magento-main.com will use the normal 443 secure port and your 2nd store will be redirected to a new secure port of 444. The downside is 444 will be showing in the URL. So to hide (mask) the 444, I suggest you google "hide port number in url" through the use of apache module mod_proxy. You will also need to configure your secure vhost file to listen and respond through port 444 requests only on your 2nd site. If you want to run more secure sites on the same IP, than increment the corresponding ports.
      • Option 2. One SSL Certificate and One IP address:
        There is two ways to accomplish this.

        The first way to accomplish this is, you can simply do a redirect (as I did) from your 2nd Store for all secure request, to redirect to your main store, magento-main.com. In other words, when ever the customer selects a secure link on the 2nd store, it will send them over to your main store. To do this, go to System>Configuration>Web choose Second Store scope and for Secure, https://magento-2nd.com/ you would deselect the radio button for, Use Secure URL’s in the Frontend, and change the drop down from yes to no. Open your magento-2nd.com/.htaccess file with any text editor and insert the following in between the existing <IfModule mod_rewrite.c> and </IfModule> section.

        RewriteCond %{HTTPS} !=on
        RewriteRule ^customer(.*) https://magento-main.com/customer$1 [R,L]
        RewriteRule ^checkout/onepage(.*) https://magento-main.com/checkout/onepage$1 [R,L]

        So any of your clickable secure links on the frontend of magento-2nd.com will redirect to corresponding URL in secure magento-main.com.

        The second way to accomplish this, go to System>Configuration>Web choose Second Store scope and for Secure, make sure https://magento-main.com/ is in the base_link_url and the base_url. Make sure to select the radio button for, Use Secure URL’s in Frontend, to yes.
        So any of your clickable secure links on the frontend of magento-2nd.com will redirect to secure magento-main.com. This is Magento’s preferred way of redirecting.

        Either way will work, just depends on your setup and your needs.

      • Option 3. No SSL Certificates:
        To do this, go to System>Configuration>Web choose Second Store scope, and for https://magento-2nd.com/ you would deselect the radio button for, Use Secure URL’s in Frontend, and change the drop down from yes to no. I am not going to say anything, do what you want.

      Please Note: To save you time please understand how Apache works. Currently, in order to run multiple ssl (secure) sites on the same server securely and correctly, you only have two choices; using multiple IP’s or somehow changing the port as in option 1.

    Step 4. WAMP or LAMP, change index.php and create symbolic links.

    No need to install another Magento installation. Even though I am showing WAMP here, I strongly recommend you build it on a Linux Server. Magento and most all Open Source Web Apps are built and tested for Linux. The reason we chose WAMP, is strictly because the customer has IBM BladeCenters, which at this time does not support Linux Ubuntu Server, if it did we’d only have BladeCenters ;)

    • For WAMP (Windows Apache MySQL PHP, Server)
      http://www.wampserver.com/en/

      Using a wampserver installation with the following directory structures.

      wamp\www\magento-main.com\
      wamp\www\magento-2nd.com\

      We are going to do symbolic links, which Windows does not support, so we have to install additional software tools.
      Download and install HardlinkShellExt http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html

      Pay Attention Here:
      Right Click on your wamp\www\magento-main.com\404 directory and select, Pick Link Source
      Right Click on your wamp\www\magento-2nd.com directory and select, Drop As > Junction

      Do this for wamp\www\magento-main.com\app, downloader, js, media, report, skin, and var directories. You will now have 8 aka symbolic links in your wamp\www\magento-2nd.com directory

      Now go to your wamp\www\magento-main.com\ and copy both the .htaccess and the index.php into wamp\www\magento-2nd.com\
      Using any text editor, open wamp\www\magento-2nd.com\index.php, and change:

      $mageFilename = 'app/Mage.php';

      to this

      $mageFilename = '../magento-main.com/app/Mage.php';

      Change this:

      Mage::run();

      to this:

      Mage::run('second_store_en','store');

    • For LAMP (Linux Apache MySQL PHP, Server)

      It’s very simple for a LAMP server with the following directory structures.

      /var/www/magento-main.com/
      /var/www/magento-2nd.com/

      Do symbolic links (for each) with command line:

    prompt>ln -s /var/www/magento-main.com/404 /var/www/magento-2nd.com/404
    prompt>ln -s /var/www/magento-main.com/app /var/www/magento-2nd.com/app
    prompt>ln -s /var/www/magento-main.com/includes /var/www/magento-2nd.com/includes
    prompt>ln -s /var/www/magento-main.com/downloader /var/www/magento-2nd.com/downloader
    prompt>ln -s /var/www/magento-main.com/js /var/www/magento-2nd.com/js
    prompt>ln -s /var/www/magento-main.com/media /var/www/magento-2nd.com/media
    prompt>ln -s /var/www/magento-main.com/report /var/www/magento-2nd.com/report
    prompt>ln -s /var/www/magento-main.com/report /var/www/magento-2nd.com/report
    prompt>ln -s /var/www/magento-main.com/skin /var/www/magento-2nd.com/skin
    prompt>ln -s /var/www/magento-main.com/var /var/www/magento-2nd.com/var

    • You will now have 8 symbolic links in your /var/www/magento-2nd.com/ directory. Now go to your /var/www/magento-main.com/ and copy both the .htaccess and the index.php into var/www/magento-2nd.com/. Using any text editor, open /var/www/magento-2nd.com/index.php, and change:

      $mageFilename = 'app/Mage.php';

      to this

      $mageFilename = '../magento-main.com/app/Mage.php';

      Change this:

      Mage::run();

      to this:

      Mage::run('second_store_en','store');

    Step 5. Take your new Ferrari out for a Test Run:

    Go to http://magento-2nd.com/ - you will see the new site with the following message, "There was no Home CMS page configured or found".

    Go to http://magento-2nd.com/second-store-subcategory - you will see the one product you chose. (please note: second-store-subcategory would be the default url, but it might be different for your install check Admin>Catalog>URL Rewrite Management> for the correct URL.)

    Go to http://magento-2nd.com/second-store-subcategory - add the product to your cart. Go to magento-main.com and add any one product to the cart. You will now see two products in your cart, in either magento-2nd.com/checkout/cart/ or magento-main.com/checkout/cart/

    If these url’s work than, than pat your friend on the back, and skip Step 6. TroubleShoot and Solutions and go to Step 7 Tidy Up.

    Step 6. TroubleShoot, and Solution

    • http://magento-2nd.com, is not resolving.
      Rename index.php to index_.php and create a new blank file and name it index.html. If it still doesn’t resolve, than it has nothing do with this tutorial. 1. Check your Web Server (WAMP or LAMP) log files, for troubleshooting. 2. If it’s local copy of magento-2nd.com, make sure you change your system host file to reflect your server IP Address.
    • http://magento-2nd.com is displaying 404, http://magento-2nd.com/\404.
      1. Check above tutorial, and make sure you didn’t leave out or misspell something. This also probably means everything works on your WAMP or LAMP, but http://magento-2nd.com/magento is somehow not connecting to http://magento-main.com/magento. 2. Make sure you didn’t alter any core magento files in the past, which may be affecting the connection. 3. If your running, linux it could be it’s not allowing relative URLS, so change the above ‘../magento-main.com/app/Mage.php’; to an absolute url ‘/var/www/magento-main.com/app/Mage.php’; 4. Make sure you have the correct PHP/Apache modules, settings, and/or extensions enabled. 5. Also, 404 can mean infinite problems, so report them here to see if I can help.
    • Cart sharing doesn’t work.
      This can mean many solutions. If you chose file based session (which is the default) when you first installed magento, delete all the sessions content of your http://magento-main.com/var/session directory. Refresh your browser on your https://magento-main.com site and your https://magento-2nd.com site. If you see two session files in the session directory, than this probably means your http://magento-2nd.com/index.php or your magento admin panel > system > manage stores configuration is incorrect, so report here to see if I can help.

    Step 7. Tidy Up

    Here are some things you might want to do next:

    Quick solution to change your 2nd store theme.
    Depending on your theme setup this may or may not work for you, or you might have to do some tweaking. But I’ll show you how to quickly change the theme with the following directory structure:

    magento-main.com\skin\frontend\magento-main_theme
    magento-main.com\app\design\frontend\magento-main_theme

    Make duplicate copies of both magento-main_theme into corresponding directory and rename them to magento-2nd_theme. Your directory should now look like this:

    magento-main.com\skin\frontend\magento-main_theme
    magento-main.com\skin\frontend\magento-2nd_theme
    magento-main.com\app\design\frontend\magento-main_theme
    magento-main.com\app\design\frontend\magento-2nd_theme

    Go Magento Admin>System>Configuration>Design
    Change Current Configuration Scope (top left) to Second Store > English
    In Package, for Current package name uncheck both radio buttons and change, to magento-2nd_theme

    Please note, this may or may not work for you, depending on your theme setup.

    Thanks for reading my blog.

    I really hope my instructions helped. Also, there are many more tidy up tasks to do after creating your second store. So, if you know of any, please feel free to comment on these ‘tidy up tasks’ or any other related issues.

    This entry was posted on Saturday, January 2nd, 2010 at 6:47 pm and is filed under How To, Magento. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
  • 15 Comments

    Take a look at some of the responses we've had to this article.

    1. " Magento Multiple Stores Sharing One Cart "

      John Smith
      Posted on January 27th

      This really isn’t clear on the whole “two stores 1 cart” situation. Its just like any other multiple-store setup.. I’ve done this and my store isn’t sharing the cart..

    2. " Magento Multiple Stores Sharing One Cart "

      CJ
      Posted on February 9th

      John,
      I think you need to check your sessions. If you have file based:
      Go ahead and delete all the sessions content of your /var/www/magento-main.com/var/session directory. Refresh your browser on your http://magento-main.com site and your http://magento-2nd.com site. You should only see one session (one file) being created. If you see two sessions (2 files), then follow the tutorial above and make sure you didn’t leave anything out.
      CJ

    3. " Magento Multiple Stores Sharing One Cart "

      Posted on February 12th

      I was create multiple store.
      but common user account and shopping cart can not we working.

      pls replay me how to work in easy php

    4. " Magento Multiple Stores Sharing One Cart "

      CJ
      Posted on February 12th

      Nakul,

      I hope I can better understand your question. As per ‘common user account’, are you referring to store guest or users signed in? Either, user account can share the cart. They don’t have to be signed in, to share cart. As far as, easy php, can you elaborate?

      CJ

    5. [...] actually works! I feel like I have to apologize to Magento. After following these instructions, Magento Share One Cart, it gave me the solution. And now both sites are sharing the [...]

    6. " Magento Multiple Stores Sharing One Cart "

      Tirmont
      Posted on February 15th

      Dear all,

      I would greatly appreciate your advice. I think I face an SEO issue with the configuration of my multi web sites. Here you are what I have :

      http://www.site.fr
      http://www.site.com
      http://www.site.de
      http://www.site.ru
      http://www.site.cn

      When I look the code source they all get their “stylesheet” from an other domain : http://www.site.info

      For example the http://www.site.com code source is :

      When I look the magento mall example it is more like i should have somthing like that :

      I do think that this is an SEO issue specilay for google. Would it be possible that google does not like the fact the some files of the code come from an other domain?

      I wonder that because I am very well rank (1st or 2nd place) for more than 150 keywords on Yahoo, Baidou and Yandex, but I stay at 2nd or 3rd page one google.

      What do you think of that?

      Thank you for your answer

    7. " Magento Multiple Stores Sharing One Cart "

      Tirmont
      Posted on February 15th

      For example the http://www.site.com code source is :

      link rel=”stylesheet” type=”text/css” href=”http://www.site.info//skin/frontend/sitecom/site/css/boxes.css” media=”all” />
      link rel=”stylesheet” type=”text/css” href=”http://www.site.info//skin/frontend/sitecom/site/css/menu.css” media=”all” />
      link rel=”stylesheet” type=”text/css” href=”http://www.site.info//skin/frontend/sitecom/site/css/clears.css” media=”all” />

      When I look the magento mall example it is more like i should have somthing like that :

      link rel=”stylesheet” type=”text/css” href=”http://www.site.com/skin/frontend/sitecom/site/css/reset.css” media=”all” />
      link rel=”stylesheet” type=”text/css” href=”http://www.site.com/skin/frontend/sitecom/site/css/boxes.css” media=”all” />
      link rel=”stylesheet” type=”text/css” href=”http://www.site.com/skin/frontend/sitecom/site/css/menu.css” media=”all” />
      link rel=”stylesheet” type=”text/css” href=”http://www.site.com/skin/frontend/sitecom/site/css/clears.css” media=”all” />

    8. " Magento Multiple Stores Sharing One Cart "

      CJ
      Posted on February 15th

      Tirmont,

      I definitely agree, having stylesheets from another domain, even if it’s your domain can’t be good, for SEO and other reasons; especially with Multiple Stores. I am pretty sure you have already checked your Admin > System > Configuration > Web > URLS, but I would double check them, and make sure you have the correct urls, respective to the Current Configuration Scope, on top left. Also, you might uncheck the, ‘Use website’ check boxes on all the Base URLs for the Multiple Stores, and “manually” insert them.

      For example, the URL set for your China Configuration Scope: would read, Base URL http://www.site.cn/, Base Link URL http://www.site.cn/, Base Skin URL http://www.site.cn/skin/, Base Media URL http://www.site.cn/media/, and Base JavaScript URL http://www.site.cn/js/ .

      Do this for all URL sets in all your Configuration Scopes, accept your Default and Main Store, which would read Base URL http://www.site.com/, Base Link URL http://www.site.com/, Base Skin URL {{unsecure_base_url}}skin/, Base Media URL {{unsecure_base_url}}media/, and Base JavaScript URL {{unsecure_base_url}}js/

      You would also do the above for all the secure URLS as well.

      How about your directory structure for you skin. In my experience, the following directory works without issues and is a workaround for a design flaw (possibly a bug) in Magento, of which I’ll address next.

      skin/frontend/sitecn/default/
      skin/frontend/sitecom/default/
      skin/frontend/sitefr/default/

      app/design/frontend/sitecn/default
      app/design/frontend/sitecom/default
      app/design/frontend/sitefr/default

      This directory structure helps solve the 404 issue you get when you place two different items in the cart from two different stores. In this scenario, if the customer were to click on the item from their shopping cart it will 404. With the above directory structure, they will not see a 404, but will see the view page of the current store. You can see others are also having the same issue: http://www.magentocommerce.com/boards/viewthread/73227/

      If you try the above directory structure, not only will your one shared cart in multiple stores work better, but I think the directory structure may have something to do with your stylesheet URLS. Anyways, if you would try the above mentioned, hopefully it will resolve your css issue.

    9. " Magento Multiple Stores Sharing One Cart "

      Tirmont
      Posted on February 16th

      Dear CJ,

      Many thanksfor your post, I will try all that right away

    10. " Magento Multiple Stores Sharing One Cart "

      Tirmont
      Posted on February 16th

      Dear CJ,

      I just tried your advice for site.cn in the code source the stylesheets come from the right website ! However, I have lost all my disign.. It there an other thing I should do…?

      Once again thank you for your great advice I really appreciate

    11. " Magento Multiple Stores Sharing One Cart "

      Monty
      Posted on February 16th

      I want to thank you for this instructions n great job on the detail.

      It worked flawlessly but now, i’m having problems with the two sessions showing instead of one, now. I have followed your tutoiral on development stores, to the tee. I disabled the cache in Magento and removed all the sessions, manually. When I first start it, it worked fine (one session/one cart for multiple stores). But after I enable the cache it never wants to share the cart, and two sessions keep showing up. Can you please help me.

    12. " Magento Multiple Stores Sharing One Cart "

      CJ
      Posted on February 16th

      @Monty

      Thanks so much for the compliment. As you pointed out, it has something to do with the cache and session, or vise versa.

      One cache most people forget is the APC, or XCache (other wise known as Opcode Caches). This may or may not help, but at any rate, if you are running any of these PHP helper accelerators, then you also need to clear “all of them”. If all your multiple stores are running on different IP addresses (or different server), you have to delete each of the multiple store’s Opcode Caches, as well.

      Even though Magento has little affect on the browser you use, another cache, people forget about is your browser cache. For example, Firefox, Chrome, IE, etc… will store the sessions (cookies) and it’s configurations, in it’s local cache. So delete your sessions and cache in your browser. To Disable the Firefox cache altogether. Type about:config in the Firefox address. Look for browser.cache.memory.capacity and browser.cache.disk.capacity and set them to 0.

      Also, check your computer system clock settings in windows or or whatever OS your using to share the cart with Magento multiple stores. The clock settings are common causes for cookie (session) issues. If you go to one store and checkout on another, Magento or most all cookie dependent web apps won’t know how to handle the session being passed, due to the time not being consistent. So, instead of using the current session for one cart in multiple stores, it will create a new session.

      Multiple stores and sharing one cart with one session is also dependent on the permissions and ownership on the Magento directories (folders). For development reasons, I would chmod 777 both var/session and var/cache. I would also CHOWN these folders with the appropriate user; it’s different for every server. You can check your phpinfo(), some users may include nobody, apache, www-data, etc.. dependent on your Linux distribution or Windows server. As an extra measure, I would delete app/etc/use_cache.ser; Magento will automatically replace it.

      First, before clearing opcode caches, take your development Magento main and multiple store sites offline, so no one but you can access it. If your Magento sessions are on the database, then delete with the following sql command, TRUNCATE TABLE `core_session; it will delete all the cache from the core_session table on the Magento store database. If the sessions are on a file, then delete them as well. Delete all the var/cache too.

      If you have APC, XCache, or a variant than you need to clear all Opcode Caches caches for all the multiple stores that are sharing the one cart. If your ‘APC’ didn’t come with the tool to clear the cache, you can download it, here http://webdevster.com/downloads/one-cart/multiple_store_clear_cache.zip You will need to extract and edit the apc_clear_cache.php file and change the username and password to be able to clear the cache. Make a copy of each of the apc_clear_cache.php and place each apc_clear_cache.php file in each of the main and multiple stores directory. Clear all cache, User Cache Entries, Pre-Directory Entries, and System Cache Entries (as an extra measure). To run, point your browser to magentomultiplestore.com/apc_clear_cache.php or wherever you placed the files.

      Optionally you can disable the apc, by removing it from your local.xml or remove it all together from php, by commenting it in php.ini.

      You say, when you first installed Magento with the multiple stores, the cart was sharing. But, after you enabled cache it stopped sharing. If my above recommendations don’t help, I would also try to remember what else happened before or during the event when the cart stop sharing.

      Well by doing the above steps, you should be back to square one, with a clear cache and session. After you get Magento to share cart, I would advice to turn the cache back on, because it will speed up Magento significantly.

      Also don’t forget to chmod the directories back to a secure setting. The settings (chmod) depends on who owns the folder.

      Hope this works for you.

    13. " Magento Multiple Stores Sharing One Cart "

      CJ
      Posted on February 17th

      @ Tirmont

      Try clearing out your Magento Cache, maybe the old settings for stylesheet are still being applied. If you haven’t already, it’s a good idea to work with no cache, while you are testing your multiple stores with one shared shopping cart. It’s also a good idea to disable cache during major configurations of your multiple stores.

      Also, if you have set an expiration date on your stylesheets, and/or if you are using GZIP compression for your stylesheets and JS; the style sheet settings can probably still be sitting in your (minified) JS cache which compresses the css. You might also, want to delete those css cache as well.

      One more step, which probably won’t have any affect, but is worth trying, is disable cache from your browser. For example, like I mentioned to Monty, Firefox, Chrome, IE, etc… will store the sessions, stylesheets, configurations, etc.. in it’s local cache. Since you don’t have a problem with sessions, I would manually disable firefox’s cache altogether, when testing.

      Use the reply to Monty, to clear out all your cache in your Magento main store and multiple stores.

    14. " Magento Multiple Stores Sharing One Cart "

      Posted on March 12th

      Thank you for the post. I’ve done this, but it ‘broke’ my checkout when I changed the secure base url. The customer login doesn’t work either. But that doesn’t make sense to me. I’m using Shared SSL and that might be the problem. But I want to make sure the three stores will work together in 1 cart before I buy an SSL cert Any ideas? Thank you SO much!!

    15. " Magento Multiple Stores Sharing One Cart "

      CJ
      Posted on March 12th

      Penny,
      When you type in the URL for Secure and Unsecured, I would try typing in the full absolute URL, and not the {{…}}. The shared SSL should have nothing to do with breaking your cart. Make sure you configured the SSLCertificateFile, SSLCertificateKeyFile,
      SSLCertificateChainFile directive in the htaccess.

      FYI- I would definitely get three SSL certificates. Comodo is free for 90 days so its great for development environment. The only downside from using Comodo free trial, is the sales reps are very persistent in upselling you. Comodo does have better deals than all the others (Verisign, GeoTrust, etc…), in regards to the green bar and the ease in acquiring.

      -CJ

  • Post a Comment

    Let us know what you thought.

  • Name:

    Email:

    Website:

    Message: