Home arrow Forum
Latest posts of: Jim
  Welcome, Guest. Please login or register.
October 13, 2008, 08:25:06 PM
Home New Posts Search Calendar


Login with username, password and session length
  Show Posts
Pages: [1]
1  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: Cannot access component config on: March 29, 2005, 07:06:58 AM

"smf not yet installed" is displayed when you don't have the correct SMF absolute path in the configuration.

Same as the above poster... my paths are all correct as per the instructions and doing some testing.  I still can't get the "smf not yet installed" to go away Sad

Thanks again for your SMF Integration!  It's great
2  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: SMF is not yet installed??? on: March 24, 2005, 10:16:07 PM
after making all the corrections to my code, and updating to your update released today, it still says "SMF is not installed" Sad

I don't know what else to do Tongue
3  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: Yet Another Fatal Error... :( on: March 24, 2005, 07:44:28 AM
OK, I reformatted my above post to make it easier Tongue
4  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: Yet Another Fatal Error... :( on: March 24, 2005, 07:35:13 AM
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 Smiley

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 Sad

Anyway, still a GREAT job on this bridge !!

Keep us up-to-date! I do hope I've helped...

Cheers,
Jim
5  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: SMF is not yet installed??? on: March 24, 2005, 06:19:25 AM
You have to set the correct absolut SMF path in your configuration to detect whether SMF is installed.

See my post "yet another fatal..."

There must be a problem then with this, because when i try and set up the absolute path, the smf configuration tool doesn't allow it to stick, it will simply change it to what it thinks is the the correct path.  It doesn't want to save what I put in as absolute.

I have this same issue myself... I'm running on a local test server to try things out.
6  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: Yet Another Fatal Error... :( on: March 24, 2005, 06:16:11 AM
My instruction should do everything. I don't know how you went through the installation so I don't have any idea.  Grin

I followed your instructions closely, after doing it a few times... it's working now but for some odd reason, I had to put the ABSOLUTE pate into a couple of documents by hand because the installer didn't do it.  Even in the smf config, I had the absolute path as required but it didn't put that in correnctly.

I know it's not a write issue because I have all permissions set up correctly.

Another weird thing... where the config specifies the ABSOLUTE path, if you try and change it... your config won't allow it... it will simply put it back it what it 'thinks' should be default.. is that working as intended?  I can see this could be a problem for those who many need to change that in the smf config.  I'm wondering if this had to do with my problem.

Thanks again! Smiley
7  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Re: Yet Another Fatal Error... :( on: March 23, 2005, 08:08:27 PM
OK...
Please disregard, I finally figured it out LOL... it took me all day but i put in the absolute path where the comment /SSI.php is... apparantly it needed an absolute one to do that.... is this a bug?
8  MamboHacks.com / Mambo-SMF Integration 1.1x Support / Yet Another Fatal Error... :( on: March 23, 2005, 07:21:43 PM
Greetings!
I'd love to get this working.. but...
I had version one working fine on another site but have done everything I can to get this one working, but I get the following error:

Code:
Warning: main(/SSI.php): failed to open stream: No such file or directory in W:\www\hipware\templates\hipware1\index.php on line 17

Fatal error: main(): Failed opening required '/SSI.php' (include_path='.;\usr\local\PHP\includes;w:/www/mambo45') in W:\www\hipware\templates\hipware1\index.php on line 17

Just so you know, I'm working locally, but that didn't make a difference on another prototype site I was working on with your other version (1.0)...

I'm almost interested in locating the original version 1 to get it working...

Thanks! Smiley
Pages: [1]


Login with username, password and session length

Powered by MySQL Powered by PHP Forum | Powered by SMF 1.0.5 & Mambo-SMF.
© 2001-2005, Lewis Media. All Rights Reserved.
Valid XHTML 1.0! Valid CSS!
None of the text or images in this public website may be copied without the expressed written consent of the authors.
Copyright 2005 by MamboHacks.com. Powered by Mambo. All rights reserved.
TERMS OF USE