By n00bster on Thursday, 05 December 2013
Posted in Technical Issues
Replies 3
Likes 0
Views 654
Votes 0
hi,

after i updated to the latest version (3.9.15110) i noticed that EB is not publishing any notification in the jomsocial stream anymore.
i check my EB settings, but the setup looks good.
nothing happens in the jomsocial stream when i write a new blog and also when i update a existing blog (setting is set to yes when i update a blog).
Hello n00bster,

Sorry for late reply to this,
I have checked in your side, it seems like your category is set to private, so our code is checking which categories is private post then it won't post to your Jomsocial front page, and i already help you remove that code private checking, it works fine now.
And i notice when you create a new blog in frontend, it come out failed 500 error message, i suspect that your autopost facebook login credential already not match with your password, so when the autopost access in your facebook account, then it denied access. Please have a check.
·
Thursday, 05 December 2013 17:57
·
0 Likes
·
0 Votes
·
0 Comments
·
hi, thx for help.

would it be possible that you show me the changes what do you made for the "remove that code private checking", so that i can made this changes also on my livesite.

the facebook error (500) is solved on my live site
·
Thursday, 05 December 2013 18:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello n00bster,

LOL You can remove the code from your file JoomlaFolder\administrator\components\com_easyblog\tables\blog.php
LOOK AT THE LINE 925 until 935

if( $category->private == 0 )
{
// @rule: Add new stream item in jomsocial
EasyBlogHelper::addJomSocialActivityBlog( $this, $isNew );

// @rule: Add stream for easysocial
if( $config->get( 'integrations_easysocial_stream_newpost' ) && $easysocial->exists() && $isNew )
{
$easysocial->createBlogStream( $this , $isNew );
}
}

Change to

// @rule: Add new stream item in jomsocial
EasyBlogHelper::addJomSocialActivityBlog( $this, $isNew );

// @rule: Add stream for easysocial
if( $config->get( 'integrations_easysocial_stream_newpost' ) && $easysocial->exists() && $isNew )
{
$easysocial->createBlogStream( $this , $isNew );
}

Hope this help.
·
Thursday, 05 December 2013 18:34
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post