Page 135 of 163 FirstFirst ... 3585125133134135136137145 ... LastLast
Results 1,341 to 1,350 of 1622
  1. #1341
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

    Default Re: Ultimate SEO 2.200 [Support Thread]

    THE NEW CODE WORKS!!!!! Thank you!

    This is where you find the new code .... in the gzip https://github.com/lat9/usu/releases/tag/v3.0.0

  2. #1342
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've just submitted USU v3.0.0 to the Zen Cart plugins for review; I'll update this thread when it's available for download.

    This version of USU supports Zen Cart 1.5.5 and later, providing updates for the following GitHub issues:


    #2: Simplification of the plugin's logging interface.
    #7: Canonical-link not being written.
    #8: Correct usage of zen_get_info_page when used during admin processing (zc156+ integration).
    #10: USU installer doesn't update zc156+ core files correctly.
    #11: Restructure plugin to require no core-file overwrites


    Note that the "no-core overwrites" requires that the changes required by previous versions of USU must be removed prior to installing v3.0.0. I promise, it'll be much easier next time!


    See the following link for more information: https://github.com/lat9/usu/blob/mas...ade_from_v2.md
    v3.0.0 is now available for download from the Zen Cart Plugins (https://www.zen-cart.com/downloads.php?do=file&id=132). Thanks to @swguy for correcting my coding error!

  3. #1343
    Join Date
    May 2014
    Posts
    68
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200 [Support Thread]

    I was able to installed Version 3.0 in my test ZC 1.5.6 test site.
    However, the configuration group was not listed!

    https://i.imgur.com/AVyC6AZ.png

    I don't know how configuration.php works. Only certain config group shown and not all of them.
    (Previous database indeed had previous version of USU. I upgraded my ZC on test site and upgraded database. Then upgrade the USU to 3.0 and this occurred.)

  4. #1344
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by PanZC2020 View Post
    I was able to installed Version 3.0 in my test ZC 1.5.6 test site.
    However, the configuration group was not listed!

    https://i.imgur.com/AVyC6AZ.png

    I don't know how configuration.php works. Only certain config group shown and not all of them.
    (Previous database indeed had previous version of USU. I upgraded my ZC on test site and upgraded database. Then upgrade the USU to 3.0 and this occurred.)
    Could you try uninstalling USU (use the Extras->Uninstall Ultimate URLs tool) and then re-installing USU?

  5. #1345
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,289
    Plugin Contributions
    22

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Just had something show up I've never seen before. I have a customer who's got more/complicated sub categories than I may have ever seen before. Thus ending up with a link of https://www.corbymotorsport.com/kw-c...36_10437_10438 which gives a 406 code. Do you suppose it's just too much for the mod / htaccess to handle? The cats go like this: Home » BROWSE BY CAR » AUDI TUNING » AUDI RS4 » AUDI RS4 (B7) » SUSP (aud rs4 b7) » COILS (aud rs4 b7) » kw coils (aud rs3 b7)

    This the first time I've ever seen this and his website hasn't been changed in a long time (my server so I'm sure of any possible version issues). He's just hit this and he has been active. He also has a number of other zen cart sites with no issues but this is the larger one of them all.
    The full-time Zen Cart Guru. WizTech4ZC.com

  6. #1346
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Delia, my best guess is that that's based on a $_GET size limit per "key" imposed by the Zen Cart base /includes/application_top.php's processing for 'contaminated' keys

    The following section, from the zc156a version of that file, imposes a 43-character limit on each of the "paramsToCheck":
    Code:
    $paramsToCheck = array('main_page', 'cPath', 'products_id', 'language', 'currency', 'action', 'manufacturers_id', 'pID', 'pid', 'reviews_id', 'filter_id', 'zenid', 'sort', 'number_of_uploads', 'notify', 'page_holder', 'chapter', 'alpha_filter_id', 'typefilter', 'disp_order', 'id', 'key', 'music_genre_id', 'record_company_id', 'set_session_login', 'faq_item', 'edit', 'delete', 'search_in_description', 'dfrom', 'pfrom', 'dto', 'pto', 'inc_subcat', 'payment_error', 'order', 'gv_no', 'pos', 'addr', 'error', 'count', 'error_message', 'info_message', 'cID', 'page', 'credit_class_error_code');
    if (!$contaminated) {
      foreach($paramsToCheck as $key) {
        if (isset($_GET[$key]) && !is_array($_GET[$key])) {
          if (substr($_GET[$key], 0, 4) == 'http' || strstr($_GET[$key], '//')) {
            $contaminated = true;
            break;
          }
          $len = (in_array($key, array('zenid', 'error_message', 'payment_error'))) ? 255 : 43;
          if (isset($_GET[$key]) && strlen($_GET[$key]) > $len) {
            $contaminated = true;
            break;
          }
        }
      }
    }
    USU's .htaccess file sets $_GET['cPath'] to the characters following that trailing -c- ... which comprise 44 characters. Why that limit is 43 is anyone's guess.

  7. #1347
    Join Date
    May 2014
    Posts
    68
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by lat9 View Post
    Could you try uninstalling USU (use the Extras->Uninstall Ultimate URLs tool) and then re-installing USU?
    It does work with uninstalling then reinstalling!
    https://i.imgur.com/x2YxfYn.png

    Why would that occurred though? Old database conflict data?

    -PanZC2020

  8. #1348
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by PanZC2020 View Post
    It does work with uninstalling then reinstalling!
    https://i.imgur.com/x2YxfYn.png

    Why would that occurred though? Old database conflict data?

    -PanZC2020
    Thanks for that report-back! There were many configuration "keys" whose names were changed in the transition from USU versions prior to 2.217, so anything is possible.

  9. #1349
    Join Date
    May 2014
    Posts
    68
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Well, configuration showed up... but now...
    https://i.imgur.com/aBjldP8.png

    Most configurations showed up twice (except the first two configurations) x.x
    Not positive if another uninstall will do it...

    -PanZC2020

  10. #1350
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: Ultimate SEO 2.200 [Support Thread]

    Quote Originally Posted by PanZC2020 View Post
    Well, configuration showed up... but now...
    https://i.imgur.com/aBjldP8.png

    Most configurations showed up twice (except the first two configurations) x.x
    Not positive if another uninstall will do it...

    -PanZC2020
    If you're familiar with the use of phpMyAdmin, note the &gID=xx value shown in your browser's address-bar when you're viewing the Ultimate URLs configuration settings.


    1. Open your site's phpMyAdmin and
    2. Click on the 'configuration' table link in the left sidebar.
    3. Click the 'Search' tab in the top menu.
    4. Enter the value for xx in the configuration_group_id 'Value' column and press 'Go'.
    5. If more than one page of output is generated, tick the 'Show All' checkbox at the top of the listing.
    6. Take a screenshot of the search output and update this thread with the output.


    P.S. I appreciate your help (and patience) with the issues that you're having.
    Last edited by lat9; 13 Mar 2019 at 10:03 PM.

 

 

Similar Threads

  1. Ultimate Fade-In Slidehow Support thread
    By outeredge2 in forum All Other Contributions/Addons
    Replies: 158
    Last Post: 4 Feb 2017, 03:10 AM
  2. Ultimate Cross Sell [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 239
    Last Post: 17 May 2015, 03:25 AM
  3. Ultimate Content Glider [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 11
    Last Post: 4 Sep 2012, 05:16 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR