Page 255 of 506 FirstFirst ... 155205245253254255256257265305355 ... LastLast
Results 2,541 to 2,550 of 5054
  1. #2541
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Simple SEO URL [support thread]

    hi, another question,
    after installed ssu, there's a problem on my admin whos_online page, other things are fine except the "Last URL Viewed", now all those URLs only showing "/jscript", i cant see which page the customers are staying. (but for the bot google yahoo ... last url viewed works well, no problem)
    i have some own js files for my site, it might be caused by conflicts with one of my js ?
    i'm not sure how to fix it, any ideas ?

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

    Default Re: Simple SEO URL [support thread]

    Did you clear cache?(extras->ssu manager)
    Is your site using multiple languages or just 1?
    Quote Originally Posted by myworld20091 View Post
    hi, this mod is really great !

    but i've a problem with the characters é è ...

    i modified the file local.config.php to

    PHP Code:
    <?php
        
        $ssuLocalConfig 
    = array(
            
    'plugins'        =>    array(
                                        
    'parsers'    =>    array('manufacturers')
                                    ),
            
            
    'languages'        =>    array(    'fr'    =>    'fr',
                                                            
    'en'    =>    'en',
                                                            
                                        )
        );
    and i add a file fr.php

    PHP Code:
    <?php
          
    // note: we can later move part of this function into sub-functions, which we can store in the base class.
        
    class SSULanguageFr extends SSULanguage{
            static function 
    parseName($name){
                
    $cyrillic = array("à",  "â",  "é""è",  "ê");
                 
                
    $translit = array("a""a""e""e""e");
                
                
    $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);
            }
        }
    but those characters é è are not replaced by e, they are still -

    is there anything i missed ?

    btw, i use zen 1.38 and ssu 3.64
    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. #2543
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by barricades View Post
    I've just realised that on the live site that I have SSU on I changed a categorys name a while back but since the instructions weren't fresh in my mind I didn't refresh the cache. It doesn't seem to have had any negative effect that I can spot in terms of actually working, in other words all the URLs say what they're supposed to without me resetting the cache. Is the negative effect therefore just a performance of server issue? Or does it have a bad effect on my sites ability to be spidered and indexed?

    Cheers
    Then it's no problem at all, dont worry about. Resetting cache is usually done because sometimes a change in the code will not be reflected in the links unless you do it.
    So in your case, you changed the category names but you did not reset cache, i will assume that the link name will be that of the old category name. Nothing wrong with that, it will keep working. Next time you reset cache, the link name will be changed, and customers/spiders visiting old links will be redirected properly to new links
    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

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by myworld20091 View Post
    hi, another question,
    after installed ssu, there's a problem on my admin whos_online page, other things are fine except the "Last URL Viewed", now all those URLs only showing "/jscript", i cant see which page the customers are staying. (but for the bot google yahoo ... last url viewed works well, no problem)
    i have some own js files for my site, it might be caused by conflicts with one of my js ?
    i'm not sure how to fix it, any ideas ?
    I would assume something has gone wrong with the way you use js here, if you have the site url you can pm me or post 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

  5. #2545
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Did you clear cache?(extras->ssu manager)
    Is your site using multiple languages or just 1?
    yes, i did clear all cache from extras->ssu manager

    i use multiple languages for my site, so i made fr.php en.php ... in the folder \includes\classes\ssu\plugins\languages

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by myworld20091 View Post
    yes, i did clear all cache from extras->ssu manager

    i use multiple languages for my site, so i made fr.php en.php ... in the folder \includes\classes\ssu\plugins\languages
    Interesting. Is this a test site? I would like to peek into the server to find out what's going if it's okie with you, otherwise we can try some other things. Cant think of a reason why it doesnt work tho, you seem to do it correctly.
    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. #2547
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    i did a test, go to /includes/classes/ssu/cores/language.php , find

    function removeNonAlphaNumeric($name, $name_delimiter){
    return preg_replace("/[^a-zA-Z0-9]/", $name_delimiter, $name);

    add
    $name = str_replace("b","e", $name);

    then i check the url, all the letters "b" replaced by "e".

    but if i add
    $name = str_replace("é","e", $name);

    the character "é" still showing as "-"

  8. #2548
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Simple SEO URL [support thread]

    i love the alias functions, but if i set link alias status ture, when i change the site language, the url cant come back even if i change the language back.

    what i mean is :

    my default language is french, the url of one categories is
    http://mydomain.com/zencart/fr/logiciel

    if i change the site language to english, then the url is
    http://mydomain.com/zencart/en/software

    then i change the site language back to french, but the url is
    http://mydomain.com/zencart/fr/software

    i clear all caches, but doesnt work, in my admin alias functions, i find :
    url /logiciel/ alias /software/
    it automaticly genarates the alias

    then i have to delete it manually, then it goes well. but for so many categories and products, i cant handle it like this.

    is there anything i might set wrong ?

  9. #2549
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Interesting. Is this a test site? I would like to peek into the server to find out what's going if it's okie with you, otherwise we can try some other things. Cant think of a reason why it doesnt work tho, you seem to do it correctly.
    i have pmed you

  10. #2550
    Join Date
    Sep 2008
    Location
    Grand Junction, CO USA
    Posts
    38
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Sitemap question -

    If it's been answered elsewhere, please redirect me - I couldn't find the answer, the thread is too long :)

    I'm using SSU 3.6.0 and google sitemap 1.3

    My problem is this -

    my links on page show as this:

    /lingerie/body-suits-lingerie/hot-suspender-bodysuit-with-matching-bra-top-p-653

    but my links in my sitemap are showing as this:

    /-c-0/hot-suspender-bodysuit-with-matching-bra-top-p-653

    How do I get my Sitemap to have the structure that is on page?


    Matt
    Matthew Kettlewell
    Kettlewell Enterprises, Inc
    Lingerie {Disclaimer: Adult Lingerie Site}

 

 

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