Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:Problems with FB and Community Builder (1 viewing) (1) Guest
Go to bottom Favoured: 9
TOPIC: Re:Problems with FB and Community Builder
#21479
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
I just had a look at the Joomlapolis forum and found the following thread
www.joomlapolis.com/component/option,com...d,27/id,45215/#45215
Not exactly the problem we are having but it shows that there should be some FB entries in tha language file if I understand it correctly. Looking at my language file in root/components/com_comprofiler/plugin/language/default_language there are no FB entries at all. Perhaps someone with a working installation could have a look at that file and let us know what FB related entries should be in there.
Thanks
Pascal (User)
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#21799
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Wow, nearly 1000 views of this thread and still no solution.
Isn't there anyone who might have some ideas what else to try?
Thanks for your help!
Pascal (User)
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#22004
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Hi,

here are some other problems:

1.

after upgrading to the latest fireboard I discovered the following:

In the Fireboard configuration the CB integration ist set to yes. Profiles are set to Community Builder.

But when I add thread from the fourm to my favourites it will bring me to my fireboard user profile, which should not be visible...

Any ideas ?

2.
Next I've tried to unsubscribe from the CB profile page. If I hit "Unsubscribe from all" I get a alert box with "_UE_FB_CONFIRMUNSUBSCRIBEALL"
Hitting OK brings me to the FB profile page.

If I try to unsubscribe a single thread, it points me to the FB Profile page.
"You can not unsubscribe...."

3.
If I subscribe to a thread in FB, I will be pointed to the FB profile....


My settings in the FB coniguration are:
Profile: CB
Avatar: CB
CB Integration: YES


There seems to be no difference IF the CB integration is set to Yes or No. If the tabs and fields in CB are there, you'll see your postings and subsribes in the CB Forum tab...

Any workarounds, ideas ?
ralfakerkhoff (User)
Nothing unusual
Junior Boarder
Posts: 42
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Pixel Wonders Location: Germany Birthdate: 1962-03-06
Logged Logged
 
There are only two kinds of music:
Rock and Roll
 
The administrator has disabled public write access.  
#22024
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
The only way I get it working is to disable "favourites" and "subscpribe" in the FB configuration.......
ralfakerkhoff (User)
Nothing unusual
Junior Boarder
Posts: 42
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Pixel Wonders Location: Germany Birthdate: 1962-03-06
Logged Logged
 
There are only two kinds of music:
Rock and Roll
 
The administrator has disabled public write access.  
#22095
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
looks like someone only tested the release with error_reporting set quite low so it didn't show NOTICE errors...

I had a short look into the files, and for some of the variables notices were shown in my installation, e.g. msg_skype:
Am I right that it should get defined in view.php and then displayed by message.php? the only place in view.php where msg_skype gets defined is in line 964 after the following condition:

[code:1]
if ($userinfo->SKYPE != '') {
[/code:1]

so if that doesn't apply, the variable is not set tuhs resulting in the NOTICE
(I don't know the condition's details though so I can only guess that there is a circumstance where this happens)

I also had a look into $msg_avatar which wasn't set in my case. It should get loaded from the CB profile but in the responsible lines 543ff. Let's have a look at lines 552ff
[code:1]
$database->setQuery("SELECT avatar FROM #__comprofiler WHERE user_id='$fmessage->userid' AND avatarapproved='1'"«»);
$avatar = $database->loadResult();

if ($avatar != '')
[/code:1]
what if the DB query is unsuccessful (avatar not approved or the user simply does not have one)? is $avatar empty then? I guess so, and that is why the variable is unset.

Looks like there is no clean and quick fix to this since although you might change
[code:1]
if ($msg_skype) {
echo $msg_skype;
}
[/code:1]
in messages.php, ll 119-121 and similar variables to:
[code:1]
if (!empty($msg_skype)) {
echo $msg_skype;
}
[/code:1]

I'll probably wait for a new release because it looks like there are several variables and the 1500 lines large view.php which doesn't that developer friendly either, does not really motivate me to search for undefined variables...
Nico.Laus (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#22103
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Well, if this is the case, wouldn’t everyone have this problem and not just a few?
My site is running on my dedicated server. Just for testing purposes on one of my other domains I installed a fresh copy of Joomla than CB and than Fireboard all of which are the latest stable versions. This test site works perfectly well – no problem whatsoever. This make me think, is there perhaps another component/module I installed causing a conflict with Fireboard?
Back to my original site, just noticed that looking at a post as a guest there are no error messages at all and only after logging in the errors are coming up.
Pascal (User)
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#22121
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Inscritpion
galgoul (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/09/12 09:21 By galgoul.
 
The administrator has disabled public write access.  
#22204
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Well, if this is the case, wouldn’t everyone have this problem and not just a few?

Not necessarily...
First of all, the error_reporting level should include NOTICEs (but I guess this is the case with your test instalation).
Second it might depend on the users... Take the $msg_avatar notice for example: I've got users with NULL entries in the avatar column of the CB table - this is probably returned that way by joomla when requesting the result of the DB query and this is why $msg_avatar is never set - so once you have a message of such a user in your forum and let FB load avatars from CB you MUST have this NOTICE (from my level of understanding)
Nico.Laus (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#22285
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Understand what you are saying. I tried setting some values for skype, gender, icq and so on and the errors disappear. Deleting these values gain in the profile make the errors return. This sort of confirms your theory.
Still, it’s strange that everything is working on a different domain on the same server.
Pascal (User)
Fresh Boarder
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#22618
Re:Problems with FB and Community Builder 1 Year, 2 Months ago  
Today i had tried a clean installation once more - with the same errors. Is there no solution after one week of "stable" Fireboard?

Siegfried
siegfried (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
Go to top