Announcement

Collapse
No announcement yet.

Marketplaces - Google Shopping links are bad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Marketplaces - Google Shopping links are bad

    It looks like the Marketplaces - Google Shopping feed links may have the same issue as trying to create the Marketing Feeds sitemap. If a store is not using the URI Management links styles (in this case it's using the Legacy SEO Settings) it's leaving out the Store Code in URL.

    Any chance of this getting fixed before 9.7 comes out?
    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

    #2
    I have a question - can an htaccess redirect be used as a temporary fix for this? Since my htaccess foo is not strong, what would be the best redirect for

    Bad generated URI: http://www.domain.com/page/PROD/product_code (missing the "s" and the store code)


    Correctly formatted URI: https://www.domain.com/page/C/PROD/product_code

    I think this should "fix" the bad links and the Fatal Error being caused by them

    Fatal Error
    Miva Merchant has encountered a fatal error and is unable to continue. The following information may assist you in determining the cause of the error:
    Error Code: MER-DBE-OPN-00002
    Description: Unable to open store 'PROD'
    Other Information:
    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


      #3
      I have confirmation this will be fixed in 9.67 (likely this week).
      Thanks,

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

      Comment


        #4
        Originally posted by Rick Wilson View Post
        I have confirmation this will be fixed in 9.67 (likely this week).
        THANK YOU!!!!

        FYI - I've asked support if there might be a temporary work around using an .htaccess redirect until this is fixed.
        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
          For this particular store, are you wanting any link that has /page/PROD/ to have that turned into /page/C/PROD/ ?
          David Hubbard
          CIO
          Miva
          [email protected]
          http://www.miva.com

          Comment


            #6
            Originally posted by ILoveHostasaurus View Post
            For this particular store, are you wanting any link that has /page/PROD/ to have that turned into /page/C/PROD/ ?
            Yes, please.

            I also notice that the links are not https even the store is configured for all https. Will the force https "fix" that?

            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


              #7
              I'd use this to force https:

              Code:
              RewriteCond %{HTTPS} off [OR]
              RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
              RewriteRule ^(.*)$ https://www.domain.com/$1 [R=301,L]
              and this for the store code issue:

              Code:
              RewriteCond %{REQUEST_URI} ^/page/PROD(.*)$
              RewriteRule ^(.*)$ https://www.domain.com/page/C/PROD/%1 [R=301,L]
              Both of these should come at the very top; the PROD one first since it's going to fix the https anyway, and then the other. They have to come before the rewrites that make the short links work so the url redirect happens before it's processed behind the scenes.
              David Hubbard
              CIO
              Miva
              [email protected]
              http://www.miva.com

              Comment


                #8
                Looks like it's working. Now to see if it will make Google Marketing happy. THANKS!
                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

                Working...
                X