Results 1 to 10 of 5054

Hybrid View

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

    Default Re: Simple SEO URL [support thread]

    Note that many browsers can not properly display non english characters, so those have to be either removed or encoded or replaced.

    I guess the first option is easy to understand, for the 2nd option:
    by encoding, your non english characters will be translated to something like this %98 (just an example, but you will see weird characters in the url). Some browsers such as firefox can show the nice and correct form of these characters on the address bar, some dont (IE 7 cant)

    The 3rd option is replace the non-english characters by something equivalent to it. For example, you can replace é by e. If you go with this option, you can peak into includes/classes/ssu/plugins/languages/he.php to see an example. Then you will have to to follow the thread below to override the default language parser which is being used for English.

    http://www.zen-cart.com/forum/showth...age#post678465

    PS: by default, if your store is using English language, then SSU chooses the "remove" option for any non alpha numeric characters in the names.
    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. #2
    Join Date
    Jan 2009
    Posts
    51
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Thanks for the information, it is valuable.

    I will try to figure out how to do a replace of é grave to english e using the links provided

    Jim

  3. #3
    Join Date
    Jan 2009
    Posts
    51
    Plugin Contributions
    0

    Idea or Suggestion Re: Simple SEO URL [support thread]

    A bit of feedback, I'll try to be brief, I know you are busy... I tried your suggestion below and everything I tried broke the page (adding the 'en' =>'en' into the array and so on.

    However I changed the /includes/classes/ssu/cores/language.php code (as you said in the thread given) and changed:
    -----------------------
    function removeNonAlphaNumeric($name, $name_delimiter){
    return preg_replace("/[^a-zA-Z0-9]/", $name_delimiter, $name);
    }
    -----------------------
    to:
    -----------------------
    function removeNonAlphaNumeric($name, $name_delimiter){
    $tempVar = str_replace("é","e",$name);
    $name=$tempVar;
    return preg_replace("/[^a-zA-Z0-9]/", $name_delimiter, $name);
    }
    -----------------------
    This seems to have done the trick Do you think that this could cause any problems I haven't understood or is it an ok way to do it?

    Cheers, Jim

    Quote Originally Posted by yellow1912 View Post
    Note that many browsers can not properly display non english characters, so those have to be either removed or encoded or replaced.

    I guess the first option is easy to understand, for the 2nd option:
    by encoding, your non english characters will be translated to something like this %98 (just an example, but you will see weird characters in the url). Some browsers such as firefox can show the nice and correct form of these characters on the address bar, some dont (IE 7 cant)

    The 3rd option is replace the non-english characters by something equivalent to it. For example, you can replace é by e. If you go with this option, you can peak into includes/classes/ssu/plugins/languages/he.php to see an example. Then you will have to to follow the thread below to override the default language parser which is being used for English.

    http://www.zen-cart.com/forum/showth...age#post678465

    PS: by default, if your store is using English language, then SSU chooses the "remove" option for any non alpha numeric characters in the names.

  4. #4
    Join Date
    Jan 2009
    Posts
    43
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Please help...
    I think i am getting a Alias problem...

    When I click "Click here"

    Manage Aliases: Click here

    I get the following page

    1146 Table 'lifeslip_zen.links_aliases' doesn't exist
    in:
    [SELECT * FROM links_aliases]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    Why is this happening?? Before it didn't...

    My website is: anycigarette [com]

  5. #5
    Join Date
    Jan 2009
    Posts
    43
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    In my admin:

    I don't even have admin>configuration>Simple SEO URL

    How come I DON'T have Simple SEO URL???

    Please... I really need your help

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

    Default Re: Simple SEO URL [support thread]

    For whatever reason when you host recovers from crash it doesnt seem to recover completely,

    You can go to your admin - tools - sql patch tool and try
    delete from table module_version_tracker where module_code = 'yellow1912_ssu';

    Then go to admin - extras - ssu to have the patches reapplied.
    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

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