0
I've purchased a pro version and installed it on Joomla 1.5.15 stable. However, when I search a album or song, it doesn't produce any results. I put saved all my albums and song names in Korean.
The link is http://www.hananym.com/index.php?searchword=%EC%86%8C%ED%96%A5&format_id=&genre_id=&option=com_muscol&search=albums&view=search&Itemid=
Please help.
Below are system info on my server:
PHP Built on: Linux gator1171.hostgator.com 2.6.28.9 #51 SMP Fri Jan 15 22:59:44 CST 2010 i686
Database Version: 5.1.30
Database Collation: utf8_unicode_ci
PHP Version: 5.2.12
Web Server: Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8i DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Web Server to PHP interface: cgi-fcgi
Joomla! Version: Joomla! 1.5.15 Stable [ Wojmamni Ama Mamni ] 05-November-2009 04:00 GMT
The link is http://www.hananym.com/index.php?searchword=%EC%86%8C%ED%96%A5&format_id=&genre_id=&option=com_muscol&search=albums&view=search&Itemid=
Please help.
Below are system info on my server:
PHP Built on: Linux gator1171.hostgator.com 2.6.28.9 #51 SMP Fri Jan 15 22:59:44 CST 2010 i686
Database Version: 5.1.30
Database Collation: utf8_unicode_ci
PHP Version: 5.2.12
Web Server: Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8i DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Web Server to PHP interface: cgi-fcgi
Joomla! Version: Joomla! 1.5.15 Stable [ Wojmamni Ama Mamni ] 05-November-2009 04:00 GMT
Responses (14)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0I'm investigating it.
I'm afraid the system does not handle korean encoding on search functions... I'll check what I can do. besides of that, do you have any problem while navigation through the collection?
that artist appears under S because thats the letter you selected (you probably used the SAMPLE ARTIST, wich is S). if you want to be another letter, just change it on the artist form. but only A-Z characters are allowed for letter classification... -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0I haven't found a solution for this yet... it looks like its some small problem with your database charset or something... :S
just one thought: remember that the search is performed based on the KEYWORDS field of the album, so make sure that this field contains the album's name (and also artist name), separated by spaces " ". -
Accepted Answer
0well, what happens is that the system crops the undesired characters. you can try this:
on file /administrator/components/com_muscol/tables/album.php on line 145 you find this:
$return = JFilterOutput::stringURLSafe($keywords);
replace it for
$return = $keywords;
that will allow you to have turkish characters on the KEYWORDS field of the album, wich is the one used.
then, on the file components/com_muscol/models/search.php line 242 you find this:
$keywords = utf8_decode(trim($this->get_keywords($keywords)));
replace it for
$keywords = trim($this->get_keywords($keywords));
to allow searching non-latin chars.
this should solve the issue.
REMEMBER that you will need to modify the KEYWORDS on the albums, because the non-latin chars have been cropped out!!!!! until you do that, the search will still return no results!!
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »