We have intalled makefriendly module but it does not work in Turkish special characters such as
ü
ç
ö


![]() |
| | Thread Tools | Display Modes |
| |||
|
We have intalled makefriendly module but it does not work in Turkish special characters such as ü ç ö |
| |||
|
The problem with Tag cloud addresses containing % can be solved by: 1. Going to libs/tags.php -> class TagCloud -> Function show 2. Code: if(isset($time_query)){
$tag_url[$tagnumber] = getmyurl('tag2', urlencode(($tag_name[$tagnumber]), $from_time);
} else {
$tag_url[$tagnumber] = getmyurl('tag', urlencode($tag_name[$tagnumber]));
} Sorry if I am not clear enough. I am new here so please correct me if I am wrong. |
| ||||
| An older thread contains more information on the same topic. I wonder why accented characters substitution has now made its way into the core code. Many people with languages other than English have to haphazardly patch their Pligg setup. Should not the known working substitutions be commited to the main svn trunk ? |
| |||
|
I'm adding my 2 cents to the thread ... I discovered my host supported php4 and php5, BUT the iconv function was only present in 5, and the host was default to 4. Changing version from 4 to 5 solved my accent problem ! BTW I have Pligg 9.8.2 |
| ||||
| I of course meant "has not"... Sorry for the typo.
|
| |||
| Quote:
|
| ||||
|
Some result... for my part I have the same problem, search tags doen't work when the word has a special caracter.
|
| ||||
|
I have a solution, not perfect but for this moment it will be the better way In libs/html1 If you use the URLMethod == 1 Change: Code: If ($x == "tag") {return my_pligg_base."/search.php?search=" . $var1 . "&tag=true";}
If ($x == "tag2") {return my_pligg_base."/search.php?search=" . $var1 . "&tag=true&from=" . $var2;} Code: If ($x == "tag") {return my_pligg_base."/search.php?search=" . $var1;}
If ($x == "tag2") {return my_pligg_base."/search.php?search=" . $var1;} Change: Code: If ($x == "tag") {return my_pligg_base."/tag/" . $var1;}
If ($x == "tag2") {return my_pligg_base."/tag/" . $var1 . "/" . $var2 . "/";} Code: If ($x == "tag") {return my_pligg_base."/search/" . $var1;}
If ($x == "tag2") {return my_pligg_base."/search/" . $var1;} |
| |||
|
Clems, what does your solution exactly do? It changes the tag search to general search or? Quote:
|
| ||||
|
Exactly, this "solution" changes the tag search to general search An example will be better to explain: If a normal html1 without change: Wikeo / Resultados de búsqueda para ant No résult.... But nex the change I have this: Wikeo / Resultados de búsqueda para antártica With some good result, not perfect because it's a simple "search" and not a "tag search", but for this moment I don't find other solution. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problem with translation to czech language due to special characters. | stormanx | Questions and Comments | 7 | 08-21-2010 09:13 AM |
| Problem in title, url_title and tags with special characters [svn rev.162] | dotx | Questions and Comments | 4 | 11-04-2008 05:47 AM |
| Special characters problem RSS and IE 7 | markoi | Questions and Comments | 1 | 08-09-2007 02:52 PM |
| Special Characters "Ñ" "´" - Is a very comented thread | mathcv | Questions and Comments | 7 | 07-13-2007 09:34 AM |