The automatical generated url for pages has problems with special characters, accents, umlauts and symbols in page title.For Example:Page Name:                   Sample Imprint ÄÖÜäöü߀Page URL:                     pages/sample-imprint-�������Page URL Source Code: <a href=".../pages/sample-imprint-%E3%84%E3%96%E3%9C%E3%A4%E3%B6%E3%BC%E3%9F">Best regards,Jürgen

I'm not surprised, since pages haven't been updated yet to work with the Multi Language feature, which btw still isn't done.

But this doesn't depend on the multilanguage feature, it depends on how the url will be generated. In the name special characters, accents und umlauts are displayed correctly.

@[deleted]: Give it a try, replace the function in include > class.format.php    function slugify($text)    {          // replace non letter or digits by -          $text = preg_replace('~+~u', '-', $text);        // trim          $text = trim($text, '-');        // transliterate          if (function_exists('iconv'))              {            $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);              }        // lowercase          $text = strtolower($text);        // remove unwanted characters          $text = preg_replace('~+~', '', $text);          if (empty($text))           {            return 'n-a';           }          return $text;    }The result is:Page Name:                   Sample Imprint ÄÖÜäöü߀Page URL:                     pages/sample-imprint-aeoeueaeoeuessPage URL Source Code: <a href=".../pages/sample-imprint-aeoeueaeoeuess">Best regards,Jürgen

Write a Reply...