Questions tagged [easyblog]
7 questions
1
vote
1 answer
What is the best speed optimization for Joomla based Social network (Easysocial)?
I am building (development phase) a Social Network site on Joomla 3 with Easysocial, Easyblog and EasyDiscuss as main extensions, using it on a shared host which has Varnish cache (static+dynamic) enabled and I am looking forward to use AWS…

Chenasona Ekjon
- 41
- 4
1
vote
1 answer
Use EasyBlog's autoposting from external PHP
I'm trying to autopost an EasyBlog blog post from my own component to Twitter. I currently have:
$blog = EasyBlogHelper::getTable( 'Blog' );
$blog->load( $postId );
$blog->autopost(array('twitter'));
autopost says it's successful, but the post…

SomeKittens
- 38,868
- 19
- 114
- 143
0
votes
0 answers
PHP: A static function being used is nowhere to be found in the class definition.. How do I locate it?
I was trying to understand some PHP functions in Easyblog(a Joomla component), I came across these lines:
public function getDisplay(EasyBlogPost &$post)
{
$fields = EB::fields();
// I inject the following 4 lines in order to find where…

shenkwen
- 3,536
- 5
- 45
- 85
0
votes
1 answer
How can I exclude grandchildren from my recursive querying process?
I am trying to limit my db output -- which currently gives me from some categories every child and grandchild -- to only the child. So that no grandchildren are displayed.
I tried to limit the recursion to only happen once, but it doesn't work. I…

youwhatmate
- 71
- 8
0
votes
2 answers
Fatal error: Declaration of EasyBlogTableMediaManager::bind() must be compatible with that of JTableInterface::bind()
I have a problem with easyblog. When I try to open a blog entry through backend I get the following error:
Fatal error: Declaration of EasyBlogTableMediaManager::bind() must be compatible with that of JTableInterface::bind() in…

Richard Miles
- 557
- 4
- 18
0
votes
1 answer
Posting blog from external PHP in EasyBlog
I am trying to post a blog entry in EasyBlog component of Joomla 2.5. I managed this so far:
$blogTable = EasyBlogHelper::getTable( 'Blog' );
$blogTable->bind($data);
$blogTable->store();
Strangely I get this error when the code is calling…

amertkara
- 1,369
- 14
- 19
0
votes
1 answer
Easiest way to connect to Joomla 2.5 database and get a Category ID
My Situation
Im very new to Joomla and I installed a component called EasyBlog. What Im trying to do is get category_id from jos_easyblog_post table for a particular post_id and and echo it on the template. Im also not quite sure if its ok to put…

nasty
- 6,797
- 9
- 37
- 52