Page 322 of 506 FirstFirst ... 222272312320321322323324332372422 ... LastLast
Results 3,211 to 3,220 of 5054
  1. #3211
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Turn off gzip for now, seems like the page content is messed up.
    I don't have it on in my store. I have this in my .ini file
    zlib.output_compression_level = -6
    but I took that out to see what it would do but i'm getting the same thing.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #3212
    Join Date
    May 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    if that was for me, nothing, just this 301 redirect in htaccess seems be setup wrong, i took it from your suggestion to someone else earlier on in this thread.. for me its not working properly

    Quote Originally Posted by yellow1912 View Post
    What module have you installed recently that can interfere with content? I know SSU cant do that for sure.

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    What module have you installed recently that can interfere with content? I know SSU cant do that for sure.
    I had installed the automatic_banner_adverts__export_your_products_to_our_advertising_system_1-1 but that does not over write any files. I didn't like it and got rid of it today. My site was doing that before I installed this. Also I installed the simple_create_orders module. Thats it.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by ocs09 View Post
    if that was for me, nothing, just this 301 redirect in htaccess seems be setup wrong, i took it from your suggestion to someone else earlier on in this thread.. for me its not working properly
    No I was talking to countrycharm, sorry for the confustion. Can you post your problem or link to it again?

    @Countrycharm: Seem like it appears like that only on a 2nd load of a page, so for example if i load http://www.thegoodshepherdstore.com/...gifts-under-20 once it works okie, and then when i refresh i see only code. And it only happens on category pages. I have turned off ssu for checking and it's still the same, so the problem is not there

    PS: seem like because there are 2 level of gzip (by server and by simple-cache), I turned off simple cache gzip and it works for you now. I cannot replicate the other problem tho.
    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. #3215
    Join Date
    May 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    when i try to setup the 301 redirect from non-www to www on our store, it messes up the links on the site as well as does not let us login to admin (just refreshes the page, does not login).. what can we do to fix it, i assume the 301 redirect somehow interferes with the ssu module.. i used the 301 redirect code that was posted by you earlier on for someone else..
    Quote Originally Posted by yellow1912 View Post
    No I was talking to countrycharm, sorry for the confustion. Can you post your problem or link to it again?

    @Countrycharm: Seem like it appears like that only on a 2nd load of a page, so for example if i load http://www.thegoodshepherdstore.com/...gifts-under-20 once it works okie, and then when i refresh i see only code. And it only happens on category pages. I have turned off ssu for checking and it's still the same, so the problem is not there

    PS: seem like because there are 2 level of gzip (by server and by simple-cache), I turned of simple cache gzip and it works for you now. I cannot replicate the other problem tho.

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

    Default Re: Simple SEO URL [support thread]

    Post your whole htaccess content 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

  7. #3217
    Join Date
    May 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    currently;
    Code:
    #### 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
    non working (obviously changed the domain.com to my domain);
    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]

  8. #3218
    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 "zencart" 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} ^domain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

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

    As you can see I move the 301 redirection 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. #3219
    Join Date
    May 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    tried that, tried again, same thing..
    admin doesnt work (maybe has something to do with redirecting in the admin directory?)

    also, wanted to clear the cache etc but cant get into admin to see if the links would still work in the navigation for products

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    No I was talking to countrycharm, sorry for the confustion. Can you post your problem or link to it again?

    @Countrycharm: Seem like it appears like that only on a 2nd load of a page, so for example if i load http://www.thegoodshepherdstore.com/...gifts-under-20 once it works okie, and then when i refresh i see only code. And it only happens on category pages. I have turned off ssu for checking and it's still the same, so the problem is not there

    PS: seem like because there are 2 level of gzip (by server and by simple-cache), I turned off simple cache gzip and it works for you now. I cannot replicate the other problem tho.
    Thank you yellow for fixing that to. With the server gzip output_compression my site runs pretty fast anyway without simple cache. I was concern about that and maybe the reason customer were abandon there carts. Thank you again. I will send you something in the mail, give a week or so. I want forget about you. You are always here for us.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

 

 

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