By checksum on Friday, 25 April 2014
Posted in General Issues
Replies 7
Likes 0
Views 819
Votes 0
In the USER-ARTICLE app, I set the UPDATES ARTICLE to NO. But when ADMIN updates the article from the backend, a stream is generated every time.
Hi Checksum,

Thanks for pointing out that error caused by the EasySocial content plugin. I've fixed this internally and I've also patch the fix on your site

As for the article app the 'update stream' setting, I've checked again and now it is working correctly. The setting is now disabled.
Please verify again.

Hope this help and have a nice day
Sam
·
Tuesday, 29 April 2014 15:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Checksum,

Can you pass me your Joomla backend admin access and your ftp account so that I can investigate this issue further?
Please advise.
Sam
·
Friday, 25 April 2014 12:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Site info updated.
See optional site info below to login as a regular user
·
Friday, 25 April 2014 23:22
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Checksum,

I am sorry for the delay of this reply

Anyway, the admin login credential you provided failed to authenticate me. Can you also provide me your ftp account to ease the debugging process?
By the way, can you open this file 'JOOMLA/media/com_easysocial/apps/user/article/article.php' and search if the below function exist?


public function onStreamVerbExclude( &$exclude )


If the above function is not there, then can you add below code function inside this same file?


public function onStreamVerbExclude( &$exclude )
{
// Get app params
$params = $this->getParams();

$excludeVerb = false;

if(! $params->get('stream_create', true)) {
$excludeVerb[] = 'create';
}

if (! $params->get('stream_update', true)) {
$excludeVerb[] = 'update';
}

if (! $params->get('stream_read', true)) {
$excludeVerb[] = 'read';
}

if ($excludeVerb !== false) {
$exclude['article'] = $excludeVerb;
}
}


Please advise.

Hope this help and have a nice day
Sam
·
Monday, 28 April 2014 12:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi sam,
There is a form on your site where we fill our site info. Please check there, admin, ftp credential is there. I am providing my admin credential below for u in case you cannot access my site info
·
Monday, 28 April 2014 17:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Checksum,

Thanks for the access details. I tried creating a testing article from your Joomla backend under articles, but it seems like everything i click save, i hit blank page But the article got created ( I have temporary unpublish this test article ). It seems like the stream is not generated at all

Also, i logged into your EasySocial frontend and I dont see any stream item related to updated Joomla article.
Please advise.
Sam
·
Monday, 28 April 2014 19:22
·
0 Likes
·
0 Votes
·
0 Comments
·
I enabled ERROR REPORTING in the backend, and this is the error message I get when I try to save my article in the backend:
·
Monday, 28 April 2014 21:31
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post