Page 173 of 506 FirstFirst ... 73123163171172173174175183223273 ... LastLast
Results 1,721 to 1,730 of 5054
  1. #1721
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Yay! As per PM instructions, upgraded to version 3.6.2 and the page links are working the way they should now! Thanx Yellow!
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

  2. #1722
    Join Date
    Nov 2006
    Posts
    296
    Plugin Contributions
    2

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Check if you are using an old version, you may have the exact problem with the other 2 people above.
    Upgrade, mmm... i copied all the files from the latest distro over the old ones except classes/local.config.php and the .htaccess

    That should do it right?
    Now keep my fingers crossed

  3. #1723
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by nagelkruid View Post
    Upgrade, mmm... i copied all the files from the latest distro over the old ones except classes/local.config.php and the .htaccess

    That should do it right?
    Now keep my fingers crossed
    And then clear cache. Always always clear cache when you upgrade (ssu cache)

    See if you still have the same error now.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #1724
    Join Date
    Nov 2007
    Posts
    99
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi yellow,

    I just installed SSU v3.5.2 (php5) on my another store

    When ssu is turned on, the main page of the store loads fine but for the categories and products "Redirect Loop" error is displayed.

    My store url is: http://www.starruby.in/store

    Contents of store/.htaccess file before installing ssu:

    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

    Options +FollowSymLinks
    RewriteEngine On
    #RewriteBase /store/

    # From Ultimate SEO URLs
    RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING}
    RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING)
    RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING)

    # For Open Operations Info Manager
    RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING}

    # For dreamscape's News & Articles Manager
    RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING}
    RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING}
    RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING}
    RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING}
    RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING}
    RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING}
    RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING)

    # All other pages
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f [NC]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING}

    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www.* [NC]
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301]

    Contents of store/.htaccess file after installing ssu:

    ##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

    Options +FollowSymLinks
    RewriteEngine On
    #RewriteBase /store/

    #### BOF SSU
    Options +FollowSymLinks
    RewriteEngine On
    # Change "/zencart/ to the correct setting
    # if your site is located at root folder, then you should have RewriteBase /
    # Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
    RewriteBase /store/

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} -f [OR]
    RewriteCond %{SCRIPT_FILENAME} -d
    RewriteRule .* - [L]

    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU

    # For Open Operations Info Manager
    RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING}

    # For dreamscape's News & Articles Manager
    RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING}
    RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING}
    RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING}
    RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING}
    RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING}
    RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING}
    RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING)

    # All other pages
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f [NC]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING}

    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www.* [NC]
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301]

    I am sure this error has something to do with the .htaccess file.

    Also one more problem is that I had configured the .htaccess file so as to automatically redirect non-www users to the www version of the site (that is from http://starruby.in/store to http://www.starruby.in/store). However after adding the ssu code to .htaccess file even that code does not work.

    I have turned off ssu temporarily until this problem is sorted out.

    Thanks,
    Harshil
    Last edited by starruby; 28 Dec 2008 at 05:41 PM. Reason: Edited to add: I had ultimate seo urls previously installed which I removed before installing ssu

  5. #1725
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Why do you have htaccess rule for Ultimate seo url there?
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  6. #1726
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Also, the code to redirect www etc has to be placed BEFORE ssu code.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  7. #1727
    Join Date
    Nov 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    a Problem duplicate.html)
    http:/...../sillas-de-paseo-bebe-confort-c-217_242.html
    http://..../sillas-de-paseo-bebe-confort-c-217_242

    If in the url I put with http:/...../sillas-de-paseo-bebe-confort-c-217_242.html me has to transform it in http://..../sillas-de-paseo-bebe-confort-c-217_242 or error404

  8. #1728
    Join Date
    Dec 2008
    Location
    San Fran
    Posts
    382
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    This mod is awesome!!! However, I'm having a problem with the Wordpress integration (WOZ) I used. Before installing SSU the url for my wordpress install was http://www/sitename.com/index.php?main_page=wordpress

    SSU wants to rewrite it to http://www.sitename.com/wordpress
    which breaks my wordpress page.

    Does anybody have any familiarity with this?

  9. #1729
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by danilovig View Post
    a Problem duplicate.html)
    http:/...../sillas-de-paseo-bebe-confort-c-217_242.html
    http://..../sillas-de-paseo-bebe-confort-c-217_242

    If in the url I put with http:/...../sillas-de-paseo-bebe-confort-c-217_242.html me has to transform it in http://..../sillas-de-paseo-bebe-confort-c-217_242 or error404
    Please note that this mod does NOT put .html into category, product name. You must have/use some other module.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  10. #1730
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by swamyg1 View Post
    This mod is awesome!!! However, I'm having a problem with the Wordpress integration (WOZ) I used. Before installing SSU the url for my wordpress install was http://www/sitename.com/index.php?main_page=wordpress

    SSU wants to rewrite it to http://www.sitename.com/wordpress
    which breaks my wordpress page.

    Does anybody have any familiarity with this?
    Simple, just put wordpress into the page exclude list.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

 

 

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. 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