Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Arnim Anhut 137 posts 148 karma points
    Feb 26, 2014 @ 14:23
    Arnim Anhut
    0

    Url charakter substitution (umlaute / mutated vowels) in V7?

    Hello,

    I just found, that the automatic charakter replacement for illegal url charakters in V7 replaces the lowercase "ü" correct to "ue" but the uppercase "Ü" isn't replaced.

    In older version you could insert the replacing in umbracoSetting.config but now this setting is gone.

    Where do I find the relevant config to add the missing substitution?

    Thanx, Arnim.

  • Arnim Anhut 137 posts 148 karma points
    Feb 27, 2014 @ 15:10
    Arnim Anhut
    0

    Really that hard? I guessed there had to be a simple config file I have to edit.

    Any ideas?

  • Tobias Morf 80 posts 183 karma points
    Jul 04, 2014 @ 11:18
    Tobias Morf
    0

    Having the same questions - any solutions?

  • PRK 47 posts 119 karma points
    Jul 17, 2014 @ 15:49
    PRK
    1

    Hi Tobias and Arnim,

    in Umbraco7 the "optional" - Configs are removed (see http://our.umbraco.org/documentation/Using-Umbraco/Config-files/umbracoSettings/). You can add the following to the umbraco Settings:

    <urlReplacing> 
          <char org=" ">-</char>
            <char org="&quot;"></char>
            <char org="'"></char>
            <char org="%"></char>
            <char org="."></char>
            <char org=";"></char>
            <char org="/"></char>
            <char org="\"></char>
            <char org=":"></char>
            <char org="#"></char>
            <char org="+">plus</char>
            <char org="*">star</char>
            <char org="&amp;"></char>
            <char org="?"></char>
            <char org="æ">ae</char>
            <char org="ø">oe</char>
            <char org="å">aa</char>
            <char org="ä">ae</char>
            <char org="ö">oe</char>
            <char org="ü">ue</char>
            <char org="ß">ss</char>
            <char org="Ä">ae</char>
            <char org="Ö">oe</char>
            <char org="Ü">ue</char>
            <char org="|">-</char>
            <char org="&lt;"></char>
            <char org="&gt;"></char>
    </urlReplacing>
    

    Be sure to dont forget to change the first line of the umbracoSetting.config to (to prevent the encoding error)

    <?xml version="1.0" encoding="iso-8859-1" ?>
    
Please Sign in or register to post replies

Write your reply to:

Draft