Page 165 of 168 FirstFirst ... 65115155163164165166167 ... LastLast
Results 1,641 to 1,650 of 1674
  1. #1641
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Ultimate SEO 2.200+ (new features)

    i would look at the complete htaccess file.

    i think it could be a question of the ordering of the rules there.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  2. #1642
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,339
    Plugin Contributions
    94

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by carlwhat View Post
    i would look at the complete htaccess file.

    i think it could be a question of the ordering of the rules there.
    Agreed, but the rules posted by the OP are part of the as-shipped USU .htaccess.

  3. #1643
    Join Date
    Aug 2012
    Location
    Kitty Hawk, NC
    Posts
    70
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    I will check the the debug log. Here is one of my old url links from pinterest for an example: https://enchantedcottageshop.com/sho...-vintage-style

  4. #1644
    Join Date
    Aug 2012
    Location
    Kitty Hawk, NC
    Posts
    70
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Today's debug log: [14-Dec-2024 07:14:36 UTC] Request URI: /shop/index.php?main_page=unsubscribe&action=unsubscribe, IP address: 80.85.245.241, Language id 1
    #1 require(/home/enchant1/public_html/shop/includes/modules/pages/unsubscribe/header_php.php) called at [/home/enchant1/public_html/shop/index.php:35]
    --> PHP Warning: Undefined array key "addr" in /home/enchant1/public_html/shop/includes/modules/pages/unsubscribe/header_php.php on line 29.

  5. #1645
    Join Date
    Aug 2012
    Location
    Kitty Hawk, NC
    Posts
    70
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    I also noticed that my code to block bots in the .htaccess file is no longer blocking them I will rearrange the order of coding to see if that makes a difference. As of now, my codes are after Ultimate SEO's codes in the file. I will put my codes first to see if that makes a difference.

  6. #1646
    Join Date
    Aug 2012
    Location
    Kitty Hawk, NC
    Posts
    70
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    The url redirect code at the beginning causes the Ultimate SEO not to work but it works fine with the bot block coding in the beginning. I will have to wait and see if the bots will be blocked, I sure hope so.

  7. #1647
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,339
    Plugin Contributions
    94

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by enchanted1 View Post
    Today's debug log: [14-Dec-2024 07:14:36 UTC] Request URI: /shop/index.php?main_page=unsubscribe&action=unsubscribe, IP address: 80.85.245.241, Language id 1
    #1 require(/home/enchant1/public_html/shop/includes/modules/pages/unsubscribe/header_php.php) called at [/home/enchant1/public_html/shop/index.php:35]
    --> PHP Warning: Undefined array key "addr" in /home/enchant1/public_html/shop/includes/modules/pages/unsubscribe/header_php.php on line 29.
    That's got nothing to do with USU; it's something in the Zen Cart base.

  8. #1648
    Join Date
    Aug 2012
    Location
    Kitty Hawk, NC
    Posts
    70
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    The bots are not being blocked anymore because they accessed my site today. So my old urls were redirecting and bots were being blocked before the ultimate seo plugin. I wish I was smart with coding, I don't understand why the ultimate seo codes in .htaccess are causing my redirecting codes and bot block codes not to work

  9. #1649
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,339
    Plugin Contributions
    94

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by enchanted1 View Post
    The bots are not being blocked anymore because they accessed my site today. So my old urls were redirecting and bots were being blocked before the ultimate seo plugin. I wish I was smart with coding, I don't understand why the ultimate seo codes in .htaccess are causing my redirecting codes and bot block codes not to work
    If, as @carlwhat suggested a couple of posts ago, you'd post the full contents of the .htaccess file (use the "CODE" tags, the big # in the menu bar) that would give us something to comment on.

  10. #1650
    Join Date
    Aug 2012
    Location
    Kitty Hawk, NC
    Posts
    70
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Code:
    RewriteEngine On
    
    RewriteCond %{HTTP_USER_AGENT} (crawl|AhrefsBot|SemrushBot) [NC]
    
    RewriteRule .* - [F,L]
    
    # Handles the new URL formats
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pi-([0-9]+)(.*)$ index\.php?main_page=popup_image&pID=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pr-([0-9]+)(.*)$ index\.php?main_page=product_reviews&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-pri-([0-9]+)(.*)$ index\.php?main_page=product_reviews_info&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-prw-([0-9]+)(.*)$ index\.php?main_page=product_reviews_write&products_id=$4&cPath=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)/(.*)-aaq-([0-9]+)(.*)$ index\.php?main_page=ask_a_question&pid=$4&cPath=$2&%{QUERY_STRING} [L]
    
    # Original (unchanged) URL formats
    RewriteRule ^(.*)-p-([0-9]+)(.*)$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-m-([0-9]+)(.*)$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pi-([0-9]+)(.*)$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pr-([0-9]+)(.*)$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-pri-([0-9]+)(.*)$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-prw-([0-9]+)(.*)$ index\.php?main_page=product_reviews_write&products_id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-aaq-([0-9]+)(.*)$ index\.php?main_page=ask_a_question&pid=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-ezp-([0-9]+)(.*)$ index\.php?main_page=page&id=$2&%{QUERY_STRING} [L]
    RewriteRule ^(.*)-c-([0-9_]+)(.*)$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
    
    # Rewrite all other requests (if the file / directory does not exist)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]

 

 

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