Page 277 of 506 FirstFirst ... 177227267275276277278279287327377 ... LastLast
Results 2,761 to 2,770 of 5054
  1. #2761
    Join Date
    Mar 2009
    Posts
    21
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I can't edit my post anymore.

    My htaccess:

    #### 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

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by pseudonym View Post
    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

    What's wrong with it?
    I have to know where your store is located to know what is wrong with it, for example if it is in a subfolder named shop then it should be RewriteBase /shop

    If not, then it is correct. And if you still get the 500 error, you have to check the server error log to know precisely what goes wrong. 500 is a general error which can mean many things.
    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

  3. #2763
    Join Date
    Mar 2009
    Posts
    21
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I found the problem.

    I did not have module_manager_rev16zip.zip installed.

    It's working now! Phew!

    One question though: is it possible to change the names of the main categories?

    Right now my URL will look like: http://www.site.com/wild-flowers/blue-wild-flowers. The actual category is also called "Wild Flowers"

    Still, I want to change the "wild-flowers" part into "buy-wild-flowers", so for example: http://www.site.com/buy-wild-flowers/blue-wild-flowers.

    I've added an Alias like that in the Manage Aliases field, enabled it and made it permanent. But the URL does not change to that when I visit my home page. It is still "wild-flowers". I can access the page by hand-typing "/buy-wild-flowers", however it doesn't show up naturally..........

    Any advice?

    Thanks a lot for this plugin, it is much better than CEON SEO URLs!!!!

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

    Default Re: Simple SEO URL [support thread]

    After changing the urls in link alias manager, make sure you clear the alias cache.

    Raine
    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. #2765
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Simple SEO URL [support thread]

    Hi,

    Im desperate to get this mod installed on my website due to the great flexibility that it adds. However i currently have Magic SEO installed which i find frustrating and unusable on some items.

    The thing im worried about is all the links which are currently ranked in google etc are going to be lost. Am i right in thinking this? or will they be picked up and redirected?

    Many thanks

    Paul
    Even novices can be professionals!

    Funky Fancy Dress

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

    Default Re: Simple SEO URL [support thread]

    Hi Paul, the current SSU will not pick up links generated by Magic Seo, so I suggest dont port right now. There have been several requests for this, which I do take into consideration seriously, and I do consider writing a plugin that allows a smooth transfer from Magic Seo to SSU, the task is not easy, however.
    Magic Seo relies heavily on using regex to translate the links, while SSU relies on "identifiers" on the links (this behavior is similar to ultimate seo url module). One possiblity to get around this is to make use of link alias functionality of SSU, let me think of a way to implement it tho, lol.
    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. #2767
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Simple SEO URL [support thread]

    That would be great if you had some kind of plugin to help with the change over. I am tempted to just bite the bullet and make the change as i have a SEO company starting work on it in a few weeks and ofcourse the url's provide alot of weight in terms of search engines.

    Ill keep checking back here and seeing how things are going.

    Many thanks for your help

    Paul
    Even novices can be professionals!

    Funky Fancy Dress

  8. #2768
    Join Date
    Jan 2008
    Posts
    67
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I'm getting the same error as ccrsport
    When I "Set SSU Status" to true I get an error on the actual front end of my live site:

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.

    Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

    Do you have any tips on how to configure SSU once it is installed?
    my .htaccess is setup up as:
    AddHandler application/x-httpd-php5 .php

    #### 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 /zencart/

    # 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
    all except the first line, I copied from the installation instructs.

    my shop config file is:
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');
    my store is located in the public_html folder of my website, which I believe is the root. Any ideas where the problem may be?

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

    Default Re: Simple SEO URL [support thread]

    RewriteBase /zencart/


    Should be RewriteBase /

    Regards
    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. #2770
    Join Date
    Jan 2008
    Posts
    67
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    sorry for my ignorance but where do I change,

    RewriteBase /zencart/
    Should be RewriteBase /

    do I change it on the .htaccess or in my config file at DIR_WS_CATALOG

    Thanks

 

 

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