Page 321 of 506 FirstFirst ... 221271311319320321322323331371421 ... LastLast
Results 3,201 to 3,210 of 5054
  1. #3201
    Join Date
    May 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    im trying to add a 301 redirect from non-www to www by using this code (entire .htaccess file including SSU stuff);
    Code:
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "zencart" 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
    
    RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
    when i use this code, all the links get messed up (links to products) and i cant get into admin.. any ideas?

    Thanks in advance

  2. #3202
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by ocs09 View Post
    im trying to add a 301 redirect from non-www to www by using this code (entire .htaccess file including SSU stuff);
    Code:
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "zencart" 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
    
    RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
    when i use this code, all the links get messed up (links to products) and i cant get into admin.. any ideas?

    Thanks in advance
    Go to your store admin/configuration and cut off simple seo, clear your cache. Make sure your .htaccess look like this. Is zen cart in the root folder if so, change to: RewriteBase / If zen cart is in another folder then you will have to make it look like this RewriteBase / Your custom folder name

    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^Your.com$ [NC]
    RewriteRule ^(.*)$ http://www.your.com/$1 [R=301,L]

    # 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
    Go back to your store admin/configurations/simple seo cut it back on and see what happens.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #3203
    Join Date
    May 2008
    Posts
    261
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Jerry5763837 View Post
    hi, yellow,

    Are you there?
    hello, countrycharm,

    could you please advise your solution to this problem? thanks.

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

    Default Re: Simple SEO URL [support thread]

    It is recommended to get a newer version if you want auto alias. get it from my signature link.
    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

  5. #3205
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Yellow can you see if their is a solution to this problem before you call it a weekend. Thank you very much. This comes from page 320
    http://www.zen-cart.com/forum/showpo...postcount=3194
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by countrycharm View Post
    Yellow can you see if their is a solution to this problem before you call it a weekend. Thank you very much. This comes from page 320
    http://www.zen-cart.com/forum/showpo...postcount=3194
    Since the author already disable it on his site im quite unsure what happens. My best guess is that something went wrong with the htaccess, again I can be wrong.

    PS: your google xml should be correct 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

  7. #3207
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Since the author already disable it on his site im quite unsure what happens. My best guess is that something went wrong with the htaccess, again I can be wrong.

    PS: your google xml should be correct now
    Thank you for fixing that. It's kind of slow now, but I guess I can live with that. I have the same problem as the other guy had. If you go to my site in my signature you can click on a category then click another one and go back to the one you click the first time and the page will be without any formatting like it lost all of its css.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Simple SEO URL [support thread]

    Turn off gzip for now, seems like the page content is messed up.
    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

  9. #3209
    Join Date
    May 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    hi,
    thanks for the help but same thing unfortunately, cant get into admin for some odd reason
    Quote Originally Posted by countrycharm View Post
    Go to your store admin/configuration and cut off simple seo, clear your cache. Make sure your .htaccess look like this. Is zen cart in the root folder if so, change to: RewriteBase / If zen cart is in another folder then you will have to make it look like this RewriteBase / Your custom folder name


    Go back to your store admin/configurations/simple seo cut it back on and see what happens.

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

    Default Re: Simple SEO URL [support thread]

    What module have you installed recently that can interfere with content? I know SSU cant do that for sure.
    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