Announcement

Collapse
No announcement yet.

Miva Merchant 9.0004 Bug Reports

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Miva Merchant 9.0004 Bug Reports

    Please post any 9.0004 Bug Reports here. Thank you.
    Last edited by Rick Wilson; 07-30-15, 06:53 AM.
    Thanks,

    Rick Wilson
    CEO
    Miva, Inc.
    [email protected]
    https://www.miva.com

    #2
    Re: Miva Merchant 9.0004 Bug Reports

    We are getting an "Authentication Failed" message when trying to generate FedEx labels after upgrading to 9.0004 this morning.

    We have an open support ticket for this.
    www.kicks-ind.com
    www.comp-n-choke.com

    Comment


      #3
      Re: Miva Merchant 9.0004 Bug Reports

      Hi aubreyd

      --Edit--

      You are right, this is caused by 9.0004.

      In 9.0004 MvfedexSoap was updated from v9 API to v16 API. It looks like the two APIs are using a different database for meter numbers, and so trying to use a V9 meter number in the V16 API does not work.

      Fixing this is as simple as clicking the Generate new meter number on the FedEx Web Services tab.

      Hope this helps

      -Eric
      Last edited by Eric Foresman; 07-30-15, 08:21 AM.
      Eric Foresman
      Software Tester
      Miva Merchant
      http://www.mivamerchant.com/
      [email protected]

      Comment


        #4
        Re: Miva Merchant 9.0004 Bug Reports

        URI Management Icon is missing (checked 3 stores so far).
        Leslie Kirk
        Miva Certified Developer
        Miva Merchant Specialist since 1997
        Previously of Webs Your Way
        (aka Leslie Nord leslienord)

        Email me: [email protected]
        www.lesliekirk.com

        Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

        Comment


          #5
          Lost FedEx Rate calculations

          I updated to 9.0004 this morning and immediately lost our FedEx rates. I have a ticket open.

          I opened another thread earlier (before the bug thread was created).
          http://www.bandana.com
          http://www.wholesaleforeveryone.com

          Comment


            #6
            Re: Miva Merchant 9.0004 Bug Reports

            Hi Eric, I tried to generate a new meter number but also got the Authentication Failed message. Unless the meter issue is specific to making labels in the MM Admin.

            Originally posted by Eric Foresman View Post
            Hi aubreyd

            --Edit--

            You are right, this is caused by 9.0004.

            In 9.0004 MvfedexSoap was updated from v9 API to v16 API. It looks like the two APIs are using a different database for meter numbers, and so trying to use a V9 meter number in the V16 API does not work.

            Fixing this is as simple as clicking the Generate new meter number on the FedEx Web Services tab.

            Hope this helps

            -Eric
            http://www.bandana.com
            http://www.wholesaleforeveryone.com

            Comment


              #7
              Re: Miva Merchant 9.0004 Bug Reports

              Weird, I just checked my own store and the icon is fine. I'm sure we'll get you squared away.
              Thanks,

              Rick Wilson
              CEO
              Miva, Inc.
              [email protected]
              https://www.miva.com

              Comment


                #8
                Re: Miva Merchant 9.0004 Bug Reports

                At the moment, I consider this a bug because running the 9.4 update might be breaking the category_listing:page_links urls. Without doing a template change the Store_Code and CatlistingOffset is missing a "&" clicking the pagination page #s gives me a store not found type crash.

                In the page_links urls I am seeing:

                &Screen=&Store_Code=MyStorCodeCatListingOffset=-20&

                instead of:

                &Screen=&Store_Code=MyStorCode&CatlistingOffset =-20&


                I have the Base Ready already installed. So Far, Replacing the section for the last page offset from stock Base RT, didn't actually fix the link but was utilizing the short link version instead, so it's a workaround of sorts.

                This I think is the stock Base RT for this code:

                Code:
                											
                <mvt:if expr="l.settings:category_listing:page_links:last_page GT 1">
                	<div class="col-md-9 col-sm-9">
                		<div class="paging">
                			<mvt:if expr="NOT l.settings:category_listing:page_links:contains_first">
                				<a href="&mvte:category_listing:page_links:first_link;">1</a><span class="dots">&hellip;</span>
                			</mvt:if>
                			<mvt:foreach iterator="pages" array="category_listing:page_links:pages">
                				<mvt:if expr="l.settings:category_listing:page_links:current_page EQ l.settings:pages:page_num">
                					<span class="current">&mvte:pages:page_num;</span>
                				<mvt:else>
                					<a href="&mvte:pages:link;">&mvte:pages:page_num;</a>
                				</mvt:if>
                			</mvt:foreach>
                			<mvt:if expr="NOT l.settings:category_listing:page_links:contains_last">
                				<span class="dots">&hellip;</span>
                                                     <a href="&mvte:category_listing:page_links:last_link;">&mvte:category_listing:page_links:last_page;</a>
                			</mvt:if>
                		</div>
                     </div>
                </mvt:if>
                This is what I replaced it with:

                Code:
                <mvt:if expr="l.settings:category_listing:page_links:last_page GT 1">
                	<div class="page-links">
                		<span class="page-links-title">Page(s):</span>
                		<span class="page-links-container">
                		<mvt:if expr="l.settings:category_listing:page_links:current_page NE 1">
                			<a href="&mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:prev_link_params;" class="page-links-previous"><</a>
                		<mvt:else>
                			<span class="page-links-previous page-links-deactivated"><</span>
                		</mvt:if>
                		<mvt:if expr="l.settings:category_listing:page_links:current_page NE l.settings:category_listing:page_links:last_page">
                			<a href="&mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:next_link_params;" class="page-links-next">></a>
                		<mvt:else>
                			<span class="page-links-next page-links-deactivated">></span>
                		</mvt:if>
                		<span class="page-disp">
                		<mvt:if expr="NOT l.settings:category_listing:page_links:contains_first">
                			<a href="&mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:first_link_params;" class="page-links-inactive">1</a>...
                		</mvt:if>
                		<mvt:foreach iterator="pages" array="category_listing:page_links:pages">
                			<mvt:if expr="l.settings:category_listing:page_links:current_page EQ l.settings:pages:page_num">
                				<span class="page-links-active">&mvte:pages:page_num;</span>
                			<mvt:else>
                				<a href="&mvte:urls:_self:auto_sep;&mvte:pages:link_params;" class="page-links-inactive">&mvte:pages:page_num;</a>
                			</mvt:if>
                		</mvt:foreach>
                		<mvt:if expr="NOT l.settings:category_listing:page_links:contains_last">
                			...<a href="&mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:last_link_params;" class="page-links-inactive">&mvte:category_listing:page_links:last_page;</a>
                		</mvt:if>
                	</span>
                </span>
                </div>
                </mvt:if>
                Hopefully, this explains what I've found and I included the code I used get the pagination working. You'll need to go to http://www.miva.com/mm9.4_template_changes.html for all the template changes you might need.

                NOTE: because I am using a styled template, Base RT for my case, I'll need to restyle this section of code with Bootstrap css.

                The problem still exists if you look at Tokenlist. The full URL for the page_links still are missing the "&".

                Scott
                Need to offer Shipping Insurance?
                Interactive Design Solutions https://www.myids.net
                MivaMerchant Business Partner | Certified MivaMerchant Web Developer
                Competitive Rates, Custom Modules and Integrations, Store Integration
                AutoBaskets|Advanced Waitlist Integration|Ask about Shipping Insurance Integration
                My T-shirt Collection is mostly MivaCon T-shirts!!

                Comment


                  #9
                  Re: Miva Merchant 9.0004 Bug Reports

                  Scott,

                  That is true. We'll likely be pushing a very small update in a couple hours to fix this automatically but here is the manual fix:

                  The temporary change fixes that will need to be made in order for the product list pages to work (PLST with the Product List, CTGY with the Product List, PROD with the Related Product List, and SRCH with with search results product list will all need to have their templates updated). The existing code contains the following links:

                  Code:
                  &mvte:category_listing:page_links:prev_link;
                  &mvte:category_listing:page_links:next_link;
                  &mvte:category_listing:page_links:first_link;
                  &mvte:pages:link;
                  &mvte:category_listing:page_links:last_link;

                  which should each be changed to:


                  Code:
                  &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:prev_link_params;
                  &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:next_link_params;
                  &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:first_link_params;
                  &mvte:urls:_self:auto_sep;&mvte:pages:link_params;
                  &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:last_link_params;
                  Last edited by Doug Borowski; 07-30-15, 09:00 AM.
                  Thanks,

                  Rick Wilson
                  CEO
                  Miva, Inc.
                  [email protected]
                  https://www.miva.com

                  Comment


                    #10
                    Re: Miva Merchant 9.0004 Bug Reports

                    Thanks Rick. Glad to see I was speaking Miva without my accent today. :) IOW: I spoke coherently enough....
                    Need to offer Shipping Insurance?
                    Interactive Design Solutions https://www.myids.net
                    MivaMerchant Business Partner | Certified MivaMerchant Web Developer
                    Competitive Rates, Custom Modules and Integrations, Store Integration
                    AutoBaskets|Advanced Waitlist Integration|Ask about Shipping Insurance Integration
                    My T-shirt Collection is mostly MivaCon T-shirts!!

                    Comment


                      #11
                      Re: Miva Merchant 9.0004 Bug Reports

                      After installing the update, it looks like all of our sub-categories no longer have the header and footer variables (l.settings:category:header/footer). Any top level category seems fine, however. They (the sub-category variables) are blank, despite the categories having info in these fields.

                      Also, when at [User Interface > Pages > Edit Page: Category Display], if we bring up the Token List and put in a sub-category, the page will update as though it is trying to bring up the higher level category.

                      ex:
                      Top Level Category: Cell Phone [code: cell-phone]
                      Sub-Category: Samsung [code: samsung-cell-phone]
                      If 'samsung-cell-phone' is entered for the category on the token list, it'll instead display the higher level category 'cell-phone'

                      We have an open support ticket for this issue.

                      Comment


                        #12
                        Category Header/Footer display problem

                        Category Header display problem in a Category and ALL its subs.

                        EVERY sub category will display the Header and Footer of the TOP level parent. I have verified that all the header and footer data is still in each category. The top most level parent display the headers and footers correctly. (FYI - We are using Sebenzas Category Template Manager)

                        Example - This is correctly displaying the headers and footers for this category
                        http://www.wholesaleforeveryone.com/.../bandanas.html

                        Every sub category shows the same headers and footers. It is less obvious in other categories because the top levels didn't have any header and footers, so all the subs also are blank.
                        http://www.wholesaleforeveryone.com/...gle-piece.html
                        or
                        http://www.wholesaleforeveryone.com/...gle-piece.html
                        or
                        http://www.wholesaleforeveryone.com/...tes-dozen.html

                        I opened a ticket for this also.

                        -Mike
                        http://www.bandana.com
                        http://www.wholesaleforeveryone.com

                        Comment


                          #13
                          Re: Miva Merchant 9.0004 Bug Reports

                          Originally posted by Rick Wilson View Post
                          Scott,

                          That is true. We'll likely be pushing a very small update in a couple hours to fix this automatically but here is the manual fix:

                          The temporary change fixes that will need to be made in order for the product list pages to work (PLST with the Product List, CTGY with the Product List, PROD with the Related Product List, and SRCH with with search results product list will all need to have their templates updated). The existing code contains the following links:

                          Code:
                          &mvte:category_listing:page_links:prev_link;
                          &mvte:category_listing:page_links:next_link;
                          &mvte:category_listing:page_links:first_link;
                          &mvte:pages:link;
                          &mvte:category_listing:page_links:last_link;

                          which should each be changed to:


                          Code:
                          &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:prev_link_params;
                          &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:next_link_params;
                          &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:first_link_params;
                          &mvte:urls:_self:auto_sep;&mvte:pages:link_params;
                          &mvte:urls:_self:auto_sep;&mvte:category_listing:page_links:last_link_params;

                          What about Search? My pagination buttons are broken too. Support fixed my categories, but....
                          Thank you,
                          John

                          Comment


                            #14
                            Re: Miva Merchant 9.0004 Bug Reports

                            John,

                            Same solution for Search (or you can wait for the bug fix patch in an hour or so).
                            Thanks,

                            Rick Wilson
                            CEO
                            Miva, Inc.
                            [email protected]
                            https://www.miva.com

                            Comment


                              #15
                              Re: Miva Merchant 9.0004 Bug Reports

                              Originally posted by mikey View Post
                              Hi Eric, I tried to generate a new meter number but also got the Authentication Failed message. Unless the meter issue is specific to making labels in the MM Admin.
                              At 3:30 EST I got the same error message. ON top of that, I tried to open a ticket, and got an error message. I was instruced to call. I did...8 people before me. I'll try later, something says this is known by Miva

                              Comment

                              Working...
                              X