I have the Forum in another language and template uni all going well,but when I put my template custom temp3, not compiled language.I have followed many indications that I have seen here, but I already have 5 days with this problem, I need help, please |
you need to compile forum lang file for each template separately. Rules → http://www.boonex.com/terms |
already compile many times, and also clear the cache,change both languages files as said here
http://www.boonex.com/trac/dolphin/wiki/DolLang
and works well with the template uni, but doesn't work with my custom template,the options shown in the following way
[L[Forums Index]]
[L[Manage Forum]],[L[Reported Posts]]
|
is there a expert forums, which can help me? |
Please provide access to your server via PM to check this problem - I need ftp, dolphin admin and phpMyAdmin ? Rules → http://www.boonex.com/terms |
before from give you that information, they could prove other solution?, your you have more experience and could ask me some questions before |
is there anyone with custom template that has solved this problem? |
Is this a template you created yourself?
https://www.deanbassett.com |
is a free template from Cogzideltemplates.com |
Is there a layout folder for that template in modules\boonex\forum\layout
https://www.deanbassett.com |
before from give you that information, they could prove other solution?, your you have more experience and could ask me some questions before
FYI for you Nandonet: The above comment was made by AlexT. Yes, he has more experience because he works for Boonex, as in he is one of the Boonex coders. They only ask for access when something makes absolutely no sense that it's happening and would like to check it to verify if it's a bug. They usually make the necessary adjustments to make things work too. You might want to take him up on his offer to help you out.
|
before from give you that information, they could prove other solution?, your you have more experience and could ask me some questions before
FYI for you Nandonet: The above comment was made by AlexT. Yes, he has more experience because he works for Boonex, as in he is one of the Boonex coders. They only ask for access when something makes absolutely no sense that it's happening and would like to check it to verify if it's a bug. They usually make the necessary adjustments to make things work too. You might want to take him up on his offer to help you out.
Thank you, what happens is that I am new and I don't know alexT, but if you recommended I get in contact with him
|
Is there a layout folder for that template in modules\boonex\forum\layout
I have the following folders in that directory
base
base_en
base_es
tmp3
tmp3_en
tmp3_es
uni
uni_en
uni_es
|
I am assuming that tmp3 is the name of your custom template?
The folders ending with _en and _es indicate the forum is compiled for that template. So you should not be having that problem.
Best to let AlexT look at it.
https://www.deanbassett.com |
Custom (tmp3) template in Forum was not configured properly. It had direct links to un-compiled uni template in modules/boonex/forum/layout/tmp3/params.php file. Rules → http://www.boonex.com/terms |
before from give you that information, they could prove other solution?, your you have more experience and could ask me some questions before
FYI for you Nandonet: The above comment was made by AlexT. Yes, he has more experience because he works for Boonex, as in he is one of the Boonex coders. They only ask for access when something makes absolutely no sense that it's happening and would like to check it to verify if it's a bug. They usually make the necessary adjustments to make things work too. You might want to take him up on his offer to help you out.
Thank you, what happens is that I am new and I don't know alexT, but if you recommended I get in contact with him
No problem. You seemed to be fairly new around here, haven't seen alot of posts by you yet. Just figured you weren't familiar with who it was so thought I'd help you out with that. Glad to see he was able to figure out what the problem was.
|
Thank you for fixing it
If you have time I would like you to tell me that it was exactly what he did, perhaps has more people with this problem and can help them also

|
Thank you for fixing it
If you have time I would like you to tell me that it was exactly what he did, perhaps has more people with this problem and can help them also

modules/boonex/forum/layout/tmp3/params.php file contents was changed from this one:
<?php if( isset($_REQUEST['gConf']) ) die; // globals hack prevention require_once ($gConf['dir']['layouts'] . 'base/params.php');
$gConf['dir']['xsl'] = $gConf['dir']['layouts'] . 'uni/xsl/'; // xsl dir
$gConf['url']['css'] = $gConf['url']['layouts'] . 'uni/css/'; // css url $gConf['url']['xsl'] = $gConf['url']['layouts'] . 'uni/xsl/'; // xsl url
?>
to this one:
<?php if( isset($_REQUEST['gConf']) ) die; // globals hack prevention require_once ($gConf['dir']['layouts'] . 'base/params.php');
$gConf['dir']['xsl'] = $gConf['dir']['layouts'] . 'tmp3/xsl/'; // xsl dir
$gConf['url']['css'] = $gConf['url']['layouts'] . 'tmp3/css/'; // css url $gConf['url']['xsl'] = $gConf['url']['layouts'] . 'tmp3/xsl/'; // xsl url
?>
Rules → http://www.boonex.com/terms |