Page 42 of 168 FirstFirst ... 3240414243445292142 ... LastLast
Results 411 to 420 of 1674
  1. #411
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    You can read more about the different defines in Zen Cart's configure.php. DIR_WS_CATALOG is the "folder" or "directory" where you installed Zen Cart relative to the Web Server's document root (or in other words what shows up following the domain name in your web browser's address bar). Note DIR_WS_CATALOG should start and end with a slash (/).

    So if you have define('DIR_WS_CATALOG', '/'), then use either use: "RewriteBase /" or "#RewriteBase /".
    If you have define('DIR_WS_CATALOG', '/shop/'), then use: "RewriteBase /shop/".
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  2. #412
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by lhungil View Post
    That path does not look right. It should be the relative Web Site path... (matches DIR_WS_CATALOG in configure.php).

    It appears your DIR_WS_CATALOG is "/". If this is the case you can comment out the RewriteBase directive. Otherwise replace the "/" with the value configured inside your configure.php for DIR_WS_CATALOG.
    Code:
    ...
    ###############################################################################
    # Common directives
    ###############################################################################
    # NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
    
    Options +FollowSymLinks
    RewriteEngine on
    #RewriteBase /shop/
    
    ###############################################################################
    # Start Ultimate SEO URLs
    ###############################################################################
    ...
    Thank you lhungl. You are a live saver again. A thousand Thank You's!
    I replaced the "overwritebase" with "/" and it works.
    Replacing it with "RewriteBase /pub/" didn't work.
    Commenting it out did not work either.

  3. #413
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by lhungil View Post
    You can read more about the different defines in Zen Cat's configure.php. DIR_WS_CATALOG is the "folder" or "directory" where you installed Zen Cart relative to the Web Server's document root (or in other words what shows up following the domain name in your web browser's address bar). Note DIR_WS_CATALOG should start and end with a slash (/).

    So if you have define('DIR_WS_CATALOG', '/'), then use either use: "RewriteBase /" or "#RewriteBase /".
    If you have define('DIR_WS_CATALOG', '/shop/'), then use: "RewriteBase /shop/".
    Strange thing is that it show ('DIR_WS_CATALOG', '/pub/'), (given if I was looking at the correct line in the file.

    Replacing it with just "/" did it. Replacing it with /pub/ did not.

    Thanks again
    Last edited by twi; 17 Jun 2013 at 04:27 PM.

  4. #414
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    Glad you were able to get everything working! Thank you for taking the time to reply and confirm the issue was due to a misconfiguration of the ".htaccess" file and not an issue with Ultimate (SEO) URLs.

    Note: you previously said "define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');".
    "define('DIR_WS_DOWNLOAD_PUBLIC',...);" and "define('DIR_WS_CATALOG',...);" are not the same.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  5. #415
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Ultimate SEO 2.200+ (new features)

    I'm having a problem where the file used for the Recover Cart Sales module, in the root folder, is getting a 301 redirect to index.php. How do I stop this module from rewriting that file?

  6. #416
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by jeking View Post
    I'm having a problem where the file used for the Recover Cart Sales module, in the root folder, is getting a 301 redirect to index.php. How do I stop this module from rewriting that file?
    Some important things to understand about this plugin.
    • Ultimate (SEO) URLs will not modify the generated URL or respond to requests for any files or directories which physically exist.
    • Ultimate (SEO) URLs does not modify the generated URLs for the Zen Cart "admin".
    • Ultimate (SEO) URLs will only modify the generated URL on the "customer facing" for the specific pages entered in the configuration for "Enter pages to allow rewrite".

    The Recover Cart Sales module only makes modifications (and adds files) to the "admin" side of Zen Cart. So if you are seeing any 301 redirect... This is unrelated to the current version of Ultimate (SEO) URLs.

    Some places you can look: Review your installation of the "Recover Cart Sales" module. Make sure you have the latest version of "Ultimate (SEO) URLs" installed. Review any modifications made to core Zen Cart files. Review any custom redirects added to the .htaccess file in the web server's document root, the ZenCart installation folder, and the Zen Cart admin folder. Review any Zen Cart debug logs and your web server error logs.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  7. #417
    Join Date
    Jun 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Ultimate SEO 2.200+ (new features)

    How to change apache rewrite to nginx rewrite?
    My serverinfo: debian6+nginx+mysql+php

  8. #418
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by zch0071 View Post
    How to change apache rewrite to nginx rewrite?
    My serverinfo: debian6+nginx+mysql+php
    First change the appropriate line(s) in the sample .htaccess file (especially the RewriteBase). You can then try the tool over at Winginx to convert your .htaccess to the nginix format. No guarantee, but it should give you a good starting point.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  9. #419
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Ultimate SEO 2.200+ (new features)

    Thanks for the replies. I'm not familiar with nginx. What is the reason for that instead of a regular htaccess file?

  10. #420
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ultimate SEO 2.200+ (new features)

    Quote Originally Posted by jeking View Post
    Thanks for the replies. I'm not familiar with nginx. What is the reason for that instead of a regular htaccess file?
    It is just different web server software (and uses different files). Most hosting providers run Apache or IIS (both can accept or import .htaccess files). A handful run other web server software such as nginx for various reasons :)
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

 

 

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