Page 225 of 506 FirstFirst ... 125175215223224225226227235275325 ... LastLast
Results 2,241 to 2,250 of 5054
  1. #2241
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    As this time, the only thing you can do (I believe), is to limite the minimum category level to 1.
    You can of course use link alias to eliminate the category name, but you have to do so manually for each product. Also, if you do want to do so, make sure you make the link permanent as well.

    Quote Originally Posted by bfmarini View Post
    Checked it again and it's working!


    Is it possible to have the direct links to products display the link as


    www.site.com/prodcut-name-here

    rather than

    www.site-com/category/category-1/product_name-here
    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

  2. #2242
    Join Date
    May 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    As this time, the only thing you can do (I believe), is to limite the minimum category level to 1.
    You can of course use link alias to eliminate the category name, but you have to do so manually for each product. Also, if you do want to do so, make sure you make the link permanent as well.
    Yea I think it's working ....

    http://www.kids-n-cribs.info/strolle...ilver-stroller

    is the path created as the page is rendered.

    This link: http://www.kids-n-cribs.info/2009-ma...ilver-stroller

    will actually get you to the product, it's just rewritten when the page loads.

    For SEO purposes, the more direct link will probably be better. Is there a sitemap that you would recommend over another that would work well with your seo mod?
    Bryan
    Destination Baby & Kids - https://www.destinationbabykids.com

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

    Default Re: Simple SEO URL [support thread]

    Any sitemap should work if it uses zen_href_link function

    As for the path, some prefer it to be more "structured" like that.
    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. #2244
    Join Date
    May 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Any sitemap should work if it uses zen_href_link function

    As for the path, some prefer it to be more "structured" like that.
    Oh ok.

    When I go to deploy to my prod site. Can I simply copy the entire web root, upload the production versions of configure.php ( for admin/includes and includes ).

    Once that is done, if I go into admin->extras->ssu, will all the SQL be run to create the necessary tables?
    Bryan
    Destination Baby & Kids - https://www.destinationbabykids.com

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

    Default Re: Simple SEO URL [support thread]

    If you move the entire files as well as database then everything should be ready to go. Is it what you are asking? Also, make sure you change the htaccess if necessary.
    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. #2246
    Join Date
    May 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    If you move the entire files as well as database then everything should be ready to go. Is it what you are asking? Also, make sure you change the htaccess if necessary.
    The files will be moved, but the database will not be moved.

    When I installed the SEO mod to my test site, the first time I went ot admin->extras->ssu, all the SQL scripts were run to create the necessary tables / inserts for the SSU Mod.

    Once i've deployed the files to my prod site and I go to admin->extras->ssu for the first time, will the sql scripts get executed to build the necessary tables in production?

    Is there still a .keep file that needs to be deleted prior to it knowing to run the sql scripts?
    Bryan
    Destination Baby & Kids - https://www.destinationbabykids.com

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

    Default Re: Simple SEO URL [support thread]

    If you are not going to move the db, yes you have to delete .keep

    All patches will be applied automatically
    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

  8. #2248
    Join Date
    May 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Prior to installing the mod, our .htaccess was made up of the following:
    Code:
    Options +FollowSymlinks
    RewriteEngine on
    rewritecond %{http_host} ^kids-n-cribs.com [nc]
    rewriterule ^(.*)$ http://www.kids-n-cribs.com/$1 [r=301,nc]

    With the mod, the 301 redirect seems to be no longer working. Is it still possible to have the 301 redirect and the SEO mod installed?



    This is the new version, working for SEO, but 301 redirect is not working.

    Code:
    Options +FollowSymlinks
    RewriteEngine on
    rewritecond %{http_host} ^kids-n-cribs.com [nc]
    rewriterule ^(.*)$ http://www.kids-n-cribs.com/$1 [r=301,nc] 
    
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase / 
    RewriteBase /
    
    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]
    
    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU
    Any help would be awesome!

    Thanks
    Bryan
    Destination Baby & Kids - https://www.destinationbabykids.com

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

    Default Re: Simple SEO URL [support thread]

    Try

    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
    RewriteBase /

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

    RewriteCond %{http_host} ^kids-n-cribs.com [nc]
    RewriteRule ^(.*)$ http://www.kids-n-cribs.com/$1 [r=301,L]

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU
    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. #2250
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Did you follow all the steps including updating the config in admin as well as clearing cache?
    Posted via Mobile Device
    I updated the config as told here

    http://wiki.rubikintegration.com/zen...les/ssu/config

    I cleaned the ssu cache and visited the ssu manager as told here

    http://wiki.rubikintegration.com/zen...es/ssu/upgrade

    But it still isn't working because customers can't add anything to cart. What do you recommend next? Thanks.

    Ian

 

 

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