Page 359 of 506 FirstFirst ... 259309349357358359360361369409459 ... LastLast
Results 3,581 to 3,590 of 5054
  1. #3581
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    http://wiki.rubikintegration.com/zen...les/ssu/config

    Check "Multi Language Support".

    Also, post your site url.
    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

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

    Default Re: Simple SEO URL [support thread]

    Yellow this has nothing to do with seo, just wanted to know if you are over at twitter too, if so what is the name you go by their..
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #3583
    Join Date
    Jan 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    http://wiki.rubikintegration.com/zen...les/ssu/config

    Check "Multi Language Support".

    Also, post your site url.
    Hi yellow1912,
    Read many of your posts, thank you for the prompt reply.

    the local.config.php is set correctly and also he.php is saved on hebrew-windows encoding as my hebrew.php file.
    utf-8 doesn't work for me.

    the url is www.israelijewel.com/zohar

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

    Default Re: Simple SEO URL [support thread]

    @countrycharm: yes, it is: http://twitter.com/rubikint

    @eavinu: should be he.php
    Also, I suspect you are not using the latest version, where did you download it? Latest version can be grabbed here (totally free):
    http://eazy-templates.com/web-templa...simple-seo-url
    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. #3585
    Join Date
    Jan 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    @countrycharm: yes, it is: http://twitter.com/rubikint

    @eavinu: should be he.php
    Also, I suspect you are not using the latest version, where did you download it? Latest version can be grabbed here (totally free):
    http://eazy-templates.com/web-templa...simple-seo-url
    OK now i'm with Beta 3.7.1 and the problem of the url is gone but still going on a 404 page not found.

    any suggestions?

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

    Default Re: Simple SEO URL [support thread]

    After upgrading, make sure you recheck all the settings again, is multi language on? How about the config file?
    If you want, I can take a look in the site for you, simple shoot me a pm with your temp admin and ftp login
    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. #3587
    Join Date
    Aug 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Yellow1912 !! Thank you - great working module! Just fantastic!

    I have one small question though..

    My store is in Norwegian - we use the letters æ, ø, and å. (ÆØÅ)

    Is it possible to get this shown as æ = ae, ø=o and å=aa?
    OR of course as æ, ø, å.

    I think I read earlier in this thred that I could make this by doing some coding in the parser_something - but can you give more spesific directions? :)

    Thank you again - this rules!

  8. #3588
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Gomlers, yes you can.

    First, assuming the language code for Norwegian is "no" (please check, Im not sure)

    Create a file named no.php

    Put it in includes/classes/ssu/plugins/languages/

    Now, for the content of the file, put it:
    (make sure this php file is utf8 encoded)
    PHP Code:

    <?php
    /**
    * @package Pages
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: ru.php 218 2009-07-20 02:38:17Z yellow1912 $
    */
        // note: we can later move part of this function into sub-functions, which we can store in the base class.
    class SSULanguageNo extends SSULanguage{
        static function 
    parseName($name){
            
    $cyrillic = array("æ",  "ø",  "å");
               
            
    $translit = array("ae""o""a");
            
            
    $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'));
            
            return 
    urlencode($name);    
        }
    }
    Then rename local.config.php.example in includes/classes/ssu/ to local.config.php and edit it:

    PHP Code:
    <?php
    /**
    * @package Pages
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: local.config.php.example 149 2009-03-04 05:23:35Z yellow1912 $
    */
        
        
    $ssuLocalConfig = array(      
            
    'languages'        =>    array(    'no'    =>    'no'
                                        
    )
        );
    Then go to Admin->Extras->SSU Manager to clear out the cache then check your links again.
    Troubleshooting:
    1. Make sure the first file is uploaded with utf8 encode
    2. Make sure the language code is correct (this is easy, in the normal form Zencart language links look like this: index.php?.......&language=language_code
    More info:
    http://wiki.rubikintegration.com/zen...our_own_parser

    Note that I assume the language code is "no"
    Last edited by yellow1912; 9 Aug 2009 at 04:09 AM.
    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. #3589
    Join Date
    Aug 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Wow! Thank you for a perfect answer, and such quick reply - when this is the service you give for your free products... I wouldn't hesitate to buy anything from you later :)
    This really saves it - I have a lot of special characters in the product category-names/products-names, and it doesn't look real good right now ;)

    Thank you again!! :)

  10. #3590
    Join Date
    Aug 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I did what you said, and it works perfectly!

    The only thing which didn't work was to save the first file as UTF-8, I needed to save it as ASCII.
    Don't know why, but it works like a charm :)

    Now I only need to go through the aliases and learn how they work - my URL's got a little too long.

    Btw, what's the difference between the real rewritten link, and the alias? - What would google see?

 

 

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