User menus not appearing in Joomla

Started by alanuk, March 25, 2006, 01:18:27 PM

Previous topic - Next topic

alanuk

I've just done a new unstall of Joomla 1.0.8 and SMF 1.1. RC2 and I'm using the Bridge Mambo,Joomla SMF 1.1 RC2 (aka 3.20). Both installations are as they "come out of the box" at the moment apart from a change of Joomla template. I don't appear to be logging into the Joomla side of things as I don't get the user memu to appear nor do I have any basic editing rights to the text shown on the front page that I would get with no SMF integration.  Using the default "rhuk_solarflare_ii" template makes no diference either.

I have the com_smf config set to wrapped, Use Bridge Registration (using SMF integration makes no difference). The com_smf_registration is all set to default.

The User Menu in Joomla is as default, set to "Registered"  The mod_login login form is not published, the mod_smf_login login form is published.

It looks as though user details are not being integrated with the Joomla details. I'm using the one database for both with the Joomla tables set to "jos_" and the SMF tables using "smf_".

The site itself is at hxxp:walksandwheels.co.uk/contents/index.php [nonactive] and nothing is live yet, all very much work in progress.

Hope you can help.

Thanks

Alan

 

Kindred

Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

alanuk

OK, thanks very much. I had read the stickies but it was not clear from http://www.simplemachines.org/community/index.php?topic=25718.msg504382#msg504382 that this was the issue I was reporting.

However, having posted my question and before I got the reply, I thought "what the heck.." and tried it, anyway!

All OK now.. thanks again.

Alan

NoRad

I'm having this same problem with Bridge 1.1.4 (SMF 1.1 RC2-Mambo,Joomla) and Joomla 1.0.9 (and previously with 1.0.8).  Any help is appreciated. I have the inidividual items on the menu set to all access, but the menu item itself is set to registered.

Kindred

http://www.simplemachines.org/community/index.php?topic=81152.msg540509#msg540509

Quote from: Kindred on April 10, 2006, 02:35:54 PM




For the 1.1.4 bridge, one small change needs to be made for the Joomla 1.0.9 upgrade.  Find this in smf.php (in the integrate_login function):

//Joomla 1.0.8 compatibility

if (isset($_VERSION) && $_VERSION->PRODUCT == 'Joomla!' && $_VERSION->DEV_LEVEL >= '8'){
$remCookieName = mosMainFrame::remCookieName_User();
                        $remCookieValue = mosMainFrame::remCookieValue_User( $username ) . mosMainFrame::remCookieValue_Pass( $passwd );
setcookie( $remCookieName, $remCookieValue, $lifetime, '/' );
}


and replace it with this:

//Joomla 1.0.8 compatibility

if (isset($_VERSION) && $_VERSION->PRODUCT == 'Joomla!' && $_VERSION->DEV_LEVEL >= '8'){
$remCookieName = mosMainFrame::remCookieName_User();
//Joomla 1.0.9 compatibility
                        if ($_VERSION->DEV_LEVEL>='9')
$remCookieValue = mosMainFrame::remCookieValue_User( $username ) . mosMainFrame::remCookieValue_Pass( $passwd ) . $row['id'];
                        else
$remCookieValue = mosMainFrame::remCookieValue_User( $username ) . mosMainFrame::remCookieValue_Pass( $passwd );
setcookie( $remCookieName, $remCookieValue, $lifetime, '/' );
}


Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

NoRad

#5
That worked. Now I'm back to having a problem with my template where the buttons display over top of my login module. I can't remember how I fixed it before. I think it had something to do with a table not being closed or whatever.

Advertisement: