× Joomla Facebook Connect support forum

Topic-icon 500 - View not found [name, type, prefix]: jfbconnect,html,j

Support Specialist
I was working on the Kunena integration tonight and think I found an issue with the CB integration code. Can you try changing this:
.../plugins/user/jfbconnectuser.php
                                        if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('js_import_always'))
                                        {
                                                JFBConnectJomsocialHelper::importFBProfile();
                                                JFBConnectCommunityBuilderHelper::importFBProfile();
                                        }
to this:
                                        if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('js_import_always'))
                                        {
                                                JFBConnectJomsocialHelper::importFBProfile();
                                        }
                                        if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('cb_import_always'))
                                        {
                                                JFBConnectCommunityBuilderHelper::importFBProfile();
                                        }

Let me know if it seems like that fixes it. I have already made the change in SVN.

Thanks for your help!
The topic has been locked.
Active Subscriptions:

None
Actually I don't see that code in .../plugins/user/jfbconnectuser.php and I attach the file here...
The topic has been locked.
Support Specialist
I do not see an attachment.

Is it possible you are using an older version of the user plugin? The latest available version is 2.5.3.

Thanks
The topic has been locked.
Active Subscriptions:

None
Im using 2.5.3 . I will reattach here jfbconnectuser.php renamed jfbconnectuser.txt so I can attach it to this posting

jfbconnectuser.txt

Anyway I made the change you suggest and it didnt work.
The topic has been locked.
Support Specialist
I modified the file you sent and I'm reattaching it. If you look at like 62, you will see where I commented out the code and added my change:
					/*
					if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('js_import_always'))
					{
						JFBConnectJomsocialHelper::importFBProfile();
						JFBConnectCommunityBuilderHelper::importFBProfile();
					}
					*/
					if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('js_import_always'))
					{
						JFBConnectJomsocialHelper::importFBProfile();
					}
					if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('cb_import_always'))
					{
						JFBConnectCommunityBuilderHelper::importFBProfile();
					}

Let me know if it works.
jfbconnectuser.txt
The topic has been locked.