Topic-icon page load error

Active Subscriptions:

None
10 years 8 months ago #35122 by micfre
page load error was created by micfre
Hi,

so we have paid the jfbconnect component and confiured all the parameters.
now we get a page loading error if we will login over facebook (see the attached file)

It is a loop so that the page loading process can never end. we search all the parameters but we dont find it.

Best regards michael
File Attachment:
The topic has been locked.
Active Subscriptions:

None
10 years 8 months ago #35128 by micfre
Replied by micfre on topic page load error
Hi,

we have fix this error.
it ws the joomsef component. We disable it for jfb and it works fine. but the modal window dont works at the moment. i think it is the gantry template.

best

micha
The topic has been locked.
Support Specialist
10 years 8 months ago #35133 by alzander
Replied by alzander on topic page load error
Micha,
Glad you figured out the JoomSEF issue. Not sure what was happening there, but we really don't have many URLs in JFBConnect, so using SEF URLs really isn't very beneficial.

As for the modal not working, you're running into a bug in the SCLogin module which will be fixed in the next release. It affects Joomla 3.x sites that are using specific templates that don't load the Bootstrap framework like we're expecting. You'll need you to make a minor code change to our SCLogin module to fix it.

To make the edit, please open the /modules/mod_sclogin/mod_sclogin.php file. Around line 90, you'll see:
if($params->get('loadBootstrap')) 
{ 
    $document->addStyleSheet('modules/mod_sclogin/css/sc_bootstrap.css'); 
}
Please update that to:
if($params->get('loadBootstrap')) 
{ 
    JHtml::_('bootstrap.framework'); 
    $document->addStyleSheet('modules/mod_sclogin/css/sc_bootstrap.css'); 
}
Please let us know how that goes or if you run into any other issues.

Thanks,
Alex
The topic has been locked.