Page 340 of 506 FirstFirst ... 240290330338339340341342350390440 ... LastLast
Results 3,391 to 3,400 of 5054
  1. #3391
    Join Date
    Jul 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    1. 3.5.8 is rather old, please upgrade (link in my sig)
    2. SSU does not use description in producing links, it uses NAMEs.
    And you can change admin->configuratin->ssu settings to set the max length or max number of words.
    Thanks so much!

    Concerning use of names instead of description I realized that if the product description is
    "Cintura in cuoio lavorata con rivetti e fibbia in goldtone invecchiata.
    Presenta il fusto liscio in tre pezzi , cuciti tra loro da rivetti.
    Il sostegno della fibbia anch’ esso nella stessa pelle della cintura è fissato a vite dando così la possibilità di una regolazione precisa."

    the product's url becomes

    "http://localhost/.../cinture-cuoio-c-65_66/cintura-in-cuoio-lavorata-con-rivetti-e-fibbia-in-goldtone-invecchiata-br-presenta-il-fusto-liscio-in-tre-pezzi-cuciti-tra-loro-da-rivetti-br-il-sostegno-della-fibbia-anch-esso-nella-stessa-pelle-della-cintura-fissato-a-vite-dando-cos-la-possibilit-di-una-regolazione-precisa-p-180"


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

    Default Re: Simple SEO URL [support thread]

    I really dont think it uses description. I would recommend upgrading first though, your version is old.
    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. #3393
    Join Date
    Jul 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    I really dont think it uses description. I would recommend upgrading first though, your version is old.
    I've tryed to download it from there http://eazy-templates.com/web-templa...simple-seo-url (find in your links) but It doesn't work...

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by rebezala View Post
    I've tryed to download it from there http://eazy-templates.com/web-templa...simple-seo-url (find in your links) but It doesn't work...
    What doesnt work? The link doesnt work?

    You have to visit the link, it is not a direct download 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. #3395
    Join Date
    Jul 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    You have to visit the link, it is not a direct download link.
    I know it, I've visited it.
    But there It asks to me to buy it, not to download it.

    Sorry >_<

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by rebezala View Post
    I know it, I've visited it.
    But there It asks to me to buy it, not to download it.

    Sorry >_<
    If you have read it carefully, the price is 0usd, which means it is FREE. Please try to read carefully first before you post questions.
    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. #3397
    Join Date
    Jul 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    If you have read it carefully, the price is 0usd, which means it is FREE. Please try to read carefully first before you post questions.
    Sorry so much again, but I didn't understand that was like a free buying.
    Now I've downloaded it and I'll try to fix my problem following your steps.

    Thanks so much again.

  8. #3398

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    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
    Hi, yellow

    Thanks for your nice add-on!
    I used below htaccess in my htdocs/hotshoes/ directory but it always redirect me to 'http://www.example.com/xampp/'
    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On

    RewriteBase /hotshoes/

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

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

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

    Would you pls point out what's wrong with the above code for me?

    I use xampp to test my zen-cart locally!

    Thanks in advanced,

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

    Default Re: Simple SEO URL [support thread]

    Okie, so I assume 2 things here:
    1. your current host is localhost
    2. your store is at http://localhost/hotshoes/

    Then the correct htaccess is:

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

    # 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
    I commented out the www redirection for you because you wouldnt need it till you go online.
    What is your version? If you are using 3.5+ you should be able to visit localhost/ssu_check.php and you will see a suggested htaccess content based on your configuration
    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. #3400
    Join Date
    Jun 2009
    Posts
    131
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Help! I need to uninstall Simple SEO. I thought I was running php5, but apparently we're on php4. So I need to back everything out - I'm just getting a blank page for the store.

    I have the uninstall instructions. It says to "2.Revert the changes made to html_output.php". Can you please tell me what changes those are? Yes, I'm stupid - I don't have a backup. Yes, I know better. Yes, I'm furious with myself. But I sure would appreciate help getting this all uninstalled.

    While I'm begging for help, the next step is "3.Remove new files uploaded during the installation". How do I know what is "new" vs edited such as the html_output.php?

 

 

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