Page 431 of 506 FirstFirst ... 331381421429430431432433441481 ... LastLast
Results 4,301 to 4,310 of 5054
  1. #4301
    Join Date
    Aug 2008
    Posts
    333
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    has anyone been able to get woz to work with SSU, i have refresh cache and used the exclude list below. what else can i check to get ssu to work with woz

    advanced_search_result,redirect,popup_image_additional,download,wordpress, contest, index.php?main_page=contest,cat

    what else can i add?

    or is there another problem i should troubleshoot

  2. #4302
    Join Date
    Sep 2005
    Location
    Gladstone, Oregon
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Oh how I agree with you Sonya.

    Quote Originally Posted by SonyaT View Post
    Ok I did all it said and the entire stupid site is not even showing right now. Oh how I long for a mod is all you have to do is upload and files and be done

  3. #4303
    Join Date
    Oct 2009
    Location
    Bronx, NY
    Posts
    22
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I noticed the latest version has had a problem processing "+" within url query parameters... Some people have had a problem with store searches with multiple words, and adding the advanced_search to the exclude list helped.

    My problem now is I had a + within parameters used for tracking purposes, and this triggers an infinite redirect loop. Hopefully I can figure out how to fix this or a new version will be released soon...

  4. #4304
    Join Date
    Oct 2009
    Location
    Bronx, NY
    Posts
    22
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by VicAvendano View Post
    I noticed the latest version has had a problem processing "+" within url query parameters... Some people have had a problem with store searches with multiple words, and adding the advanced_search to the exclude list helped.

    My problem now is I had a + within parameters used for tracking purposes, and this triggers an infinite redirect loop. Hopefully I can figure out how to fix this or a new version will be released soon...
    Rolled back to version 3.7.1, everything is working fine again.

  5. #4305
    Join Date
    Apr 2009
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by securit View Post
    I have a question with regards to Simple SEO and disk space.

    On a zencart 1.3.8a install with Simple SEO v3.8.3 I am seeing that the cache directory is huge. the ssu directory is 43.91 MB in size which is more than double the disk of the rest of the site including all images. This seems crazy to me.

    Is this really what I should be expecting or do I need to dig deeper.
    Did you get an answer to this? I have the same issue

  6. #4306
    Join Date
    Apr 2009
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Well here goes nothing. I tried reading thru previous posts and googling to find an answer to this but had no luck. Hopefully someone here knows the answer.

    I have version 3.83 of SSU installed and rev18 of module manager installed. I have these installed on both a dev and a prod site. The dev server is accessed by a direct IP, the prod site is a direct thru the www url for the site.

    So here's my issue, on the prod site the /cache/ssu folders is HUGE!! So large that deleting the data takes forever, I have taken to renaming the file to /cache_bak when issues arise and just creating a new /cache.

    Yesterday, I did this and all my links worked perfectly. Today I come in and 3 or 4 of my categories redirect me back to the home page. I renamed the cache folder again, created a blank new one and then the category links worked again. So confused. I don't want to delete these every night, and have set up the cron job to run nightly, but I'd really like to know what is causing this issue.

    SEO config settings:
    Hide default language identifier true
    Set Category Separator / Info
    Set Auto Alias Status true Info
    Set SSU Multi Language Status true Info
    Set Query Key's Exclude List zenid,gclid,number_of_uploads,number_of_downloads,action,sort,page,disp_order,fi lter_id,alpha_filter_id,currency Info
    Set SSU Status true Info
    Set maximum name length 0 Info
    Set minimum word length 0 Info
    Set Link Alias Status true Info
    Exclude list advanced_search_result,redirect,popup_image_additional,download,wordpress Info
    Set max category level 4 Info
    Name delimiter - Info
    ID delimiter - Info
    File extension Info
    Cache reset time 1271350090 Info

    .htaccess file -
    #### BOF SSU
    Options +FollowSymLinks -MultiViews

    RewriteEngine On

    RewriteBase /

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

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA]

    #### EOF SSU


    #redirec www to non www
    rewritecond %{HTTP_HOST} ^coinmerc\.com$
    RewriteRule (.*) http://www.coinmerc.com/$1 [R=301,L]


    Redirect /cart http://www.coinmerc.com

  7. #4307
    Join Date
    Mar 2010
    Location
    UK
    Posts
    445
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    There are several serious errors in that .htaccess file.

    1. Don't mix Redirect and RewriteRule in the same file. Convert the Redirect rule to use RewriteRule syntax with the [R=301,L] flags.

    2. List the 'single' page external redirect as the very first item.

    3. List the non-www to www external redirect after the single page redirect.

    4. List the internal rewrites after the redirects.

    If the order is incorrect, as it is now, then you risk exposing rewritten internal filepaths back out on to the web as new URLs and/or introducing unwanted redirection chains for non-canonical URL requests.

    This is important stuff. Incorrect implementation can kill both your indexing and ranking in SERPs, and see your traffic dry up.

    See also: http://www.zen-cart.com/forum/showthread.php?t=151606
    Last edited by g1smd; 15 Apr 2010 at 09:58 PM.

  8. #4308
    Join Date
    Apr 2009
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by g1smd View Post
    There are several serious errors in that .htaccess file.

    1. Don't mix Redirect and RewriteRule in the same file. Convert the Redirect rule to use RewriteRule syntax with the [R=301,L] flags.

    2. List the 'single' page external redirect as the very first item.

    3. List the non-www to www external redirect after the single page redirect.

    4. List the internal rewrites after the redirects.

    If the order is incorrect, as it is now, then you risk exposing rewritten internal filepaths back out on to the web as new URLs and/or introducing unwanted redirection chains for non-canonical URL requests.

    This is important stuff. Incorrect implementation can kill both your indexing and ranking in SERPs, and see your traffic dry up.

    See also: http://www.zen-cart.com/forum/showthread.php?t=151606


    Thank you so much for your reply. This is all completely foreign to me. I did read your link and am still a little confused.

    Is this correct:
    #### BOF SSU
    Options +FollowSymLinks -MultiViews

    RewriteEngine On

    RewriteRule ^/cart /

    rewritecond %{HTTP_HOST} ^coinmerc\.com$
    RewriteRule (.*) http://www.coinmerc.com/$1 [R=301,L]


    RewriteBase /

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

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA]

    #### EOF SSU

  9. #4309
    Join Date
    Apr 2009
    Posts
    14
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    How about this:
    ErrorDocument 404 /index.php?main_page=page_not_found

    RewriteEngine On

    # Canonical Redirect non-blank, non-www and/or appended port number to www [EXCLUDE /admin requests]
    RewriteCond %{HTTP_HOST} !^(www\.coinmerc\.com)?$
    RewriteCond %{REQUEST_URI} !^/admin [NC]
    RewriteRule (.*) http://www.coinmerc.com/$1 [R=301,L]



    #### BOF SSU
    Options +FollowSymLinks -MultiViews

    RewriteBase /

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

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA]

    #### EOF SSU



    I believe it has everything except a redirect when they are following old links with the /cart after the domain name.

  10. #4310
    Join Date
    Nov 2005
    Posts
    157
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    i have this weird problem

    in product listing page, the page navigation links, 2 3 4 5,
    the link are correct, like http://test.local/test-cate?sort=20a&page=2
    however, after click it become
    http://test.local/air-jordan-1-i?sort=20a&page=2-p-36
    and page 3 become
    http://test.local/air-jordan-1-i?sort=20a&page=2-p-37

    thus i can not view the other pages

    ssu 3.7.1
    zen cart 1.38a

 

 

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