Check please: a) the __terms__ are translated using aiki_dictionary (not aiki_dictionaries) and L10. Check if a term called "encoding" appears and it is "translated" to default languages....
b) if you are using mysql check $config['db_encoding'] and $config['db_use_mysql_set_charset'] i try to explain: __encoding__ is not the real encoding (try to put foo or bar). The real encoding is: - uft8 for all literals in code (as aiki is developed in english there are no problem with codes). - all database information (including widget) are stored and retrieved in $config["db_encoding"] ONLY IF $config['db_use_mysql_set_charset'] is set true. - pages is "encoded" using __encoding__ that have no relations with previous db_encoding. Solution: check point a) and b) and if doens't work (as urgent solution) change libs/output.lib to put uft8. 2011/11/11 rejon <j...@rejon.org> > Public bug reported: > > On a site using new language code, if the page is in english, notice > that the encoding is not getting set. If you view source, you'll see on > this page http://pekinfinearts.fabricatorz.com/en/artists > > <!doctype html><html lang="en" dir="ltr"> > <head> > <meta charset="__encoding__"/> > > But there are some characters displayed funky on the artist name: Ana�s > Martane > > Same on http://pekinfinearts.fabricatorz.com/artists but the encoding > working even though this is being output: > > <!doctype html><html lang="en" dir="ltr"> > <head> > <meta charset="__encoding__"/> > > ### > > So, there are really two problems here in that the default language and > dir. is not being set, and then the __encoding__ is not being replaced > all the time. > > Those both need to be repaired. > > Its not huge breakage on pekin fine arts, but needs to be repaired in > aiki, then aiki updated on pekin fine arts site. > > Using the latest aiki, which is aiki framework 0.8.24.897 > > ** Affects: aikiframework > Importance: Critical > Assignee: rg1024 (rg1024) > Status: Confirmed > > -- > You received this bug notification because you are a bug assignee. > https://bugs.launchpad.net/bugs/888899 > > Title: > encoding is not working on pages > > Status in Aiki Framework: > Confirmed > > Bug description: > On a site using new language code, if the page is in english, notice > that the encoding is not getting set. If you view source, you'll see > on this page http://pekinfinearts.fabricatorz.com/en/artists > > <!doctype html><html lang="en" dir="ltr"> > <head> > <meta charset="__encoding__"/> > > But there are some characters displayed funky on the artist name: > Ana�s Martane > > Same on http://pekinfinearts.fabricatorz.com/artists but the encoding > working even though this is being output: > > <!doctype html><html lang="en" dir="ltr"> > <head> > <meta charset="__encoding__"/> > > ### > > So, there are really two problems here in that the default language > and dir. is not being set, and then the __encoding__ is not being > replaced all the time. > > Those both need to be repaired. > > Its not huge breakage on pekin fine arts, but needs to be repaired in > aiki, then aiki updated on pekin fine arts site. > > Using the latest aiki, which is aiki framework 0.8.24.897 > > To manage notifications about this bug go to: > https://bugs.launchpad.net/aikiframework/+bug/888899/+subscriptions > -- You received this bug notification because you are a member of Aiki Framework Admins, which is subscribed to aikiframework. https://bugs.launchpad.net/bugs/888899 Title: encoding is not working on pages Status in Aiki Framework: Confirmed Bug description: On a site using new language code, if the page is in english, notice that the encoding is not getting set. If you view source, you'll see on this page http://pekinfinearts.fabricatorz.com/en/artists <!doctype html><html lang="en" dir="ltr"> <head> <meta charset="__encoding__"/> But there are some characters displayed funky on the artist name: Ana�s Martane Same on http://pekinfinearts.fabricatorz.com/artists but the encoding working even though this is being output: <!doctype html><html lang="en" dir="ltr"> <head> <meta charset="__encoding__"/> ### So, there are really two problems here in that the default language and dir. is not being set, and then the __encoding__ is not being replaced all the time. Those both need to be repaired. Its not huge breakage on pekin fine arts, but needs to be repaired in aiki, then aiki updated on pekin fine arts site. Using the latest aiki, which is aiki framework 0.8.24.897 To manage notifications about this bug go to: https://bugs.launchpad.net/aikiframework/+bug/888899/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~aikiframework.admins Post to : aikiframework.admins@lists.launchpad.net Unsubscribe : https://launchpad.net/~aikiframework.admins More help : https://help.launchpad.net/ListHelp

