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!
_PROBLEM_CREATING_PROFILE (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: _PROBLEM_CREATING_PROFILE
#51714
_PROBLEM_CREATING_PROFILE 4 Months, 1 Week ago  
I have installed fireboard 1.0.4 stable on Joomla 1.5. I have Community builder 1.1 running as well as group jive (not sure of version but should be latest) Everything is setup fine but when I go to the FB forum it says _PROBLEM_CREATING_PROFILE at the very top of the forum. I am using the CB profiles with the standard J login/registration for all. Not sure if there is any problem with the profile, they seem fine. I do have custom tabs in CB profile not sure if this would affect it. When I click on the my profile link in FB it takes me to CB which is right. I will proceed further and make sure signatures and the avatar work but they seem to be fine. havent made a post as yet as I am still trying to figure out what linking the GJ group with the board does, and if I set it up right. Anyway if anyone has some pointers they could give, I would really appreciate it.

*Added*
Also get these
This is seen in the who's online plugin for FB
Warning: Invalid argument supplied for foreach() in /*sitepath*/components/com_fireboard/template/default/plugin/who/whoisonline.php on line 75

This is seen over the page when posting or reading posts.
Warning: Invalid argument supplied for foreach() in /*sitepath*/components/com_fireboard/template/default/fb_pathway.php on line 140
greywolf001au (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/06/08 09:22 By greywolf001au.
 
The administrator has disabled public write access.  
#57280
Re:_PROBLEM_CREATING_PROFILE 1 Month, 2 Weeks ago  
just put at line 563 after "}" before "}" this code and it works...

return $object;
kubbah (User)
Junior Boarder
Posts: 35
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#57295
Re:_PROBLEM_CREATING_PROFILE 1 Month, 2 Weeks ago  
thanx but which file should I add this too?

kubbah wrote:
just put at line 563 after "}" before "}" this code and it works...

return $object;
greywolf001au (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#57299
Re:_PROBLEM_CREATING_PROFILE 1 Month, 2 Weeks ago  
pluginssystemjfdatabasejfdatabase_inherit.php
kubbah (User)
Junior Boarder
Posts: 35
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#57377
Re:_PROBLEM_CREATING_PROFILE 1 Month, 1 Week ago  
Thanks, I did what you said and now it works

Code:

function loadObject( &$object, $translate=true, $language=null )
{
if (!is_null($object) && is_object($object)){
$res = parent::loadObject($translate, $language);
foreach (get_object_vars($res) as $key=>$val) {
$object->$key = $val;
}
}
else {
$object  = parent::loadObject($translate, $language);
}
return $object;
}

danicheman (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.  
Go to top