Yeah... this one is a strange thing, and I do believe it is a bug (or just a little glitch in the code...
First things first

1) I noticed that in my templates "index.php" code, that around line 17 there is a line that says:
if (!defined('SMF')){
require ($mosConfig_absolute_path."/administrator/components/com_smf/config.smf.php");
require ($smf_path."/SSI.php");
}I had to replace it with the path (remember I'm working on a test server, but it's the same thing:
if (!defined('SMF')){
require ($mosConfig_absolute_path."/administrator/components/com_smf/config.smf.php");
require ($smf_path."W:/www/hipware/forum/SSI.php");
}Now, notice I had to put in the full path. Yours will be different based on your server, for example, it may need to be:
home/public_html/forum/SSI.php(or something similar).
THEN...I had to do the same in the
smf.php file located in /components/com_smf on or around line 15:
if (!defined('SMF')){
global $mosConfig_absolute_path;
require_once ($mosConfig_absolute_path."/administrator/components/com_smf/config.smf.php");
require_once ($mosConfig_absolute_path."/administrator/components/com_smf/functions.smf.php");
require_once ($mosConfig_absolute_path."/administrator/components/com_smf/functions.smf.main.php");
require ($smf_path."/SSI.php");
}Replace with:
if (!defined('SMF')){
global $mosConfig_absolute_path;
require_once ($mosConfig_absolute_path."/administrator/components/com_smf/config.smf.php");
require_once ($mosConfig_absolute_path."/administrator/components/com_smf/functions.smf.php");
require_once ($mosConfig_absolute_path."/administrator/components/com_smf/functions.smf.main.php");
require ($smf_path."W://www/hipware/forum/SSI.php");
}or something similar to your server as stated in the first code example.
NOW.. here is the tricky part...Please let me know if any of you experience this, because it's VERY strange...
In your mambo admin panel,
go to SMF Configuration.
I noticed that the settings don't stick (even with FULL writing permissions on the config file). I tried experimenting with the path, and it would insist on putting in what it "thought" was the path, but it's correct. It wouldn't let me change it.
I opened up the config file (the php file in your administrator/components/com_smf/) and I noticed that the absolute path was BLANK! I played with this and it was the only way it would stick to what I wanted. Then it would show up in the SMF configuration in the control panel.
This problem remains...It still says that SMF is not installed, yet I have it working. So that leaves the new update feature out of the question.
Can anyone go through the documents that I've stated and experiment and see if your findings are the same? Or is this all intended?
In some ways I'd like to revert back to 1.0 until it's fixed, but I deleted the file

Anyway, still a GREAT job on this bridge !!
Keep us up-to-date! I do hope I've helped...
Cheers,
Jim