Osclass forums
Support forums => Themes => Modern => Topic started by: gtounsi on October 16, 2013, 09:46:46 am
-
Hello, im using modern theme with two languages french and english. The theme works with the english language and doesn't work with french language. Categories in english cannot be translated into french. Can someone help me to solve this issue?
-
Hi,
What version of Osclass?
Regards
-
i use Osclass 3.1.2 version.
thanks for your support
-
***OBSOLETE, better solution in the post below:***
http://forums.osclass.org/modern/categories-translation/msg116959/#msg116959 (http://forums.osclass.org/modern/categories-translation/msg116959/#msg116959)
***************************
You need to slightly modify a core file, let's try this:
oc-includes\osclass\model\Category.php Line 127
public function listEnabled()
{
$this->dao->select( sprintf("a.*, b.*, c.i_num_items, FIELD(fk_c_locale_code, '%s') as locale_order", $this->dao->connId->real_escape_string(osc_current_user_locale()) ) );
$this->dao->from( $this->getTableName().' as a' );
$this->dao->join(DB_TABLE_PREFIX.'t_category_description as b', 'a.pk_i_id = b.fk_i_category_id', 'INNER');
$this->dao->join(DB_TABLE_PREFIX.'t_category_stats as c ', 'a.pk_i_id = c.fk_i_category_id', 'LEFT');
$this->dao->where("b.s_name != ''");
$this->dao->where("a.b_enabled = 1");
Add below:
$this->dao->where(sprintf("b.fk_c_locale_code = '%s'", $this->dao->connId->real_escape_string(osc_current_user_locale()) ) );
This is working for me, but I have made many modifications for my current project and don't know if something more is required, ??? so you tell me if it works for you and this might be considered a standard solution...
Regards
-
Its works now. thanks for your support.
Gillis.
-
Glad to be of help. :)
Remember that you must manually redo this modification in case of Osclass upgrade.
Please add [SOLVED] to the title of this thread for it to be useful for others forum fellows.
Regards
-
thank you :D
-
sub categories no translate :(
-
Hi,
???
I think they should, although anyway this modification I wrote above is not enough. I've proposed a more complete modification of oc-includes/osclass/model/Category.php, try replacing that whole file with this one:
https://raw.githubusercontent.com/teseo-2014/Osclass-develop/develop/oc-includes/osclass/model/Category.php
Now, being a core file, remember that you'll need to redo this modification every time you upgrade Osclass (unless they eventually accept my request, or solve this issue on their own). ???
Regards
-
Hi,
???
I think they should, although anyway this modification I wrote above is not enough. I've proposed a more complete modification of oc-includes/osclass/model/Category.php, try replacing that whole file with this one:
https://raw.githubusercontent.com/teseo-2014/Osclass-develop/develop/oc-includes/osclass/model/Category.php
Now, being a core file, remember that you'll need to redo this modification every time you upgrade Osclass (unless they eventually accept my request, or solve this issue on their own). ???
Regards
Hi teseo,
I just moved to another host, and i don't see the category names anymore on my site. I see the default categories that osclass ships with.
When i do the setup again on the previous host, i see the my correct categories again.
I just tried to replace your file with the standard core file, and it works!
Could you tell me what different does your code do? I just wanted to keep in mind since i'm modifying core files, and need to keep the changes in mind.
Thanks!
-
Hi,
This is a problem when you use MariaDB instead of standard MySQL, the vanilla query gives a wrong result on MariaDB. My mod replaces that query with another one, compatible with both. It's working but maybe I made the new query too complicated (with fallback to english and other alternative languages when category translation is not found for the active language), the Osclass team seems to have a simpler alternative here (still in develop phase):
https://github.com/osclass/Osclass/pull/2034
And here the modified Category.php proposal:
https://raw.githubusercontent.com/osclass/Osclass/4a4d05059f3bc6c531fe1b03c33dc41b52e08b28/oc-includes/osclass/model/Category.php
This method is faster than mine, but no fallback to english (as it is now on official version), so you need to make sure that all of your categories are translated for all your languages (if no translation for the current language, category won't be shown at all).
Regards
-
Hi,
This is a problem when you use MariaDB instead of standard MySQL, the vanilla query gives a wrong result on MariaDB. My mod replaces that query with another one, compatible with both. It's working but maybe I made the new query too complicated (with fallback to english and other alternative languages when category translation is not found for the active language), the Osclass team seems to have a simpler alternative here (still in develop phase):
https://github.com/osclass/Osclass/pull/2034
And here the modified Category.php proposal:
https://raw.githubusercontent.com/osclass/Osclass/4a4d05059f3bc6c531fe1b03c33dc41b52e08b28/oc-includes/osclass/model/Category.php
This method is faster than mine, but no fallback to english (as it is now on official version), so you need to make sure that all of your categories are translated for all your languages (if no translation for the current language, category won't be shown at all).
Regards
Hi Teseo,
I was not using MariaDB, but i was using Percona on the old server. On the new server however, i use Mysql 5.7 now
-
***OBSOLETE, better solution in the post below:***
http://forums.osclass.org/modern/categories-translation/msg116959/#msg116959 (http://forums.osclass.org/modern/categories-translation/msg116959/#msg116959)
***************************
You need to slightly modify a core file, let's try this:
oc-includes\osclass\model\Category.php Line 127
public function listEnabled()
{
$this->dao->select( sprintf("a.*, b.*, c.i_num_items, FIELD(fk_c_locale_code, '%s') as locale_order", $this->dao->connId->real_escape_string(osc_current_user_locale()) ) );
$this->dao->from( $this->getTableName().' as a' );
$this->dao->join(DB_TABLE_PREFIX.'t_category_description as b', 'a.pk_i_id = b.fk_i_category_id', 'INNER');
$this->dao->join(DB_TABLE_PREFIX.'t_category_stats as c ', 'a.pk_i_id = c.fk_i_category_id', 'LEFT');
$this->dao->where("b.s_name != ''");
$this->dao->where("a.b_enabled = 1");
Add below:
$this->dao->where(sprintf("b.fk_c_locale_code = '%s'", $this->dao->connId->real_escape_string(osc_current_user_locale()) ) );
This is working for me, but I have made many modifications for my current project and don't know if something more is required, ??? so you tell me if it works for you and this might be considered a standard solution...
Regards
Hello
Recently I back-up my osclass and moved data to other server. I had problem with same issue.
Both solutions are OK, but the solution where need to replace whole Category.php I found not very reliable.
The waiting time has increased from 1,2 seconds to 6 seconds for pass php before it starts to send html back.
I have 2300 categories.
On ngnix all is working fine but on apache I had the problem, but as you said, there is no problem with server, but still this the question remains for me open, why on one server all working fine on other - problem with categories translation.
No any installation was done, just transfer back up to new server + import sql data....hm...
But thanks again for sharing, this one line save me life:)
-
Hi,
See this post, the official fix should be faster than mine:
https://forums.osclass.org/modern/categories-translation/msg155388/#msg155388
Regards
-
teseo thanks :)
Ill try )
-
teseo thank you!