Page 183 of 506 FirstFirst ... 83133173181182183184185193233283 ... LastLast
Results 1,821 to 1,830 of 5054
  1. #1821
    Join Date
    Nov 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Is there a way that does not leave "/es" is because I use a single language, and to translate these characters

    http://www.mainada.es/demo_bebe/es/el-ba-o-c-9


    Quote Originally Posted by danilovig View Post
    now not error, but I do not translate the characters

    http://www.mainada.es/demo_bebe/es/el-ba-o-c-9


    Thanks

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

    Default Re: Simple SEO URL [support thread]

    Then you dont have to set multiple languages = on
    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. #1823
    Join Date
    Nov 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    but then I don't translate these characters? (ñ -> n) ..

    Quote Originally Posted by yellow1912 View Post
    Then you dont have to set multiple languages = on

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

    Default Re: Simple SEO URL [support thread]

    You can still translate, why not?
    Found another mistake you have btw:

    'es' => 'es'

    (not default)
    Quote Originally Posted by danilovig View Post
    but then I don't translate these characters? (ñ -> n) ..
    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. #1825
    Join Date
    Nov 2007
    Posts
    64
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    i can't find the mistake...


    Now ,I put this
    http://www.mainada.es/demo_bebe/categories_name-c-15

    PHP Code:
    <?php
          
    // note: we can later move part of this function into sub-functions, which we can store in the base class.
        
    class SSULanguageEs extends SSULanguage{
            static 
    $registry;
            
            static function 
    parseName($name){
                
    $cyrillic = array("ñ",  "á",  "é""í",  "ó""ú");
                 
                
    $translit = array("n""a""e""i""o",  "u");
                
                
    $name str_replace($cyrillic$translit$name);
                
                
    $name strtolower($name);
           
                
    // we replace any non alpha numeric characters by the name delimiter
                
    $name self::removeNonAlphaNumeric($nameSSUConfig::registry('delimiters''name'));
                
                
    // Remove short words first
                
    $name self::removeShortWords($nameSSUConfig::registry('configs''minimum_word_length'), SSUConfig::registry('delimiters''name'));
                
                
    // trim the sentence
                
    $name self::trimLongName($name);
                        
                
    // remove excess SSUConfig::registry('delimiters', 'name')
                
    $name self::removeDelimiter($name);
                
                
    // remove identifiers
                
    $name self::removeIdentifiers($name);
                
                
    // remove trailing _
                
    $name trim($nameSSUConfig::registry('delimiters''name'));
            }
        }
    PHP Code:
    <?php $ssuLocalConfig = array(
    'plugins'        =>    array('parsers'    =>    array('manufacturers')),
        
    'identifiers'    =>    array('mf'    =>    'manufacturers'),
        
    'languages'        =>    array(    'es'    =>    'es'))
    ?>
    Thanks

    Quote Originally Posted by yellow1912 View Post
    You can still translate, why not?
    Found another mistake you have btw:

    'es' => 'es'

    (not default)

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

    Default Re: Simple SEO URL [support thread]

    There are 2 possible causes:
    1. The name could not be queried for some reason.
    2. The parser did not work correctly.

    If you want, pm me the ftp info for the test site you are working on, I can have a look
    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. #1827
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Your error was that you did not return the name after it is parsed. You are missing the last line in es.php

    return urlencode($name);
    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

  8. #1828
    Join Date
    Apr 2008
    Location
    London
    Posts
    596
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by icemint View Post
    Putting the "redirect" page in the exclude list worked.
    Now, I struck into another problem: "Redirect loop". It seems as though it only happens when a product has attribute options.
    Me too.

    Just installed SSU 3.5.1
    I have attributes on all products and adding to basket gives:
    "Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked."

    Emptied cache/ removed cookies about 20 times but still no joy.

  9. #1829
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi Yellow, I am running into a problem with my secure pages, often they will come up over the http connection rather than the https, when I reset the cache this seems to clear up, but it doesn't 'stick' very long, I have to keep resetting the cache and then I get a secure page, then next page comes up http again....I don't know if it is related to the seo mod, just that resetting the cache seems to fix it even if only for a limited time lol and I would appreciate any thoughts on this if you have them or if you could suggest a way that I could force those pages to display via https only :)
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

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

    Default Re: Simple SEO URL [support thread]

    @bigbadboy:You are using an older version, get the new one from my sig

    @christon26: Can you send me a sample link on the site which should have the problem?
    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