Ok folks.
Just for sharing with you all..
I tried out the bret CB SMF plugins.
I don't know if something is wrong with my CMS but i got blank pages if the plugin were published.
Dubugging I noticed such common code into the plugins core phps:
...
else // The only other thing you could be using is Joomlahacks.
{
require($mosConfig_absolute_path . '/administrator/components/com_smf/config.smf.php');
$mySMFpath = $smf_path;
}
With my surprise in my joomlahacks bridge I don't have any config.smf.php neither in the indicated path.
Looking old 1.* (joomlahacks) smf bridge structure i found that file and worked for a workaround.
So, i changed the code abode with:
...
else // The only other thing you could be using is Joomlahacks.
{
// require($mosConfig_absolute_path . '/administrator/components/com_smf/config.smf.php');
$mySMFpath = 'forum';
}
where forum is the subdirectory where is installed smf.
(
http://mysite.tld/forum/ to reach the forum directly).
I know this is not a workaround but a *really and badly quick & dirty* solution but it works.
I hope some mate more expert of me in php code could enhance it and produce a good fix.
Thanks.